@font-face {
  font-family: "AvenirPro65Medium";
  src: url("../fonts/webFonts/AvenirPro65Medium/font.woff2") format("woff2"), url("../fonts/webFonts/AvenirPro65Medium/font.woff") format("woff");
}
@font-face {
  font-family: "AvenirPro55Roman";
  src: url("../fonts/webFonts/AvenirPro55Roman/font.woff2") format("woff2"), url("../fonts/webFonts/AvenirPro55Roman/font.woff") format("woff");
}
@font-face {
  font-family: "AvenirPro85Heavy";
  src: url("../fonts/webFonts/AvenirPro85Heavy/font.woff2") format("woff2"), url("../fonts/webFonts/AvenirPro85Heavy/font.woff") format("woff");
}
@font-face {
  font-family: "AvenirPro35Light";
  src: url("../fonts/webFonts/AvenirPro35Light/font.woff2") format("woff2"), url("../fonts/webFonts/AvenirPro35Light/font.woff") format("woff");
}
@font-face {
  font-family: "AvenirPro95Black";
  src: url("../fonts/webFonts/AvenirPro95Black/font.woff2") format("woff2"), url("../fonts/webFonts/AvenirPro95Black/font.woff") format("woff");
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "AvenirPro55Roman", sans-serif;
  font-size: 20px;
}

:root {
  accent-color: #53ace0;
}

::selection {
  background-color: #53ace0;
}

body {
  color: #fafafa;
  background-color: #3b3b3b;
  font-family: "AvenirPro55Roman", sans-serif;
  min-height: 100vh;
}

input[type=radio] {
  appearance: none;
  margin: 0;
  background-color: currentColor;
  font: inherit;
  color: currentColor;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-content: center;
}

input[type=radio]::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  transform: scale(0);
  box-shadow: inset 1em 1em #53ace0;
}

input[type=radio]:checked::before {
  transform: scale(1);
}

input[type=checkbox] {
  appearance: none;
  margin: 0;
  background-color: currentColor;
  font: inherit;
  color: currentColor;
  width: 1.35rem;
  height: 1.35rem;
  border: 2px solid currentColor;
  display: grid;
  place-content: center;
}

input[type=checkbox]::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  transform: scale(0);
  box-shadow: inset 1em 1em #53ace0;
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

input[type=checkbox]:checked::before {
  transform: scale(1);
}

input[type=number] {
  margin-bottom: 8px;
  width: 48px;
  height: 28px;
  text-align: center;
  padding-top: 4px;
}

input[type=submit] {
  cursor: pointer;
}

p {
  margin: 8px 0;
}

.btn-gallery {
  color: #53ace0;
  cursor: pointer;
  font-size: 16px;
}

.bg-poster {
  background-image: url("../img/gallery/Wagoneer S_Best_In_Class_Tension Banner_v7-web.jpg");
}

.gallery-popup,
.img-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6666666667);
  z-index: 10;
}
.gallery-popup .close,
.img-popup .close {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -48px;
  top: 0;
  width: 48px;
  height: 48px;
  color: #fafafa;
  cursor: pointer;
  font-size: 1.75rem;
}
.gallery-popup .close img,
.img-popup .close img {
  width: 48px;
}
.gallery-popup .splide,
.gallery-popup .gal-win,
.img-popup .splide,
.img-popup .gal-win {
  position: relative;
  max-width: 640px;
  min-height: 480px;
  background-color: white;
  border-radius: 16px;
}
.gallery-popup .gallery-image,
.img-popup .gallery-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 640px;
  height: 480px;
}
.gallery-popup .gallery-bg,
.img-popup .gallery-bg {
  width: 518px;
  height: 400px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.gallery-popup .gallery-label,
.img-popup .gallery-label {
  display: none;
  position: absolute;
  text-align: center;
  color: #222;
  font-size: 14px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
}
.gallery-popup .gallery-label .package-label,
.img-popup .gallery-label .package-label {
  font-size: 13px;
  margin-top: 4px;
}
.gallery-popup .splide__arrows,
.img-popup .splide__arrows {
  position: absolute;
  pointer-events: none;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  z-index: 2;
}
.gallery-popup .splide__arrows .splide__arrow,
.img-popup .splide__arrows .splide__arrow {
  pointer-events: all;
  position: unset;
  top: unset;
  transform: unset;
  width: 48px;
  height: 120px;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  color: #222;
  background-repeat: no-repeat;
  background-position: center center;
}
.gallery-popup .splide__arrows .splide__arrow:hover,
.img-popup .splide__arrows .splide__arrow:hover {
  background-color: #53ace0;
}
.gallery-popup .splide__arrow--next,
.img-popup .splide__arrow--next {
  background-image: url(../img/gallery-next.svg);
}
.gallery-popup .splide__arrow--prev,
.img-popup .splide__arrow--prev {
  background-image: url(../img/gallery-prev.svg);
}
.gallery-popup .splide__pagination,
.img-popup .splide__pagination {
  padding: 8px;
  border-radius: 16px;
  width: unset;
  bottom: 4px;
  background-color: rgba(0, 0, 0, 0.75);
}
.gallery-popup .splide__pagination__page,
.img-popup .splide__pagination__page {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid white;
  opacity: 1;
}
.gallery-popup .splide__pagination__page.is-active,
.img-popup .splide__pagination__page.is-active {
  transform: unset;
  background-color: white;
}
.gallery-popup .splide__pagination__page:hover,
.img-popup .splide__pagination__page:hover {
  border-color: #53ace0;
}
.gallery-popup .splide__pagination__page.is-active:hover,
.img-popup .splide__pagination__page.is-active:hover {
  background-color: #53ace0;
}
.gallery-popup .splide_counter,
.img-popup .splide_counter {
  display: none;
  color: #222;
  z-index: 1;
  font-size: 13px;
  margin-top: 6px;
}

.flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.flex-row {
  display: flex;
  flex-direction: row !important;
  justify-content: center;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.txt-err {
  font-weight: bold;
  color: red;
}

.txt-large {
  font-size: 1.5rem;
}

.txt-center {
  text-align: center;
}

.errorlist {
  font-size: 0.9rem;
  color: red;
}

.logo-abs {
  position: absolute;
  top: 84px;
  left: 50%;
  transform: translateX(-50%);
  height: 20px;
  z-index: 2;
}

h1 {
  font-family: "AvenirPro55Roman", sans-serif;
  text-align: center;
  font-size: 50px;
  font-weight: normal;
  text-transform: uppercase;
  margin-top: 115px;
}
h1 span {
  font-size: 50px;
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: normal;
  text-transform: capitalize;
}

h3 {
  margin-top: 12px;
}

.bg-wagoneer {
  background-color: black;
  background-image: url("../img/background1920.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position-y: top;
}

.landing {
  width: 100%;
  max-width: 636px;
  text-align: center;
  margin-top: 46px;
}
.landing p {
  margin: 16px 0;
}

footer {
  text-align: center;
}
footer a, footer a:visited {
  color: #53ace0;
}
footer a, footer p {
  font-size: 16px;
}

.landing-logo {
  width: 100px;
  margin-bottom: 16px;
}

.content-wrapper {
  position: relative;
  width: 100vw;
  padding-bottom: 32px;
  margin-bottom: 32px;
}
.content-wrapper h1 {
  margin-bottom: 66px;
}

.content {
  position: relative;
  width: 100%;
  max-width: 850px;
}

.content-extra {
  max-width: 850px;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: left;
  padding: 24px;
}
.content-extra footer {
  margin-top: 42px;
}
.content-extra.note {
  margin-top: 2rem;
  max-width: 100%;
  padding: 2rem;
}

.expired .support-txt {
  margin: 0;
}

form {
  margin-top: 48px;
}

label {
  font-size: 1.5rem;
}

input[type=text],
input[type=email],
input[type=tel] {
  width: 85%;
  padding: 4px;
  margin: 8px 0;
  border: none;
}

.button,
input[type=submit] {
  width: 170px;
  height: 44px;
  font-weight: bold;
  font-size: 11px;
  letter-spacing: 0.125rem;
  color: white;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid white;
}
.button:hover,
input[type=submit]:hover {
  background-color: #53ace0;
  color: white;
  border: none;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 150px;
  font-size: 0.55rem;
}

.dlr-form {
  width: 400px;
  max-width: 100%;
  margin-top: 18px;
}
.dlr-form label {
  display: none;
}
.dlr-form input[type=text] {
  width: 100%;
  height: 42px;
  font-size: 20px;
}
.dlr-form input::placeholder {
  text-align: center;
  font-size: 22px;
}

#id_dealer_code {
  margin-bottom: 44px;
  font-size: 20px;
  text-align: center;
}

#id_dealer_code::placeholder {
  font-size: 22px;
}

.dlr-row {
  display: flex;
  flex-direction: row;
  position: relative;
  width: 100%;
  align-items: center;
  justify-content: space-around;
  margin: 40px 0;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 32px;
  text-align: center;
}
.dlr-row p {
  font-size: 24px;
}

.vert-line {
  width: 1px;
  min-height: 150px;
  background-color: #53ace0;
}

.v-group {
  display: flex;
  flex-direction: column;
}

.h-group {
  display: flex;
  flex-direction: row;
}

.w100 {
  width: 100%;
}

.italic {
  font-style: italic;
}

.schedule .pee {
  line-height: 1.25rem;
  text-align: left;
}
.schedule label {
  font-size: 1rem;
}
.schedule form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 85%;
  max-width: 1024px;
  margin: 0;
}
.schedule form p {
  width: 850px;
  text-align: left;
  line-height: 27px;
}
.schedule form h1 {
  font-size: 20px;
  margin-top: 12px;
  margin-bottom: 12px;
  color: #53ace0;
  text-transform: uppercase;
  font-family: "AvenirPro95Black", sans-serif;
  letter-spacing: 2px;
}
.schedule .dlr-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 70px;
  margin-bottom: 30px;
}
.schedule .dlr-info div {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
  width: calc(50% - 18px);
  margin-bottom: 24px;
}
.schedule input[type=text],
.schedule input[type=email],
.schedule input[type=tel] {
  width: 100%;
}
.schedule #btnContinue,
.schedule input[type=submit] {
  margin: 24px 50px;
}
.schedule .packages {
  width: 100%;
  margin-top: 32px;
}
.schedule .p-main {
  min-height: 136px;
}
.schedule .package {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 6px 0;
  color: black;
  background-color: white;
  border: 1px solid black;
}
.schedule .package .p-item {
  padding: 16px;
}
.schedule .package .p-mid {
  justify-content: center;
  font-size: 16px;
}
.schedule .package:nth-child(3) {
  order: 100;
}
.schedule .title-desc div {
  font-size: 16px;
}
.schedule .title, .schedule .title-price {
  margin-bottom: 12px;
}
.schedule .title-price {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.schedule .price {
  font-size: 20px;
  font-family: "AvenirPro85Heavy", sans-serif;
}
.schedule #price {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: flex-end;
  text-align: left;
  margin-top: 43px;
}
.schedule .estimate {
  font-family: "AvenirPro85Heavy", sans-serif;
  font-size: 20px;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
}
.schedule .estimate span {
  font-size: 20px;
  letter-spacing: 2px;
  font-family: "AvenirPro95Black", sans-serif;
  text-transform: uppercase;
  color: #53ace0;
  margin-right: 33px;
}
.schedule .price-txt {
  font-size: 12px;
  width: 260px;
  text-align: right;
}
.schedule .p-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 96px;
  padding: 24px;
}
.schedule .p-item select {
  width: 70px;
  height: 30px;
  margin: 12px 0;
}
.schedule .p-item label {
  margin-top: 8px;
  text-transform: uppercase;
  font-size: 11px;
  font-family: "AvenirPro95Black", sans-serif;
}
.schedule .p-item:first-child {
  align-items: center;
  justify-content: center;
  border-right: 1px solid black;
  max-width: 96px;
}
.schedule .p-item:first-child input {
  margin-bottom: 9px;
}
.schedule .p-item:nth-child(3) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 180px;
  max-width: 180px;
  padding: 0 8px;
}
.schedule .p-item:nth-child(3) label {
  margin-top: 24px;
}
.schedule .p-price {
  align-items: flex-end !important;
  padding: 0 50px 0 0 !important;
}
.schedule .l-border {
  border-left: 1px solid black;
}
.schedule .p-step {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.schedule .p-step span {
  position: absolute;
  bottom: -16px;
  left: 10px;
  font-size: 0.75rem;
  font-family: "AvenirPro85Heavy", sans-serif;
}
.schedule .p-step .price {
  margin-left: 12px;
  width: 66px;
  text-align: right;
}
.schedule .p-add {
  font-size: 16px;
  line-height: 24px;
}
.schedule .p-mid {
  min-width: unset;
  flex-grow: 2;
  padding-right: 0;
}
.schedule .p-mid div {
  font-size: 16px;
}
.schedule h3 {
  font-size: 30px;
  font-family: "AvenirPro85Heavy", sans-serif;
}
.schedule ul {
  padding-left: 36px;
}
.schedule li {
  font-size: 16px;
}
.schedule h4 {
  font-family: "AvenirPro85Heavy", sans-serif;
  margin: 16px 0 8px;
}
.schedule .asterix {
  font-size: 0.95rem;
  font-style: italic;
  margin-top: 16px;
}

.resources {
  max-width: 1024px;
  padding: 24px 0;
}
.resources h2 {
  font-size: 20px;
  font-family: "AvenirPro95Black", sans-serif;
  color: #53ace0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.res-content {
  width: 100%;
  margin-bottom: 8px;
}

.res-hdr {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  height: 44px;
  background: white;
  color: black;
  text-transform: uppercase;
  font-size: 20px;
  font-family: "AvenirPro85Heavy", sans-serif;
  cursor: pointer;
  letter-spacing: 4px;
}
.res-hdr span {
  padding-top: 4px;
}

.res-items {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
  max-height: 0;
  transition-property: max-height;
  transition-duration: 500ms;
  transition-timing-function: ease-in-out;
}

.res-items-expand-social_media,
.res-items-expand-strut,
.res-items-expand-logos,
.res-items-expand-event_guides,
.res-items-expand-templates,
.res-items-expand-printables,
.res-items-expand-faq {
  max-height: 220px;
}

#res-back {
  position: absolute;
  top: 120px;
  text-decoration: underline;
}

.res-btn {
  background: none;
  border: none;
  font-family: "AvenirPro85Heavy", sans-serif;
  font-size: 24px;
  height: 100%;
  width: 18px;
  cursor: pointer;
}

.resource-item-outer {
  width: 33.33%;
  padding: 10px;
}

.resource-item-outer:nth-child(1),
.resource-item-outer:nth-child(4) {
  padding: 10px 20px 10px 0;
}

.resource-item-outer:nth-child(3) {
  padding: 10px 0 10px 20px;
}

.resource-item {
  justify-content: space-between;
  align-items: center;
  padding: 24px 36px;
  min-height: 200px;
  width: 100%;
  background-color: black;
  border: 1px solid #999;
}
.resource-item .button {
  border-color: #53ace0;
}
.resource-item .resource-name {
  font-size: 24px;
  font-family: "AvenirPro65Medium", sans-serif;
  margin-bottom: 12px;
  text-align: center;
}
.resource-item .resource-desc {
  font-size: 16px;
  margin-right: 12px;
}
.resource-item .flex-col {
  align-items: flex-start;
}

a, a:visited {
  color: #fafafa;
  text-decoration: none;
}

a:hover {
  color: #53ace0;
}

.support-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.5rem;
}
.support-txt a {
  text-decoration: none;
}
.support-txt ul {
  text-align: left;
  margin-top: 8px;
}

.support-desc {
  margin-bottom: 24px;
}

.res-lnk {
  margin-top: 94px;
  margin-bottom: 166px;
  text-transform: uppercase;
  text-decoration: none;
}

.show-on-mobile {
  display: none;
}

modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}
modal * {
  color: black;
}

#mClose {
  top: 12px;
  right: 12px;
  position: absolute;
  cursor: pointer;
  padding: 4px;
}

.m-window {
  position: relative;
  width: 800px;
  max-width: calc(100% - 32px);
  background-color: white;
  padding: 48px 82px;
  border-radius: 16px;
  align-items: flex-start;
}

.m-review {
  font-family: "AvenirPro85Heavy", sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 15px;
}

.m-title {
  font-family: "AvenirPro85Heavy", sans-serif;
  font-size: 60px;
}

#btnBack {
  align-items: center;
  margin-right: 22px;
  cursor: pointer;
}
#btnBack img {
  height: 20px;
  margin-right: 6px;
}
#btnBack div {
  padding-top: 4px;
  font-size: 12px;
  font-family: "AvenirPro95Black", sans-serif;
}

#mPrice {
  align-self: flex-end;
}

.m-bottom {
  width: 100%;
  justify-content: flex-end;
  margin-top: 32px;
}
.m-bottom .button {
  color: black;
  border-color: black;
  font-size: 12px;
  font-family: "AvenirPro95Black", sans-serif;
}

.m-selections {
  margin-top: 60px;
  width: 100%;
}
.m-selections * {
  font-size: 14px;
  font-family: "AvenirPro65Medium", sans-serif;
}

.m-selection {
  position: relative;
  justify-content: space-between;
  margin-bottom: 16px;
}

.m-package {
  max-width: calc(100% - 66px);
}

.m-quantity {
  padding: 0 12px;
  min-width: 55px;
  text-align: right;
}

.m-price {
  min-width: 60px;
}

@media screen and (max-width: 640px) {
  * {
    font-size: 16px;
  }
  .m-window {
    padding: 40px 40px;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }
  .m-title {
    font-size: 32px;
  }
  .res-btn {
    width: 16px;
  }
  .bg-wagoneer {
    background-position-x: 70%;
    background-size: 250%;
  }
  .logo-abs {
    height: 14px;
    top: 48px;
  }
  h1 {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    font-size: 27px;
    margin-bottom: 16px;
    margin-top: 74px;
  }
  h1 span {
    font-size: 27px;
  }
  h2 {
    padding: 0 20px;
    font-size: 1.5rem;
  }
  h3 {
    letter-spacing: unset;
  }
  label {
    font-size: 1.2rem;
  }
  .landing {
    padding: 0 32px;
  }
  .dlr-form {
    width: calc(100% - 88px);
  }
  .dlr-row {
    width: unset;
    flex-direction: column;
  }
  .vert-line {
    min-height: 1px;
    max-height: 1px;
    min-width: 200px;
    margin: 16px 0;
  }
  .schedule h1 {
    margin-bottom: 0;
  }
  .schedule .pee {
    width: 100%;
    padding: 0 50px;
    margin-top: 34px;
  }
  .schedule .p-step {
    flex-direction: column-reverse;
  }
  .schedule .p-step span {
    left: unset;
    bottom: 8px;
    margin-right: 45px;
  }
  .schedule .p-step input {
    margin-top: 8px;
    margin-left: 45px;
  }
  .schedule .p-step .price {
    margin-left: 0;
  }
  .schedule .resources {
    width: 100%;
    padding: 0 50px;
    margin-bottom: 77px;
  }
  .schedule .res-hdr {
    font-size: 16px;
  }
  .schedule form {
    width: 100%;
    padding: 0 50px;
  }
  .schedule form div {
    width: 95%;
  }
  .schedule form p {
    width: 100%;
  }
  .schedule label {
    font-size: 0.9rem;
  }
  .schedule .dlr-info div {
    width: 100%;
  }
  .schedule .package {
    flex-direction: column;
    align-items: center;
  }
  .schedule .p-item {
    border: none;
    max-width: unset;
    min-width: 100%;
  }
  .schedule .p-item:first-child {
    max-width: unset;
    width: 100%;
    border: none;
    order: 3;
  }
  .schedule .p-item:nth-child(3) {
    max-width: unset;
  }
  .schedule .p-mid {
    flex-direction: column !important;
  }
  .resource-item-outer {
    width: 100%;
  }
  .resource-item-outer:nth-child(1),
  .resource-item-outer:nth-child(3),
  .resource-item-outer:nth-child(4) {
    padding: 10px;
  }
  #res-back {
    top: 80px;
  }
  .res-items-expand-social_media,
  .res-items-expand-strut,
  .res-items-expand-logos,
  .res-items-expand-event_guides,
  .res-items-expand-templates,
  .res-items-expand-printables,
  .res-items-expand-faq {
    max-height: 440px;
  }
  .txt-large {
    font-size: 1.125rem;
  }
  a {
    font-size: 13px;
  }
  .res-lnk {
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 80px;
  }
  footer {
    font-size: 12px;
  }
  footer a, footer p {
    font-size: 12px;
  }
  .show-on-mobile {
    display: unset !important;
  }
  .hide-on-mobile {
    display: none !important;
  }
  .gallery-popup .splide, .gallery-popup .gal-win, .img-popup .splide, .img-popup .gal-win {
    max-width: 100vw;
  }
  .gallery-popup .close, .img-popup .close {
    top: unset;
    bottom: -60px;
    right: 50%;
    transform: translateX(50%);
    border: 2px solid white;
    border-radius: 50%;
  }
  .gallery-popup .gallery-image, .img-popup .gallery-image {
    width: 100vw;
  }
}
.hide {
  visibility: hidden;
}

.hide-on-mobile {
  display: unset;
}

.none {
  display: none !important;
}

.fnt-lite {
  font-family: "AvenirPro35Light", sans-serif;
}

.fnt-heavy {
  font-family: "AvenirPro85Heavy", sans-serif;
}

.fnt-black {
  font-family: "AvenirPro95Black", sans-serif;
}

.fnt-medium {
  font-family: "AvenirPro65Medium", sans-serif;
}

/*# sourceMappingURL=style.css.map */
