/*
Theme Name: Butter 2024
Theme URI:
Description: Custom theme for Butter 2024
Author: Joe Blackburn
Version: 1.0
Tags: custom
*/
/* =============================================================================
   Adapted from HTML5 Boilerplate CSS: h5bp.com/css
   ========================================================================== */
/* !Global Styles - - - - - */
/* $fat: 'fatfrank'; */
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale;
}

.sans {
  font-family: "greycliff-cf", Arial, Verdana, sans-serif;
}

.serif {
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
}

.fat {
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
}

.cond {
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
}

.alt {
  font-family: "ff-good-web-pro-narrow", "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

.yellow {
  color: #f6eb83;
}

.accent {
  color: #233e7e;
}

.lt-green {
  color: #efeee7;
}

.green {
  color: #f6eb83;
}

.blue {
  color: #233e7e;
}

.pink {
  color: #233e7e;
}

.white-bg {
  background: #fff;
}

.black-bg {
  background: #000;
}

.yellow-bg {
  background: #f6eb83;
}

.blue-bg {
  background: #233e7e;
}

.pink-bg {
  background: #233e7e;
}

.lt-grey-bg {
  background: #EFEEE7;
}

.accent-bg {
  background: #233e7e;
}

.lt-green-bg {
  background: #efeee7;
}

.green-bg {
  background: #f6eb83;
}

.italic {
  font-style: italic;
}

.normal {
  font-weight: normal;
}

.bold {
  font-weight: bold;
}

.light {
  font-weight: 300;
}

.semi {
  font-weight: 600;
}

.xbold {
  font-weight: 800;
}

.center {
  text-align: center;
}

.upper {
  text-transform: uppercase;
}

.lower {
  text-transform: lowercase;
}

.space {
  letter-spacing: 0.05em;
}

.xspace {
  letter-spacing: 0.1em;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

.plain a, a.plain {
  text-decoration: none;
}

a {
  color: #233e7e;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s ease-in-out;
}

a:hover {
  color: #233e7e;
}

.rel {
  position: relative;
}

ul.clean {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.inline {
  display: inline-block;
}

ul.inline > li {
  display: inline;
  float: left;
}

ul.ilb > li,
.ilb {
  display: inline-block;
  vertical-align: top;
}

ul.ilb {
  display: block;
}

li.vmiddle,
.vmiddle {
  vertical-align: middle;
}

li.vbottom,
.vbottom {
  vertical-align: bottom;
}

.reverse {
  direction: rtl;
}

.dfix {
  direction: ltr;
}

img.full {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

img.fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-fill video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
}

.flex-wrap {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-wrap .flex-item:nth-child(1) {
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  width: 100% !important;
}

.cover {
  background: url(images/trans.png) no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.flex-bottom {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-bottom .flex-item:nth-child(1) {
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  width: 100% !important;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
}

.grid.row {
  grid-auto-rows: 1fr;
}

.grid.grid2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.grid4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.grid5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.over {
  position: relative;
  z-index: 20;
}

.swap {
  grid-auto-flow: column;
  direction: rtl;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.overflow {
  overflow: hidden;
}

.rounded {
  border-radius: 10px;
  overflow: hidden;
}

/* !Font Size Functions - - - - - */
/* !Page Defaults - - - - - */
.text {
  line-height: 1.8em;
  font-size: 1rem;
}

.text.small-text {
  font-size: 0.75rem;
}

.text.large-text {
  font-size: 1.25rem;
}

.text p {
  margin: 15px 0;
}

.text a {
  color: #233e7e;
  text-decoration: underline;
}

.text a:hover {
  color: rgba(35, 62, 126, 0.7);
}

.text.white a {
  color: #fff;
  text-decoration: underline;
}

.text.white a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.header-text p:first-child,
.text p:first-child {
  margin-top: 0;
}

.header-text p:last-child,
.text p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: normal;
}

.text img {
  display: block;
  margin: 10px auto;
  width: auto;
  height: auto;
  max-width: 100%;
  border-radius: 10px;
}

.text img.alignleft {
  float: left;
  margin: 0 30px 30px 0;
  display: inline-block;
}

.text img.alignright {
  float: right;
  margin: 0 0 30px 30px;
  display: inline-block;
}

.text ul {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.text ul li {
  padding-left: 15px;
  position: relative;
  margin-top: 8px;
  display: block;
}

.text ul {
  margin: 30px 0;
}

.text ul li {
  position: relative;
  margin: 0 0 0 20px;
  line-height: 1.3em;
}

.text ul li + li {
  margin-top: 5px;
}

.text ul li::marker {
  color: inherit;
  font-size: 1em;
}

.text h1,
.text h2,
.text h3,
.text h4,
.text h5 {
  margin: 30px 0 10px 0;
  font-weight: 800;
  color: #233e7e;
  line-height: 1.3em;
}

.text h1,
.text h2 {
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
  font-weight: normal;
}

.text.white h1,
.text.white h2,
.text.white h3,
.text.white h4,
.text.white h5 {
  color: #fff;
}

.text h1:first-child,
.text h2:first-child,
.text h3:first-child,
.text h4:first-child,
.text ul:first-child {
  margin-top: 0;
}

.text h1:last-child,
.text h2:last-child,
.text h3:last-child,
.text h4:last-child,
.text ul:last-child {
  margin-bottom: 0;
}

.text blockquote {
  margin: 50px 0;
  padding: 10px 0 10px 20px;
  border-left: 2px solid #233e7e;
  color: #233e7e;
  font-weight: bold;
  font-size: 1.375rem;
  line-height: 1.5em;
  text-align: left;
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
}

.text.white blockquote {
  color: #fff;
}

.page-block.pink-bg .text blockquote {
  border-color: #fff;
}

/* !Body - - - - - */
body {
  min-width: 375px;
  font-size: 16px;
  font-family: "greycliff-cf", Arial, Verdana, sans-serif;
  color: #233e7e;
  line-height: 1.6em;
  background: #f6eb83;
}

#container {
  background: #f6eb83;
}

/* !Page Blocks - - - - - */
.inner {
  padding: 0 50px;
  display: block;
  max-width: 1050px;
  margin: 0 auto;
}

.inner.skinny {
  max-width: 800px;
}

.inner.mid {
  max-width: 1200px;
}

.inner.wide {
  max-width: 1500px;
}

.page-block {
  position: relative;
}

.page-block + .page-block {
  margin-top: 90px;
}

.page-block.bg,
.block-pad,
.block-pad-top {
  padding: 90px 0;
}

.big-block-pad,
.page-block.bg.big-block-pad {
  padding: 120px 0;
}

.page-block.bg + .page-block.bg {
  margin-top: 0;
}

.page-block:last-child {
  padding-bottom: 90px;
}

.page-block.bg:first-child {
  margin-top: 30px;
}

.page-block:first-child {
  padding-top: 90px;
}

.block-pad-top {
  padding-top: 90px;
}

.block-pad-bottom {
  padding-bottom: 90px;
}

.big-block-pad:first-child,
.page-block.bg.big-block-pad:first-child {
  padding-top: 120px;
}

.big-block-pad:last-child,
.page-block.bg.big-block-pad:last-child {
  padding-bottom: 120px;
}

.page-block.bg.no-pad {
  padding: 0;
}

.page-block.margin-check:last-child {
  padding-bottom: 0;
}

/* !Buttons - - - - - */
.button,
input.gform_button {
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
  color: #233e7e;
  font-size: 1.375rem;
  line-height: 1em;
  display: inline-block;
  padding: 15px 35px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #f6eb83;
  transition: all 0.35s ease-in-out;
}

.button.blue-bg,
input.gform_button {
  background: #233e7e;
  color: #fff;
}

.button:hover,
input.gform_button:hover,
.text.white a.button {
  background: #f6eb83;
  color: #233e7e;
}

.text.white a.button {
  text-decoration: none;
}

.button.blue-bg:hover {
  background: #233e7e;
  color: #fff;
}

.button.dark-hover:hover {
  background: #233e7e;
  color: #fff;
}

.button.light-hover:hover,
.button.white-bg,
.text.white a.button:hover {
  background: #fff;
  color: #233e7e;
}

.button.white-bg:hover {
  background: #233e7e;
  color: #fff;
}

.button.green-bg {
  background: #f6eb83;
  color: #efeee7;
}

.button.green-bg:hover {
  background: #233e7e;
  color: #fff;
}

.sticky-links a.button {
  padding: 10px 20px;
  font-size: 1.125rem;
  background: #fff;
  color: #233e7e;
}

.sticky-links a.button:hover,
.sticky-links a.button.active {
  background: #f6eb83;
  color: #233e7e;
}

.sticky-links.yellow-bg a.button {
  background: #fff;
  color: #233e7e;
}

.sticky-links.yellow-bg a.button:hover,
.sticky-links.yellow-bg a.button.active {
  background: #233e7e;
  color: #fff;
}

.angle-link {
  display: grid;
  grid-template-columns: 1fr 14px;
  align-items: center;
  gap: 15px;
  padding-right: 8px;
  position: relative;
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
  font-size: 1.375rem;
  line-height: 1.3em;
  color: #233e7e;
}

.featured-box-content .angle-link,
.angle-link.inline {
  display: inline-grid;
  margin-top: 15px;
}

.angle-link:hover,
.featured-box-content .angle-link,
.angle-link.inline {
  color: #233e7e;
}

.angle-link svg {
  position: relative;
  top: 3px;
  right: 3px;
  transition: all 0.35s ease-in-out;
}

.angle-link:hover svg,
.featured-box-content .angle-link svg,
.angle-link.inline svg {
  top: 0;
  right: 0;
}

.angle-link path {
  opacity: 0;
  fill: #233e7e;
  transition: all 0.35s ease-in-out;
}

.featured-box-content .angle-link path,
.angle-link.inline path {
  fill: #233e7e;
}

.angle-link:hover path,
.featured-box-content .angle-link path,
.angle-link.inline path {
  opacity: 1;
}

/* !Headlines - - - - - */
.headline57 {
  font-size: 3.5625rem;
  line-height: 1.4em;
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
}

.headline50 {
  font-size: 3.125rem;
  line-height: 1.4em;
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
}

.headline34 {
  font-size: 2.125rem;
  line-height: 1.4em;
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
}

.headline30 {
  font-size: 1.875rem;
  line-height: 1.4em;
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
}

.subhead22 {
  font-size: 1.375rem;
  line-height: 1.3em;
  font-family: "ff-good-web-pro-narrow", "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.subhead18 {
  font-size: 1.125rem;
  line-height: 1.3em;
  font-family: "ff-good-web-pro-narrow", "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.subhead14 {
  font-size: 0.875rem;
  line-height: 1.3em;
  font-family: "ff-good-web-pro-narrow", "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* !Spacing - - - - - */
* + .headline57 {
  margin-top: 15px;
}

* + .text,
* + .button,
.subhead18 + .headline50 {
  margin-top: 25px;
}

/* !Form Fields - - - - - */
.gfield {
  margin: 0;
  clear: both;
}

.gfield_error.gfield {
  margin-bottom: 20px;
}

input.medium,
input.large,
input.small,
select,
textarea,
.ginput_complex input,
.ginput_product_price_wrapper input[type=text],
.gfield--type-product input[type=number],
input.datepicker,
input[type=text],
input[type=email] {
  background: #fff;
  border-radius: 25px;
  height: 50px;
  font-size: 1rem;
  font-family: "greycliff-cf", Arial, Verdana, sans-serif;
  color: #233e7e;
  padding: 10px 25px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
}

select {
  background: url(images/select-arrow.svg) no-repeat right 20px center #fff;
  padding-right: 52px;
}

textarea {
  resize: none;
  height: 150px;
  padding: 30px;
  border-radius: 10px;
}

.gform_validation_container {
  display: none !important;
}

::-webkit-input-placeholder {
  opacity: 1;
  color: #233e7e;
  transition: all 0.35s ease-in-out;
}

:-moz-placeholder { /* Firefox 18- */
  opacity: 1;
  color: #233e7e;
  transition: all 0.35s ease-in-out;
}

::-moz-placeholder { /* Firefox 19+ */
  opacity: 1;
  color: #233e7e;
  transition: all 0.35s ease-in-out;
}

:-ms-input-placeholder {
  opacity: 1;
  color: #233e7e;
  transition: all 0.35s ease-in-out;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus:-moz-placeholder { /* Firefox 18- */
  color: transparent;
}

:focus::-moz-placeholder { /* Firefox 19+ */
  color: transparent;
}

:focus:-ms-input-placeholder {
  color: transparent;
}

.gfield_label,
.ginput_complex label,
.ginput_container_creditcard legend,
.gfield--type-choice legend {
  color: #233e7e;
  font-size: 0.75rem;
  padding-bottom: 10px;
  font-family: "greycliff-cf", Arial, Verdana, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3em;
  display: block;
}

.gform_submission_error {
  padding-bottom: 20px;
  font-weight: bold;
  color: #b50000 !important;
  font-size: 1.25rem;
  line-height: 1.4em;
  font-weight: bold;
  padding-bottom: 30px;
}

.validation_message,
.gfield_validation_message,
.gfield_description,
.gfield--type-html {
  padding-top: 15px;
  color: #233e7e;
  font-style: italic;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4em;
  clear: both;
}

.validation_message,
.gfield_validation_message {
  color: #b50000;
}

.gform_confirmation_message {
  color: #233e7e;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1.4em;
}

fieldset {
  padding: 0;
  margin: 0;
  border: none;
}

.gfield_radio,
.gfield_checkbox,
.gfield--type-consent {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
  display: inline-block;
  width: 100%;
}

.gfield--type-consent legend {
  display: none;
}

fieldset.gfield--type-choice {
  clear: both;
}

fieldset.gfield--type-choice legend {
  padding-top: 20px;
}

.gfield_radio .gchoice,
.gfield_checkbox .gchoice,
.gfield--type-consent {
  text-align: left;
  width: calc(50% - 4px);
  display: inline-block;
  padding: 0 25px 0 36px;
  margin: 15px 0 0 0;
  position: relative;
  vertical-align: top;
}

.gfield--type-consent {
  width: 100%;
  margin-bottom: 20px;
}

.gfield_radio label,
.gfield_checkbox label,
.gfield--type-consent label {
  font-size: 0.875rem;
  display: block;
  font-family: "greycliff-cf", Arial, Verdana, sans-serif;
  color: #233e7e;
  font-weight: bold;
}

.gfield_radio input,
.gfield_checkbox input,
.gfield--type-consent input {
  width: 24px;
  height: 24px;
  border: 3px solid #fff;
  background: #fff;
  border-radius: 120%;
  -webkit-appearance: none;
  display: inline-block;
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
}

.woocommerce-terms-and-conditions-wrapper input[type=checkbox] {
  top: 1px;
}

.woocommerce-form-login__rememberme,
.remember_me label {
  position: relative;
  padding-left: 34px;
  top: 0;
}

.remember_me label {
  margin-top: 20px;
}

.gfield_checkbox input,
.offset input[type=checkbox],
.woocommerce input#rememberme,
.woocommerce-terms-and-conditions-wrapper input[type=checkbox],
.remember_me input[type=checkbox],
.gfield--type-consent input {
  border-radius: 5px;
}

.woocommerce input#rememberme {
  padding: 0;
  margin: 0;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme,
#loginform .sensei-login-submit a {
  display: inline-block;
  margin-top: 10px;
  margin-left: 20px;
}

.gfield_radio input:checked {
  background: #233e7e;
}

.gfield_checkbox input:checked,
.offset input[type=checkbox],
.woocommerce input#rememberme:checked,
.woocommerce-terms-and-conditions-wrapper input[type=checkbox]:checked,
.remember_me input[type=checkbox]:checked,
.gfield--type-consent input:checked {
  background: url(images/check.svg) no-repeat center #fff;
}

.gfield:first-child .gsection_title {
  margin-top: 0;
}

.gform_fields {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.gfield {
  flex-basis: 100%;
}

.gfield--width-half {
  flex-basis: calc(50% - 10px);
}

.ginput_complex {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.gfield--type-time .ginput_complex {
  gap: 10px;
}

.hour_minute_colon {
  width: 3px;
  position: relative;
  top: 46x;
}

.screen-reader-text {
  display: none;
}

.gfield--type-time .ginput_container {
  flex-basis: calc(33.33% - 11px);
}

.ginput_complex.ginput_container_address span:nth-child(1),
.ginput_complex.ginput_container_address span:nth-child(2) {
  flex-basis: 100%;
}

.ginput_complex.ginput_container_address span:nth-child(3) {
  flex-basis: 40%;
}

.ginput_complex.ginput_container_address span:nth-child(4) {
  flex-basis: calc(30% - 20px);
}

.ginput_complex.ginput_container_address span:nth-child(5) {
  flex-basis: calc(30% - 20px);
}

.ginput_complex.ginput_container_address span:nth-child(6) {
  flex-basis: 100%;
}

.gfield_description:last-child {
  margin-top: 5px;
}

legend + .gfield_description {
  margin-top: 0;
}

.gform_wrapper {
  text-align: left;
}

.gform_ajax_spinner {
  margin: 20px auto 0 auto;
  border: 4px solid rgba(35, 62, 126, 0.2);
  border-left: 4px solid #233e7e;
  animation: spinner 1.1s infinite linear;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.gfield_required_text,
.gfield--input-type-consent legend {
  display: none !important;
}

.gfield_required:after {
  content: " *";
  color: #233e7e;
  font-family: "greycliff-cf", Arial, Verdana, sans-serif;
  font-weight: bold;
  text-indent: 0;
  position: relative;
  transition: all 0.35s ease-in-out;
}

h3.gsection_title,
.text h3.gsection_title {
  font-family: "greycliff-cf", Arial, Verdana, sans-serif;
  font-weight: 600;
  border-bottom: 1px solid #233e7e;
  color: #233e7e;
  font-size: 1.5rem;
  padding-bottom: 10px;
  line-height: 1.3em;
  margin: 50px 0 30px 0;
}

.gfield:first-child .gsection_title {
  margin-top: 0;
}

.ginput_complex {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ginput_complex.ginput_container_address span:nth-child(1),
.ginput_complex.ginput_container_address span:nth-child(2) {
  flex-basis: 100%;
}

.ginput_complex.ginput_container_address span:nth-child(3) {
  flex-basis: 40%;
}

.ginput_complex.ginput_container_address span:nth-child(4) {
  flex-basis: calc(30% - 20px);
}

.ginput_complex.ginput_container_address span:nth-child(5) {
  flex-basis: calc(30% - 20px);
}

.ginput_complex.ginput_container_address span:nth-child(6) {
  flex-basis: 100%;
}

.gfield_description:last-child {
  margin-top: 5px;
}

legend + .gfield_description {
  margin-top: 0;
}

.text .gform_wrapper {
  margin-top: 40px;
}

.text .gform_wrapper:first-child {
  margin-top: 0;
}

.gform_drop_area {
  border: 1px dashed #233e7e;
  padding: 40px 20px;
  margin: 5px 0;
  text-align: center;
}

.gform_drop_instructions {
  display: block;
  margin-bottom: 15px;
  font-family: "greycliff-cf", Arial, Verdana, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#extensions_message {
  display: block;
  margin-top: 3px;
}

.ginput_preview {
  font-size: 0.9375rem;
  line-height: 16px;
  font-weight: normal;
  margin-bottom: 8px;
}

.ginput_preview button {
  width: 16px;
  height: 16px;
  z-index: 9;
  margin-right: 5px;
  position: relative;
  top: 1px;
  display: inline-block;
  border: none;
  padding: 0;
  text-indent: -9999px;
  background: url(images/cancel.svg) no-repeat;
}

.gform_footer img {
  display: block;
  margin: 30px auto 0 auto;
  width: 24px;
  height: 24px;
  clear: both;
}

.ginput_product_price_wrapper {
  font-size: 1rem;
  line-height: 1.4em;
  margin-bottom: 10px;
  border: none;
  font-family: "greycliff-cf", Arial, Verdana, sans-serif;
  margin: 0;
  font-weight: 500;
}

.ginput_product_price_wrapper .gform-field-label {
  margin-bottom: 5px;
}

.ginput_product_price_wrapper input[type=text] {
  font-size: 1rem;
  line-height: 1.4em;
  border: none;
  font-family: "greycliff-cf", Arial, Verdana, sans-serif;
  margin: 0;
}

.gfield--type-product input[type=number] {
  margin-left: 10px;
  max-width: 90px;
  display: inline-block;
  vertical-align: middle;
  margin-top: 10px;
}

.gfield--type-product .ginput_quantity_label {
  display: inline-block;
  vertical-align: middle;
  margin: 10px 0 0 0 !important;
}

.gfield--type-total {
  font-family: "greycliff-cf", Arial, Verdana, sans-serif;
  color: #233e7e;
  margin: 40px 0;
}

.gfield--type-total .gfield_label {
  font-size: 1.875rem;
  line-height: 1.3em;
  font-weight: bold;
  display: inline-block;
  font-family: "greycliff-cf", Arial, Verdana, sans-serif;
  vertical-align: top;
  padding: 0 15px 0 0;
  color: #233e7e;
  position: relative;
  top: 1px;
  text-transform: capitalize;
}

.ginput_container_total {
  font-weight: bold;
  display: inline-block;
  font-family: "greycliff-cf", Arial, Verdana, sans-serif;
  vertical-align: top;
}

input.ginput_total {
  border: none;
  font-family: "greycliff-cf", Arial, Verdana, sans-serif;
  font-size: 1.875rem;
  line-height: 1.3em;
  font-weight: bold;
  color: #233e7e;
  background: none;
  padding: 0;
}

.ginput_container_creditcard {
  max-width: 475px;
}

.ginput_container_creditcard span {
  display: block;
  width: 100%;
  float: none;
}

.ginput_container_creditcard span + span {
  margin-top: 20px;
}

.ginput_cardinfo_left {
  margin-bottom: 20px;
}

.gform_card_icon_container,
.ginput_container_creditcard span.ginput_card_security_code_icon {
  display: none;
}

.gform_footer {
  padding-top: 20px;
}

/* !Datepicker - - - - - */
.ui-datepicker {
  padding: 15px;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -9999px;
  left: -9999px;
  transform: translate(0, 15px);
  width: 250px;
  font-family: "greycliff-cf", Arial, Verdana, sans-serif;
}

.ui-datepicker-title {
  padding: 10px 0;
}

table.ui-datepicker-calendar td {
  padding: 4px 5px;
  text-align: center;
  color: rgba(128, 128, 128, 0.6);
}

table.ui-datepicker-calendar th {
  color: #233e7e;
}

.ui-datepicker-title select {
  width: calc(50% - 8px);
  margin: 0 0 0 8px;
  background-color: #fff;
  color: #233e7e;
  font-size: 0.8125rem;
  font-family: "greycliff-cf", Arial, Verdana, sans-serif;
  border: 1px solid #808080;
  font-weight: 600;
  height: 40px;
  text-transform: uppercase;
  border-radius: 0 !important;
  padding: 0 25px 0 10px;
}

.ui-datepicker-title select:first-child {
  margin: 0 8px 0 0;
}

a.ui-datepicker-prev {
  width: 50%;
  padding: 0 5px 3px 15px;
  line-height: 20px;
  font-weight: bold;
  background: url(images/arrow-left.svg) no-repeat left 5px;
  display: inline-block;
  text-transform: uppercase;
  color: #233e7e;
}

a.ui-datepicker-next {
  width: 50%;
  padding: 0 15px 3px 5px;
  text-align: right;
  line-height: 20px;
  font-weight: bold;
  background: url(images/arrow-right.svg) no-repeat right 5px;
  display: inline-block;
  text-transform: uppercase;
  color: #233e7e;
}

a.ui-datepicker-prev:hover,
a.ui-datepicker-next:hover {
  color: #233e7e;
}

a.ui-datepicker-prev span {
  padding-left: 10px;
  background: #fff;
  margin-left: -8px;
}

a.ui-datepicker-next span {
  padding-right: 10px;
  background: #fff;
  margin-right: -8px;
}

.ui-datepicker-calendar {
  width: 100%;
}

table.ui-datepicker-calendar td a {
  color: rgba(35, 62, 126, 0.3);
  font-weight: 600;
  display: block;
}

table.ui-datepicker-calendar td.ui-datepicker-today a,
table.ui-datepicker-calendar td a:hover {
  color: #233e7e;
}

.ginput_container_date span,
.gfield--type-date .screen-reader-text {
  display: none;
}

/* !Hide Captcha Badge - - - - - */
.grecaptcha-logo,
.grecaptcha-badge {
  visibility: hidden !important;
}

/* !Accessibility Focus - - - - - */
* :focus-visible,
a:focus-visible,
a.nav-toggle:focus-visible,
input.gform_button:focus-visible {
  outline: 2px solid #233e7e;
  outline-offset: 5px;
}

.page-block.pink-bg * :focus-visible,
.page-block.pink-bg a:focus-visible {
  outline-color: #f6eb83;
}

input.medium:focus-visible,
input.large:focus-visible,
input.small:focus-visible,
input.search-box:focus-visible,
select:focus-visible,
textarea:focus-visible,
.ginput_complex input:focus-visible,
.ginput_product_price_wrapper input[type=text]:focus-visible,
.gfield--type-product input[type=number]:focus-visible,
input.datepicker:focus-visible,
input[type=text]:focus-visible,
input[type=email]:focus-visible {
  outline: 2px solid #233e7e;
  outline-offset: -2px;
}

/* !Footer - - - - - */
footer {
  padding-top: 60px;
}

.footer-bottom {
  padding: 35px 0;
  font-size: 0.75rem;
  line-height: 1.4em;
  font-weight: bold;
}

.footer-sep {
  padding: 0 10px;
}

.footer-bottom a {
  color: #233e7e;
}

.footer-bottom a.underline {
  color: #233e7e;
  text-decoration: underline;
}

.footer-bottom a:hover,
.footer-bottom a.underline:hover {
  color: rgba(35, 62, 126, 0.7);
}

.footer-top {
  padding: 10px 0 30px 0;
}

.sponsor-text {
  max-width: 808px;
  margin: 0 auto 120px auto;
  text-align: center;
  width: 100%;
  display: block;
}

.footer-left {
  width: 190px;
}

.footer-right {
  width: calc(100% - 190px);
  padding-left: 75px;
}

ul.footer-blocks > li {
  padding-left: 65px;
  width: 50%;
}

.footer-text {
  padding-top: 30px;
  border-top: 3px solid #233e7e;
  font-size: 0.9375rem;
  line-height: 1.5em;
}

.footer-text a {
  color: #233e7e;
  display: block;
}

.footer-text a + a {
  margin-top: 8px;
}

.footer-text a:hover {
  color: rgba(35, 62, 126, 0.7);
}

.link-label {
  font-size: 80%;
  width: 60px;
  display: inline-block;
}

.footer-social {
  margin-top: 30px;
}

a.social {
  display: inline-block;
  vertical-align: middle;
}

a.social + a.social {
  margin-left: 15px;
}

a.social path {
  fill: #233e7e;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

a.social:hover path {
  fill: #233e7e;
}

ul.footer-links a {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.4em;
  text-decoration: underline;
  color: #233e7e;
  font-weight: 900;
  margin: 15px 15px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

ul.footer-links a:hover {
  color: rgba(35, 62, 126, 0.7);
}

ul.footer-links {
  padding-top: 15px;
}

.footer-signup .gfield_label {
  display: none;
}

.signup-label {
  font-size: 1.25rem;
  line-height: 1.3em;
  padding-bottom: 25px;
}

.footer-block + .footer-block {
  margin-top: 15px;
}

/* !Stats - - - - - */
.stat-label {
  font-size: 1.375rem;
  line-height: 1.3em;
  border-top: 2px solid #233e7e;
  margin-top: 20px;
  padding-top: 20px;
}

.impact-block .stat-label,
.stat-label.white {
  border-color: #fff;
}

ul.stat-cols {
  grid-gap: 80px;
}

.stat-number {
  font-size: 7.5rem;
  line-height: 0.85em;
  font-weight: 900;
  color: #233e7e;
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
  letter-spacing: 0.05em;
}

.impact-block .stat-number {
  color: #233e7e;
}

.stat-flex .stat-number {
  font-size: 5rem;
}

.stl-block .stat-graphic {
  max-width: 275px;
}

.stl-cols {
  display: grid;
  grid-template-columns: 33.33% 1fr;
  gap: 80px;
}

.stl-sub-cols {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 50px;
}

ul.side-links li + li {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #233e7e;
}

* + ul.side-links {
  margin-top: 35px;
}

.stat-section + .stat-section {
  margin-top: 50px;
}

.stat-stack-block .stl-cols {
  direction: rtl;
  grid-template-columns: 1fr 33.33%;
}

/* !Header - - - - - */
.header-grid {
  padding: 40px 0 0 0;
  display: grid;
  grid-template-columns: 1fr 314px 1fr;
  gap: 40px;
  align-items: center;
}

a.big-logo {
  display: block;
}

.header-left {
  gap: 20px;
  align-items: center;
}

.header-right {
  justify-content: flex-end;
}

.header-text {
  font-size: 0.75rem;
  line-height: 1.5em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.header-right .header-text {
  max-width: 150px;
  text-align: right;
}

a.gg-logo,
a.gg-logo svg {
  display: block;
  width: 24px;
}

a.gg-logo path {
  fill: #233e7e;
  transition: all 0.35s ease-in-out;
}

a.gg-logo:hover path {
  fill: #233e7e;
}

.nav-col a.gg-logo path,
.nav-col a.gg-logo:hover path {
  fill: #233e7e;
}

ul.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  gap: 15px;
}

ul.nav li {
  flex-grow: 1;
}

a.main {
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
  color: #233e7e;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  padding: 15px;
  font-size: 2.25rem;
  line-height: 1em;
  border-radius: 10px;
  border: 3px solid #233e7e;
  background: #f6eb83;
  display: block;
  text-align: center;
  font-weight: bold;
}

a.main:hover,
a.main.tickets {
  background: #233e7e;
  border-color: #233e7e;
  color: #fff;
}

a.main.tickets:hover {
  background: #f6eb83;
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.header-date img {
  height: 30px;
  width: auto;
  display: block;
}

.header-border {
  margin-top: 30px;
  position: relative;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.5em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.header-border:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #233e7e;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
}

.header-border span {
  padding: 0 20px;
  background: #f6eb83;
  position: relative;
  z-index: 10;
}

.scroll-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #f6eb83;
  visibility: hidden;
  opacity: 0;
  z-index: 100000;
  border-bottom: 1px solid #233e7e;
  transition: all 0.35s ease-in-out;
}

.scrolled .scroll-header {
  visibility: visible;
  opacity: 1;
}

a.scroll-logo {
  width: 195px;
  display: block;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translate(0, -50%);
  z-index: 101;
}

a.nav-toggle {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 50px;
  right: 30px;
  transform: translate(0, -50%);
  z-index: 100500;
}

a.nav-toggle:before {
  content: "Menu";
  position: absolute;
  top: 0;
  right: calc(100% + 15px);
  font-size: 0.8125rem;
  line-height: 50px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #233e7e;
  z-index: 1;
  transition: all 0.35s ease-in-out;
}

a.nav-toggle.active:before {
  content: "Close";
}

a.nav-toggle svg {
  transform-origin: center;
  transition: all 0.35s ease-in-out;
}

a.nav-toggle rect {
  fill: #233e7e;
  transition: all 0.35s ease-in-out;
}

a.nav-toggle polygon {
  fill: #fff;
  transition: all 0.35s ease-in-out;
}

a.nav-toggle.active svg {
  transform: rotate(-45deg);
}

a.nav-toggle.active rect {
  fill: #fff;
}

a.nav-toggle.active polygon {
  fill: #233e7e;
}

.nav-col {
  position: fixed;
  top: 0;
  right: 0;
  transform: translate(101%, 0);
  height: 100dvh;
  width: 500px;
  background: #efeee7;
  z-index: 100200;
  overflow: scroll;
  transition: all 0.45s ease-in-out;
}

.nav-col-scroll {
  min-height: 100%;
  height: 1005;
  overflow: scroll;
  display: flex;
  gap: 50px;
  flex-direction: column;
  padding: 150px 50px 25px 50px;
  justify-content: space-between;
}

.nav-col-content,
.nav-col-footer {
  opacity: 0;
  transition: all 0.45s ease-in-out;
  transition-delay: 0.2s;
}

.nav-col-footer {
  transition-delay: 0.35s;
}

.nav-active .nav-col-content,
.nav-active .nav-col-footer {
  opacity: 1;
}

.nav-active .nav-col {
  transform: translate(0, 0);
}

.nav-col-header {
  height: 100px;
}

.nav-col a.gg-logo {
  width: 24px;
  display: none;
  position: fixed;
  top: 33px;
  left: 30px;
}

ul.mobile-nav a {
  display: block;
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
  font-weight: bold;
  color: #233e7e;
  font-size: 3.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3em;
}

ul.mobile-nav a:hover,
ul.mobile-nav a.active {
  color: #081B39;
}

ul.mobile-nav li + li {
  margin-top: 10px;
}

.nav-col-footer .header-text {
  max-width: 150px;
}

/* !Text Block - - - - - */
.text-max,
.text-box-max {
  max-width: 860px;
}

.text-box-max {
  margin: 0 auto;
}

.text-box {
  border: 3px solid #233e7e;
  padding: 70px 50px;
}

/* !Columns - - - - - */
* + ul.columns {
  margin-top: 50px;
}

ul.columns {
  gap: 60px 45px;
}

.col-image {
  margin-bottom: 30px;
  aspect-ratio: 1/1;
}

.columns * + .subhead14,
ul.post-list * + .subhead14 {
  margin-top: 15px;
}

.extra-text.text {
  padding: 30px 0 1px 0;
  display: none;
  margin-top: 0;
}

a.text-toggle {
  position: relative;
  padding-left: 20px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #233e7e;
  margin-top: 30px;
  display: block;
}

a.text-toggle:hover {
  color: #233e7e;
}

a.text-toggle.white {
  color: #fff;
}

a.text-toggle.white:hover {
  color: #f6eb83;
}

a.text-toggle:before {
  content: "";
  width: 10px;
  height: 2px;
  background: #233e7e;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  border-radius: 2px;
}

a.text-toggle:after {
  content: "";
  width: 2px;
  height: 10px;
  background: #233e7e;
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translate(0, -50%);
  border-radius: 2px;
  z-index: 10;
  transition: all 0.35s ease-in-out;
}

a.text-toggle.active:after {
  opacity: 0;
}

a.text-toggle.white:before,
a.text-toggle.white:after {
  background: #fff;
}

/* !Accordion - - - - - */
.acc-grid {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 90px;
}

.acc-toggle {
  font-size: 1.75rem;
  line-height: 1.3em;
  font-weight: 900;
  color: #233e7e;
  padding: 30px 70px 30px 0;
  position: relative;
  display: block;
}

.acc-toggle:hover {
  color: #233e7e;
}

.acc-toggle:after {
  content: "";
  width: 44px;
  height: 44px;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  transform: translate(0, -50%);
  transition: none;
  background: url(images/plus-blue.svg) no-repeat center;
  background-size: 44px 44px;
}

.acc-toggle.ui-state-active:after {
  background: url(images/minus-blue.svg) no-repeat center;
  background-size: 44px 44px;
}

.acc-content {
  padding-bottom: 45px;
  display: none;
}

.acc-item + .acc-item {
  border-top: 1px dashed rgba(35, 62, 126, 0.3);
}

.acc-wrap {
  margin-top: -30px;
}

/* !Alternating Rows - - - - - */
.alt-row + .alt-row {
  margin-top: 95px;
}

.alt-row {
  display: grid;
  grid-template-columns: 58% 1fr;
  gap: 0 70px;
  align-items: center;
  grid-template-areas: "image content";
}

.alt-row:nth-child(even),
.swap .alt-row:nth-child(odd) {
  direction: rtl;
}

.swap .alt-row:nth-child(even) {
  direction: ltr;
}

.page-block.has-border {
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.alt-extra {
  padding-top: 50px;
  direction: ltr;
  grid-column: image/content;
  display: none;
}

.alt-extra .text {
  max-width: 800px;
  margin: 0 auto;
}

/* !Media - - - - - */
video {
  width: 100%;
  height: auto;
  display: block;
}

.nyt-foot {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 35px;
}

.nyt-text {
  font-size: 0.9375rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nyt-logo {
  display: block;
  max-width: 194px;
}

.slick-prev,
.slick-next {
  width: 54px;
  height: 54px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 101;
}

.slick-prev {
  left: 0;
  transform: translate(-50%, -50%);
}

.slick-next {
  right: 0;
  transform: translate(50%, -50%);
}

.wide-media-block .slick-prev {
  left: 20px;
  transform: translate(0, -50%);
}

.wide-media-block .slick-next {
  right: 20px;
  transform: translate(0, -50%);
}

.slick-prev circle,
.slick-next circle,
.slick-prev polygon,
.slick-next polygon {
  transition: all 0.35s ease-in-out;
}

.slick-prev path,
.slick-next path {
  fill: #233e7e;
}

.slick-prev:hover circle,
.slick-next:hover circle {
  fill: #233e7e;
}

.slick-prev:hover polygon,
.slick-next:hover polygon {
  fill: #fff;
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 101;
  font-size: 0.875rem;
  line-height: 1.3em;
}

.has-caption {
  position: relative;
}

.has-caption:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 30%);
}

.counter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 101;
  font-size: 0.875rem;
  line-height: 1.3em;
  display: flex;
  gap: 5px;
  align-items: center;
}

/* !Feature Box - - - - - */
.feature-grid {
  display: grid;
  grid-template-columns: 50% minmax(0, auto);
  gap: 90px;
  align-items: center;
  grid-auto-rows: auto;
}

/* !Featured Content - - - - - */
ul.post-list {
  gap: 80px;
}

ul.post-list.one-grid.grid {
  display: grid;
}

ul.post-list.one-grid.grid li {
  width: 100%;
  display: block;
}

ul.post-list {
  max-width: 1120px;
  margin: 0 auto;
}

.post-cat {
  margin-bottom: 10px;
}

.press-cat.post-cat {
  margin: 10px 0 0 0;
}

.post-title a {
  color: #233e7e;
}

.post-title a:hover {
  color: #233e7e;
}

.grid-post-image {
  margin-bottom: 20px;
}

.grid-post-image a {
  display: block;
  position: relative;
}

.grid-post-image a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(35, 62, 126, 0);
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.grid-post-image a:hover:before {
  background: rgba(35, 62, 126, 0.7);
}

.excerpt {
  margin-top: 20px;
}

.idea-left {
  width: 65.7%;
}

.idea-right {
  width: 34.3%;
  padding: 30px 0 0 70px;
}

.cycle-count {
  font-size: 0.8125rem;
  line-height: 1.4em;
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 10;
}

.total-count {
  padding-left: 10px;
}

.current-count {
  font-size: 130%;
}

.idea-left .slick-next {
  bottom: -5px;
  left: auto;
  right: 10px;
}

.idea-left .slick-prev {
  bottom: -5px;
  left: auto;
  right: 40px;
}

.featured-post-title {
  margin-bottom: 30px;
}

.headline.featured-post-title {
  font-size: 2.25rem;
}

.featured-post-title a {
  color: #233e7e;
}

.featured-post-title a:hover {
  color: #233e7e;
}

/* !Sticky Ticket Bar - - - - - */
.ticket-stick {
  padding: 25px 30px;
  display: none;
  background: #f6eb83;
  z-index: 2000;
}

/* !Event Guide - - - - - */
#guide {
  padding-top: 70px;
  font-family: "greycliff-cf", Arial, Verdana, sans-serif;
  color: #081B39;
}

#guide a {
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.guide-header {
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  border-bottom: 1px solid #081B39;
  background: #233e7e;
  z-index: 1010;
  transition: all 0.5s ease-in-out;
}

.guide-footer {
  height: 100px;
  background: #fff;
  position: fixed;
  bottom: 0dvh;
  left: 0;
  width: 100vw;
  border-top: 1px solid #081B39;
}

a.guide-logo {
  width: 110px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0, -50%);
  z-index: 10;
}

a.guide-toggle {
  display: block;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 6px;
  background: #fff;
  transform: translate(0, -50%);
  transition: all 0.5s ease-in-out;
}

.toggle-boxes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  background: #EFEEE7;
  width: 18px;
  height: 18px;
  transition: all 0.5s ease-in-out;
}

.toggle-boxes svg {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

a.guide-toggle.active .toggle-boxes {
  transform: translate(-50%, -50%) rotate(45deg);
}

a.guide-toggle.active {
  background: #081B39;
}

a.guide-toggle:before {
  content: "Menu";
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
  position: absolute;
  top: 0;
  right: calc(100% + 10px);
  color: #081B39;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9375rem;
  z-index: 1;
  line-height: 36px;
  display: block;
}

.guide-nav-wrap {
  position: fixed;
  top: 0;
  left: calc(100vw + 20px);
  width: 100vw;
  height: 100dvh;
  z-index: 1000;
  background: #233e7e;
  overflow: scroll;
  transition: all 0.5s ease-in-out;
}

.guide-nav-active .guide-nav-wrap {
  left: 0;
}

.guide-nav-wrap .flex-wrap {
  padding: 82px 0 32px 0;
  min-height: 100dvh;
}

ul.guide-nav li {
  padding: 8px;
  width: 136px;
}

ul.guide-nav {
  max-width: 306px;
  margin: 0 auto;
  padding: 0 17px;
}

a.guide-link {
  display: flex;
  flex-direction: column;
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

a.guide-link:hover {
  background: rgba(255, 255, 255, 0.4);
}

.guide-icon {
  padding: 0 30px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-icon-text {
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
  background: #f6eb83;
  font-size: 0.875rem;
  line-height: 1.4em;
  text-align: center;
  padding: 6px 10px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

a.bottom-guide-nav {
  height: 100px;
  padding: 20px 10px 0 10px;
  display: block;
  position: relative;
}

.bottom-guide-icon {
  width: 30px;
  height: 30px;
  display: block;
  margin: 0 auto;
  position: relative;
}

.bottom-guide-icon svg {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.bottom-guide-icon path {
  fill: #081B39;
  transition: all 0.5s ease-in-out;
}

.bottom-guide-title {
  font-weight: bold;
  font-size: 0.8125rem;
  line-height: 1.4em;
  text-align: center;
  padding-top: 10px;
  color: #081B39;
  transition: all 0.5s ease-in-out;
}

.slick-current .bottom-guide-title {
  color: #fff;
}

.slick-current .bottom-guide-icon path {
  fill: #fff;
}

.guide-title {
  line-height: 60px;
  font-size: 2.375rem;
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #081B39;
}

.guide-content {
  width: 100vw;
  height: calc(100dvh - 170px);
  background: #fff;
  position: relative;
}

.guide-content-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  border-top: 1px solid #081B39;
  background: #f6eb83;
  z-index: 20;
  height: 60px;
  padding: 0 75px;
  text-align: center;
}

.guide-content-top {
  height: calc(100dvh - 170px);
  padding: 0 0 60px 0;
  width: 100vw;
  overflow: scroll;
}

.guide-content-top.no-scroll {
  overflow: hidden;
}

.slick-current a.bottom-guide-nav {
  background: #081B39;
}

.guide-content a.slick-prev,
.guide-content a.slick-next {
  width: 30px;
  height: 60px;
  position: absolute;
  top: auto;
  transform: none;
  bottom: 0;
  left: 0;
  background: url(images/dark-slide-arrow-left.svg) no-repeat center;
  text-indent: -9999px;
  cursor: pointer;
  z-index: 50;
  transition: all 0.5s ease-in-out;
}

.guide-content a.slick-next {
  left: auto;
  right: 0;
  background: url(images/dark-slide-arrow-right.svg) no-repeat center;
}

.guide-content a.slick-prev:hover,
.guide-content a.slick-next:hover {
  opacity: 0.5;
}

.map-zoom img {
  display: block;
  width: 1000px;
  height: auto;
}

a.zoom-reset,
.zoom-text {
  background: #233e7e;
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
  padding: 5px 15px 4px 15px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1010;
  font-size: 0.9375rem;
  line-height: 1.3em;
  border-radius: 16px;
}

a.zoom-reset:hover {
  background: #081B39;
}

.zoom-text {
  background: rgba(255, 255, 255, 0.5);
  color: #081B39;
  right: auto;
  left: 10px;
  padding-left: 30px;
}

.map-start .zoom-text {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.zoom-text:before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
  z-index: 1;
  background: url(images/zoom-arrow.svg) no-repeat center;
}

ul.guide-tabs li {
  margin: 0 12px 0 0;
  padding: 12px 0;
  position: relative;
}

ul.guide-tabs {
  background: #f6eb83;
  border-bottom: 1px solid #081B39;
  padding: 0 0 0 12px;
}

.tab-fix {
  border-bottom: 1px solid #081B39;
  background: #f6eb83;
}

.tab-fix ul.guide-tabs.ilb {
  display: inline-block;
  border: none;
}

.tab-fix ul.guide-tabs + ul.guide-tabs {
  padding-left: 0;
}

ul.guide-tabs a {
  display: inline-block;
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
  text-transform: uppercase;
  color: #081B39;
  background: #fff;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.3em;
  padding: 7px 15px 5px 15px;
  cursor: pointer;
  letter-spacing: 0.05em;
}

ul.guide-tabs a.angle svg {
  display: inline-block;
  margin-left: 8px;
  position: relative;
  top: 1px;
  width: 12px;
  height: 12px;
}

ul.guide-tabs a.angle path {
  fill: #233e7e;
}

ul.guide-tabs li.ui-state-active a {
  background: #081B39;
  color: #fff;
}

ul.guide-tabs li:before {
  content: "";
  width: 10px;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
  background: url(images/dark-tab-arrow.svg) no-repeat center top;
  transition: all 0.5s ease-in-out;
}

ul.guide-tabs li.ui-state-active:before {
  height: 5px;
}

.tab-hide,
.guide-answer {
  display: none;
}

.guide-small-title,
.guide-artist-date {
  color: #081B39;
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
  font-size: 1.125rem;
  line-height: 1.3em;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

a.guide-acc-title {
  display: block;
  padding: 16px 40px 16px 0;
  cursor: pointer;
  position: relative;
}

.guide-acc {
  padding: 20px 25px;
}

.content-pad {
  padding: 30px 25px;
}

.guide-acc-item + .guide-acc-item {
  border-top: 1px solid #081B39;
}

.guide-answer {
  padding: 5px 0 25px 0;
}

.content-pad .guide-small-title + .text {
  margin-top: 15px;
}

a.guide-acc-title:before {
  content: "";
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: #081B39;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  z-index: 1;
}

a.guide-acc-title:after {
  content: "";
  width: 2px;
  height: 12px;
  border-radius: 2px;
  background: #081B39;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 5px;
  z-index: 2;
  transition: all 0.5s ease-in-out;
}

a.guide-acc-title.ui-state-active:after {
  opacity: 0;
}

#guide .text {
  color: #081B39;
  font-size: 0.875rem;
}

#guide .text a {
  color: #081B39;
  text-decoration: underline;
}

#guide .text a:hover {
  color: rgba(8, 27, 57, 0.5);
}

.list-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.list-left + .list-right {
  padding-left: 20px;
}

.guide-artist-date {
  font-size: 0.75rem;
}

a.guide-list-toggle {
  position: relative;
  padding-left: 20px;
  font-size: 0.9375rem;
  font-weight: bold;
  color: #233e7e;
  margin-top: 15px;
  display: block;
}

a.guide-list-toggle:hover {
  color: #081B39;
}

a.guide-list-toggle:before {
  content: "";
  width: 10px;
  height: 2px;
  background: #233e7e;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  border-radius: 2px;
}

a.guide-list-toggle:after {
  content: "";
  width: 2px;
  height: 10px;
  background: #233e7e;
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translate(0, -50%);
  border-radius: 2px;
  z-index: 10;
  transition: all 0.35s ease-in-out;
}

a.guide-list-toggle.active:after {
  opacity: 0;
}

.list-more {
  display: none;
  padding-top: 15px;
}

ul.guide-list li {
  padding: 20px 0;
}

ul.guide-list li + li {
  border-top: 1px solid #081B39;
}

ul.guide-list {
  padding: 10px 25px;
  width: 100vw;
}

.accordion-list-wrap ul.guide-list {
  padding-left: 0;
  padding-right: 0;
  width: calc(100vw - 50px);
}

ul.featured-list {
  padding: 30px 25px;
}

ul.featured-list li + li {
  margin-top: 20px;
}

a.featured-box,
.featured-box-content {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.featured-box-content {
  padding: 25px;
}

.featured-box-content .guide-small-title {
  transition: all 0.5s ease-in-out;
}

.featured-box-date {
  display: inline-block;
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
  text-transform: uppercase;
  color: #081B39;
  background: #EFEEE7;
  border-radius: 6px;
  font-size: 0.9375rem;
  line-height: 1.3em;
  padding: 6px 16px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
}

#guide .featured-box-content .text {
  color: #808080;
  margin-top: 10px;
}

.featured-box-image {
  position: relative;
}

.featured-box-image:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(8, 27, 57, 0);
  transition: all 0.5s ease-in-out;
}

a:hover .featured-box-image:before {
  background: rgba(8, 27, 57, 0.3);
}

.ticket-screen {
  padding: 50px 30px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, black 100%);
  text-align: center;
}

.ticket-max {
  max-width: 300px;
  margin: 0 auto;
}

.ticket-title {
  font-size: 2.125rem;
  line-height: 1em;
  letter-spacing: 0.025em;
  font-family: "bebas-neue-pro", "greycliff-cf", Arial, Verdana, sans-serif;
}

.ticket-screen a.button {
  background: #233e7e;
  color: #fff;
}

.ticket-title + a.button {
  margin-top: 20px;
}

.ticket-screen a.button:hover {
  background: #fff;
  color: #081B39;
}

.ticket-bg {
  height: 100%;
  position: relative;
}

.ticket-item + .ticket-item {
  margin-top: 50px;
}

.ticket-item:nth-child(odd) a.button {
  background: #f6eb83;
  color: #081B39;
}

.ticket-item:nth-child(odd) a.button:hover {
  background: #fff;
  color: #081B39;
}

/* !Menu Footer - - - - - */
.nav-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 20px;
  z-index: 1;
  width: 100vw;
  padding: 0 20px;
  text-align: right;
  line-height: 20px;
  font-size: 0.5625rem;
}

a.credit {
  color: #081B39;
  font-weight: bold;
}

a.gg {
  width: 17px;
  height: 25px;
  position: absolute;
  top: 0;
  left: 20px;
  transform: translate(0, -50%);
  text-indent: 9999px;
  background: url(images/gg-footer-icon.svg) no-repeat center;
  z-index: 2;
}

/* !Sticky Links - - - - - */
ul.sticky-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  padding: 15px;
}

.sticky-block {
  position: sticky;
  top: 100px;
  left: 0;
  z-index: 10010;
}

html {
  scroll-behavior: smooth;
}

.page-block {
  scroll-margin: 220px;
}

/* - - - Media Queries - - - */
@media only screen and (max-width: 1200px) {
  a.main {
    padding: 12px;
    font-size: 1.5rem;
  }
  ul.nav {
    gap: 10px;
  }
  .alt-row {
    grid-template-columns: 52% 1fr;
    gap: 50px;
  }
  .inner {
    padding: 0 30px;
    max-width: 1010px;
  }
  .inner.skinny {
    max-width: 760px;
  }
  .inner.mid {
    max-width: 1160px;
  }
  .slick-prev,
  .slick-next,
  .slick-prev svg,
  .slick-next svg {
    width: 40px;
    height: 40px;
  }
  .headline57 {
    font-size: 3.125rem;
  }
  .headline50 {
    font-size: 2.625rem;
  }
  .headline34 {
    font-size: 1.875rem;
  }
  .headline30 {
    font-size: 1.625rem;
  }
  .subhead22 {
    font-size: 1.25rem;
  }
  .text.large-text {
    font-size: 1.125rem;
  }
  ul.columns {
    gap: 50px 30px;
  }
  .feature-grid {
    gap: 70px;
  }
}
@media only screen and (max-width: 1023px) {
  /* Style adjustments for viewports that meet the condition */
  header,
  ul.footer-blocks li.hide-mobile,
  .sticky-block {
    display: none;
  }
  .scroll-header {
    opacity: 1;
    visibility: visible;
  }
  #container {
    padding-top: 100px;
  }
  .headline57 {
    font-size: 2.625rem;
  }
  .headline50 {
    font-size: 2rem;
  }
  .headline34 {
    font-size: 1.625rem;
  }
  .headline30 {
    font-size: 1.375rem;
  }
  .subhead22 {
    font-size: 1.25rem;
  }
  .text-box {
    padding: 35px 25px;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .text blockquote {
    font-size: 1.125rem;
  }
  ul.columns.grid,
  .acc-grid,
  .alt-row,
  .stl-cols,
  .stl-sub-cols,
  .stat-stack-block .stl-cols {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 45px;
  }
  .alt-row {
    display: block;
  }
  .alt-image + .alt-content,
  .stat-section + .stat-section {
    margin-top: 35px;
  }
  .alt-extra {
    padding-top: 35px;
  }
  ul.columns.grid {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-block + .page-block,
  .alt-row + .alt-row {
    margin-top: 50px;
  }
  .page-block.bg,
  .block-pad,
  .block-pad-top {
    padding: 50px 0;
  }
  .big-block-pad,
  .page-block.bg.big-block-pad {
    padding: 35px 0;
  }
  .page-block:last-child {
    padding-bottom: 50px;
  }
  .page-block:first-child {
    padding-top: 50px;
  }
  .block-pad-top {
    padding-top: 50px;
  }
  .block-pad-bottom {
    padding-bottom: 50px;
  }
  .big-block-pad:first-child,
  .page-block.bg.big-block-pad:first-child {
    padding-top: 50px;
  }
  .big-block-pad:last-child,
  .page-block.bg.big-block-pad:last-child {
    padding-bottom: 50px;
  }
  .alt-image,
  .feature-left {
    max-width: 700px;
    margin: 0 auto;
  }
  * + ul.columns {
    margin-top: 35px;
  }
  .footer-top {
    padding-top: 60px;
  }
  .footer-left {
    display: block;
    margin: 0 auto;
  }
  .footer-right {
    width: 100%;
    display: block;
    padding: 0;
  }
  ul.footer-blocks > li {
    width: 100%;
    display: block;
    padding: 0;
    margin: 40px 0 0 0;
    text-align: center;
  }
  .footer-text {
    padding-top: 0;
    border: none;
  }
  .footer-bottom {
    text-align: center;
  }
  .bottom-content .inner {
    padding: 0;
  }
  .footer-bottom {
    padding: 20px 0;
  }
  .footer-signup .gform_footer {
    text-align: center;
  }
  .feature-grid {
    display: block;
  }
  .feature-left + .feature-right {
    margin-top: 45px;
  }
  .ticket-stick {
    position: sticky;
    position: -webkit-sticky;
    bottom: 0;
    left: 0;
    display: block;
  }
  .page-block.bg:first-child {
    margin-top: 0;
  }
}
@media only screen and (max-width: 768px) {
  /* Style adjustments for viewports that meet the condition */
  .text img.alignleft,
  .text img.alignright {
    margin: 10px auto;
    float: none;
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
  }
  .nav-col {
    width: 100%;
  }
  .nav-col a.gg-logo {
    display: block;
  }
  ul.mobile-nav a {
    font-size: 3rem;
  }
  a.scroll-logo {
    left: 15px;
  }
  .nav-col-scroll {
    padding: 110px 30px 30px 30px;
    gap: 30px;
  }
  a.nav-toggle {
    right: 20px;
  }
  .headline57 {
    font-size: 1.875rem;
  }
  .headline50 {
    font-size: 1.625rem;
  }
  .headline34 {
    font-size: 1.5rem;
  }
  .subhead22,
  .button,
  input.gform_button,
  .angle-link,
  .acc-toggle {
    font-size: 1.125rem;
  }
  .gfield--width-half {
    flex-basis: 100%;
  }
  .ginput_complex.ginput_container_address span:nth-child(3) {
    flex-basis: 100%;
  }
  .ginput_complex.ginput_container_address span:nth-child(4) {
    flex-basis: calc(50% - 10px);
  }
  .ginput_complex.ginput_container_address span:nth-child(5) {
    flex-basis: calc(50% - 10px);
  }
  .acc-toggle {
    padding: 25px 50px 25px 0;
  }
  .acc-wrap {
    margin-top: -25px;
  }
  .acc-toggle:after,
  .acc-toggle.ui-state-active:after {
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
    top: 40px;
  }
  .page-block.contain-media-block .inner {
    padding: 20px;
  }
  .feature-left {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .page-block.bg + .page-block.contain-media-block,
  .page-block.contain-media-block + .page-block.wide-media-block,
  .page-block.contain-media-block + .page-block.bg {
    margin-top: 0;
  }
  .page-block.contain-media-block:first-child,
  .page-block.contain-media-block:last-child {
    padding: 0;
  }
  .nyt-text {
    font-size: 0.8125rem;
  }
  .nyt-logo {
    max-width: 160px;
  }
  .nyt-foot {
    margin-top: 20px;
  }
  .stat-label {
    font-size: 1.125rem;
  }
  .stat-number {
    font-size: 6.25rem;
  }
  .stl-block .stat-graphic {
    max-width: 220px;
  }
  ul.post-list.grid.grid2 {
    max-width: 570px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 45px;
  }
}
@media only screen and (max-width: 600px) {
  /* Style adjustments for viewports that meet the condition */
  .gfield_radio .gchoice,
  .gfield_checkbox .gchoice,
  .gfield--type-consent {
    width: 100%;
    padding-right: 0;
  }
  .slick-prev,
  .slick-next,
  .slick-prev svg,
  .slick-next svg {
    width: 30px;
    height: 30px;
  }
  .wide-media-block .slick-prev {
    left: 10px;
    transform: translate(0, -50%);
  }
  .wide-media-block .slick-next {
    right: 10px;
    transform: translate(0, -50%);
  }
}
@media only screen and (max-width: 400px) {
  /* Style adjustments for viewports that meet the condition */
}
@media only screen and (max-width: 320px) {
  /* Style adjustments for viewports that meet the condition */
}
/* - - - Non-Semantic Helper Classes - - - */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
}

.ir br {
  display: none;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

/* - - - Print Styles - - - */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  } /* Black prints faster: h5bp.com/s */
  a, a:visited {
    text-decoration: underline;
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  } /* h5bp.com/t */
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
}
