.w-40 {
  max-width: 40vw;
}

.w-50 {
  max-width: 50vw;
}

.w-60 {
  max-width: 60vw;
}

.w-70 {
  max-width: 70vw;
}

.w-80 {
  max-width: 80vw;
}

.w-100 {
  width: 100%;
}

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

.flex-left {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.landing-page-container {
  background-color: #fbf8f7;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 100%;
  margin: 0 auto;
  padding: 5rem 10rem 1rem;
  display: flex;
}

.password-protection-container {
  background-color: #fff;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 5rem auto;
  padding: 3rem;
  animation: .5s ease-in-out fadeIn;
  display: flex;
  box-shadow: 0 4px 10px #0000001a;
}

.password-protection-container h2 {
  margin-bottom: 1rem;
  font-size: 28px;
  font-weight: 600;
}

.password-protection-container p {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 18px;
}

.password-form-group {
  width: 100%;
  margin-bottom: 1rem;
}

.password-error {
  color: #ff4d4d;
  margin: .5rem 0 1rem;
  font-size: 14px;
}

.header-image-container {
  justify-content: center;
  width: 100%;
  display: flex;
}

.header-gif {
  max-width: 60vw;
}

.mobile-header {
  display: none;
}

.desktop-header, .desktop-footer {
  display: block;
}

.mobile-footer {
  display: none;
}

.header-info {
  text-align: center;
  font-size: 20px;
}

.discover-more-button {
  opacity: .8;
  color: #000;
  cursor: pointer;
  background-color: #b5daff;
  border: none;
  border-radius: 25px;
  margin-top: .5rem;
  padding: .4rem 2.5rem;
  font-size: 16px;
  font-weight: 600;
  transition: opacity .3s;
}

.discover-more-button:hover {
  opacity: 1;
  cursor: pointer;
  background-color: #8ac0f5;
}

.discover-more-button-fixed {
  color: #000;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  background-color: #b5daff;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 0;
  transition: opacity .3s, visibility .3s;
  display: flex;
  position: fixed;
  bottom: 30px;
  right: 30px;
  box-shadow: 0 4px 10px #0003;
}

.chevron-down {
  filter: brightness(0);
  width: 24px;
  height: 24px;
}

.discover-more-button-fixed.visible {
  opacity: .9;
  visibility: visible;
}

.discover-more-button-fixed:hover {
  opacity: 1;
  background-color: #8ac0f5;
}

.form-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60vw;
  margin-bottom: 1rem;
  display: flex;
}

.form-title {
  text-align: center;
  font-family: Swiss721BT Condensed;
  font-size: 28px;
  font-weight: 800;
}

.form-subtitle {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.mm-hr {
  background-color: #ff9562;
  width: 200px;
  max-width: 100%;
  height: 4px;
  margin: 6px auto;
}

.mm-hr-long {
  background-color: #ff9562;
  width: 34rem;
  max-width: 100%;
  height: 4px;
  margin: 6px auto;
}

.mm-hr-xl-long {
  background-color: #ff9562;
  width: 100%;
  max-width: 100%;
  height: 4px;
  margin: 3px auto 0;
}

.info-container {
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem 1rem;
  display: flex;
}

.info-title {
  text-align: center;
  font-family: Swiss721BT Condensed;
  font-size: 32px;
  font-weight: 800;
}

.into-subtitle {
  text-align: center;
  font-family: Swiss721BT Condensed;
  font-size: 22px;
  font-weight: 800;
}

.info-text {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
}

.info-subtitle {
  color: #666;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 16px;
}

form {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  display: flex;
}

input {
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  padding: .75rem;
  font-size: 16px;
}

.submit-button {
  opacity: .8;
  color: #fff;
  cursor: pointer;
  background-color: #f19257;
  border: none;
  border-radius: 25px;
  margin-top: .5rem;
  padding: .4rem 2.5rem;
  font-size: 16px;
  transition: opacity .3s;
}

.submit-button:hover {
  opacity: 1;
  cursor: pointer;
  background-color: #f19257;
}

.bonvoy-img-container {
  background-color: #fff;
  justify-content: center;
  width: 100vw;
  height: 400px;
  padding: 2rem 0;
  display: flex;
  overflow: hidden;
}

.bonvoy-img-container a {
  justify-content: center;
  display: flex;
}

.bonvoy-img {
  min-width: 1600px;
  max-width: 1600px;
}

.form-under-title-link {
  color: #666;
  outline: none;
  text-decoration: underline;
}

.stats-container, .stats-base-container {
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 0 1rem;
  display: flex;
}

.stats-container {
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1rem;
  display: flex;
}

.stats-base-container {
  gap: 6rem;
}

.stat {
  color: #fff;
  background-color: #ff9662;
  border-radius: 20px;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
  padding: 1.5rem;
  display: flex;
}

.stat-number {
  width: 100%;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
}

.stat-text {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
}

.stat-base-text {
  font-size: 16px;
  font-weight: 400;
}

.flex-1 {
  flex: 1;
}

.flex-1-5 {
  flex: 1.5;
}

.flex-2 {
  flex: 2;
}

.general-info-container {
  text-align: center;
  background-color: #b5daff;
  border-radius: 20px;
  justify-content: center;
  padding: 2.25rem 4.5rem 2.5rem;
  display: flex;
}

.general-info {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
}

.lower-stats-container {
  flex-flow: wrap;
  gap: 2rem;
  padding-bottom: 3rem;
  display: flex;
}

.lower-stats-legend {
  width: 100%;
  margin-top: .5rem;
  font-size: .75rem;
}

.lower-stats-legend-item {
  display: inline;
}

.lower-stats-info {
  background-color: #b5daff;
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 10px;
  display: flex;
}

.lower-stats-title {
  width: 100%;
  margin: 0;
  font-size: 26px;
  font-weight: 400;
}

.lower-stats-text {
  width: 100%;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.lower-stats-info-box-container {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
  width: 100%;
  height: 100%;
  padding: .75rem;
  display: flex;
}

.no-padding {
  padding: 0;
}

.stats-box {
  box-sizing: border-box;
  text-overflow: ellipsis;
  background-color: #fff;
  border-radius: 10px;
  flex-direction: column;
  width: calc(33.33% - .67rem);
  min-height: 130px;
  padding: .2rem .75rem;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 5px #0000000d;
}

.stats-box-2 {
  box-sizing: border-box;
  text-overflow: ellipsis;
  background-color: #fff;
  border-radius: 10px;
  flex-direction: column;
  width: calc(50% - .5rem);
  min-height: 130px;
  padding: .2rem .75rem;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 5px #0000000d;
}

.stats-box-title {
  color: #f19b6b;
  margin: 0;
  font-size: 32px;
  font-weight: 600;
}

.stats-box-text {
  margin: 0;
  font-size: .8rem;
  font-weight: 400;
}

.stats-unit {
  margin-left: -4px;
  font-size: 1rem;
  font-weight: 400;
}

.panel-top {
  background-color: #f8f8f8;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 80px;
  min-height: 80px;
  padding: 0 1rem;
  display: flex;
}

.visa-logo, .gatorade-logo {
  width: 80px;
  margin-right: 1rem;
}

.gatorade-footer, .visa-footer {
  width: 93%;
  height: 60px;
  margin: 5px auto;
}

.visa-stats-box {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.visa-stats-box-text {
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  font-size: 15px;
  display: flex;
}

@media screen and (width <= 850px) {
  .stats-box {
    width: calc(50% - .5rem);
  }
}

@media screen and (width <= 550px) {
  .stats-box {
    width: 100%;
  }

  .stat-number {
    font-size: 1.8rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }

  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

.fade-in {
  width: 100%;
  animation: .8s ease-in-out fadeIn;
  display: contents;
}

.content-transition {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 100%;
  animation: .8s ease-in-out fadeIn;
  display: flex;
}

.fade-out {
  animation: .5s ease-in-out forwards fadeOut;
}

.shake {
  animation: .5s ease-in-out shake;
  border-color: #ff4d4d !important;
}

.logo-container {
  grid-template-rows: repeat(2, auto);
  grid-template-columns: repeat(4, 1fr);
  place-items: center;
  gap: 30px 40px;
  padding-top: 1rem;
  padding-bottom: 2rem;
  display: grid;
}

.no-gap {
  margin-top: -25px;
  margin-bottom: 25px;
}

.bubble-progression-container {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 900px;
  margin: 2rem auto;
  display: flex;
  position: relative;
}

.bubble-progression-line {
  z-index: 1;
  background-color: #ff9562;
  border-radius: 5px;
  width: 100%;
  height: 6px;
  position: absolute;
  top: 22px;
}

.bubble-progression-items {
  z-index: 2;
  justify-content: space-between;
  width: 100%;
  display: flex;
  position: relative;
}

.bubble-item {
  flex-direction: column;
  align-items: center;
  width: 16%;
  display: flex;
}

.bubble {
  color: #fff;
  background-color: #ff9562;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
  display: flex;
}

.bubble-text {
  text-align: center;
  max-width: 150px;
  font-family: Swiss721BT Medium;
  font-size: 20px;
}

.landing-page-container strong {
  font-family: Swiss721BT Medium;
}

.landing-page-container strong.m-condensed {
  font-family: Swiss721BT Condensed;
}

@media screen and (width <= 950px) {
  .bubble-progression-container {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    margin: 3rem auto;
    padding: 0;
    position: relative;
  }

  .bubble-progression-line {
    z-index: 1;
    z-index: 1;
    border-radius: 3px;
    width: 6px;
    height: 110%;
    position: absolute;
    top: -5%;
    left: 50%;
    transform: translateX(-125px);
  }

  .bubble-progression-items {
    z-index: 2;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
  }

  .bubble-item {
    z-index: 3;
    background-color: #fbf8f7;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    width: 300px;
    padding: 0 5px;
    display: flex;
    position: relative;
  }

  .bubble {
    width: 45px;
    min-width: 45px;
    height: 45px;
    margin-bottom: 0;
  }

  .bubble-content {
    flex-direction: column;
    align-items: flex-start;
    max-width: 80%;
    display: flex;
  }

  .bubble-text {
    text-align: left;
    max-width: 100%;
    font-size: 18px;
    font-weight: 500;
  }
}

@media (width <= 768px) {
  .logo-container {
    grid-template-rows: repeat(4, auto);
    grid-template-columns: repeat(2, 1fr);
  }
}

.logo-img {
  justify-content: center;
  align-items: center;
  height: 50px;
  display: flex;
}

@media screen and (width <= 1450px) {
  .bonvoy-img {
    min-width: 1300px;
  }

  .landing-page-container {
    padding: 5rem 3rem 1rem;
  }

  .stat-number {
    font-size: 3.5rem;
  }
}

@media screen and (width <= 1250px) {
  .landing-page-container {
    padding: 5rem 5rem 1rem;
  }

  .stat-number {
    font-size: 3.1rem;
  }
}

@media screen and (width <= 1050px) {
  .landing-page-container {
    padding: 5rem 10rem 1rem;
  }

  .general-info-container {
    max-width: 70vw;
  }

  .info-text {
    max-width: 60vw;
  }

  .lower-stats-container {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-number {
    font-size: 2.9rem;
  }

  .journey-img {
    max-width: 90vw;
  }

  .logo-img {
    height: 40px;
  }
}

@media screen and (width <= 950px) {
  .landing-page-container {
    padding: 5rem 1rem 1rem;
  }

  .large-mobile-stat {
    max-width: 50vw;
  }

  .info-title {
    text-align: center;
  }

  .mm-hr-long {
    width: 100%;
  }

  .header-info {
    max-width: 80vw;
  }

  .desktop-header, .desktop-footer {
    display: none;
  }

  .bonvoy-img.mobile-footer {
    width: 100%;
    min-width: auto;
    max-width: none;
    height: auto;
    display: block;
  }

  .mobile-header {
    display: block;
  }

  .bonvoy-img-container {
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 1rem 0;
  }

  .bonvoy-img-container a {
    width: 85%;
    max-width: 400px;
    max-height: 700px;
  }

  .stats-container {
    flex-wrap: wrap;
    max-width: 90vw;
  }

  .stats-container .stat {
    flex: calc(50% - .5rem);
    width: calc(50% - .5rem);
    min-width: calc(50% - .5rem);
  }

  .stats-base-container {
    text-align: center;
    gap: 1rem;
  }

  .stats-box, .stats-box-2 {
    min-height: 90px;
  }

  .stat-number {
    font-size: 2.6rem;
  }

  .logo-img {
    height: 35px;
  }
}

@media screen and (width <= 850px) {
  .landing-page-container {
    padding: 1rem;
  }

  .bonvoy-img {
    min-width: 800px;
  }

  .info-container {
    max-width: 80vw;
  }

  .info-text {
    max-width: 95vw;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-text {
    font-size: .9rem;
  }

  .stats-base-container {
    gap: 2rem;
  }

  form {
    max-width: 100vw;
  }

  .general-info-container {
    max-width: 80vw;
    padding: 1.5rem;
  }

  .header-gif {
    max-width: 80vw;
  }

  .stats-box-title {
    font-size: 20px;
  }
}

@media screen and (width <= 800px) {
  .bonvoy-img {
    min-width: 140vw;
  }
}

@media screen and (width <= 650px) {
  .stats-box, .stats-box-2 {
    max-width: 250px;
  }
}

@media screen and (width <= 600px) {
  .visa-stats-box {
    flex-direction: column;
  }
}

@media screen and (width <= 550px) {
  .stats-box, .stats-box-2 {
    max-width: 180px;
  }

  .logo-img {
    height: 30px;
  }
}

@media screen and (width <= 500px) {
  .stats-box, .stats-box-2 {
    max-width: 150px;
  }
}

@media screen and (width <= 450px) {
  .stats-box, .stats-box-2 {
    max-width: 130px;
  }

  .stat {
    padding: 1rem;
  }
}

.redesign-hero {
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 20px 80px;
  font-family: Swiss721BT Regular, sans-serif;
  display: flex;
}

.hero-main {
  color: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 981px;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

@media (width >= 768px) {
  .hero-main {
    min-height: 765px;
  }
}

.hero-main-bg {
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: opacity 1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-main-bg.active {
  opacity: 1;
}

.hero-main-content {
  z-index: 2;
  background: #1c1c1c66;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  display: flex;
  position: absolute;
  inset: 0;
}

@media (width <= 768px) {
  .hero-main-content {
    gap: 73px;
    padding: 16px;
  }
}

.hero-badge {
  color: #fff;
  width: auto;
  min-width: 200px;
  height: auto;
  min-height: 143px;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  background: none;
  border: none;
  flex-direction: column;
  align-self: flex-start;
  margin-top: 20px;
  padding: 0;
  display: inline-flex;
  position: relative;
}

.hero-badge-glass {
  backdrop-filter: blur(10px);
  background: radial-gradient(#fff0, #ffffff29);
  position: absolute;
  inset: 0;
}

.hero-badge-glass:before {
  content: "";
  opacity: .15;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  position: absolute;
  inset: 0;
}

.hero-badge-border-svg {
  pointer-events: none;
  z-index: 20;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: visible;
}

.hero-badge-border-svg path {
  fill: none;
  stroke: #fff6;
  stroke-width: 1px;
  vector-effect: non-scaling-stroke;
}

.hero-badge-content {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 9px 28px 9px 23px;
  display: flex;
  position: relative;
}

.hero-badge-icon {
  z-index: 30;
  background: #ff9662;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
  position: absolute;
  top: -5px;
  right: -5px;
  box-shadow: 0 4px 12px #ff8c5f66;
}

.hero-badge-value {
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 80px;
  font-weight: 400;
  font-style: Medium;
  letter-spacing: -.02em;
  margin-top: 5px;
  line-height: 1;
  display: block;
}

.hero-badge-label {
  letter-spacing: -.02em;
  padding-right: 30px;
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}

.hero-sidebar {
  flex-direction: column;
  flex: 1;
  gap: 20px;
  display: flex;
}

.lets-connect-box {
  color: #333;
  border-radius: 20px;
  flex: 1;
  max-height: 301px;
  position: relative;
  overflow: hidden;
}

.connect-content {
  z-index: 2;
  flex-direction: column;
  justify-content: space-between;
  gap: 46px;
  height: 100%;
  padding: 30px;
  display: flex;
  position: relative;
}

.connect-bg-overlay {
  z-index: 1;
  width: 100%;
  height: 100%;
  animation: .8s cubic-bezier(.65, 0, .35, 1) forwards slideColor;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes slideColor {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.animate-text {
  display: inline-block;
}

.hero-title-slide.active .animate-text {
  animation: .8s cubic-bezier(.215, .61, .355, 1) both textReveal;
}

.hero-title-slide.exiting .animate-text {
  animation: .8s cubic-bezier(.215, .61, .355, 1) both textHide;
}

@keyframes textReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textHide {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.hero-title-wrapper {
  grid-template-areas: "stack";
  display: grid;
}

.hero-title-slide {
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: -.04em;
  grid-area: stack;
  font-family: Swiss721BT Bold Condensed, sans-serif;
  font-size: 100px;
  font-weight: 800;
  line-height: 1;
}

.hero-title-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-title-slide.exiting {
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

.partner-btn {
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .02em;
  vertical-align: bottom;
  background: none;
  border: 1px solid;
  border-radius: 20px;
  align-self: flex-start;
  padding: 6px 12px;
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.connect-arrow-container {
  justify-content: space-between;
  align-items: end;
  display: flex;
}

.connect-text {
  color: #1c1c1c;
  text-transform: uppercase;
  font-family: Swiss721BT Bold Condensed, sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: .9;
}

.Hero__arrow-icon {
  text-align: center;
  color: #333;
  background: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 62px;
  height: 62px;
  margin-left: 10px;
  font-size: 1.5rem;
  line-height: 62px;
  display: inline-flex;
}

.hero-secondary {
  border-radius: 20px;
  flex: 1;
  align-items: flex-end;
  min-height: 250px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-secondary-bg {
  object-fit: cover;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: opacity 1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-secondary-bg.active {
  opacity: 1;
}

.hero-secondary-content {
  z-index: 2;
  align-items: flex-end;
  height: 100%;
  padding: 20px;
  display: flex;
  position: relative;
}

.secondary-text-box {
  color: #f9f6f4;
  letter-spacing: .04em;
  background: #29abe2e6;
  border-radius: 24px;
  align-items: flex-start;
  gap: 10px;
  padding: 15px 15px 15px 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  display: flex;
}

.secondary-text-box:before {
  content: "●";
  font-size: 26px;
  line-height: 14px;
}

.highlight-outdoor {
  color: #24ade9;
}

.highlight-sports {
  color: #29abe2;
}

.highlight-business {
  color: #ff9662;
}

@media (width <= 768px) {
  .redesign-hero {
    flex-direction: column;
    padding-bottom: 20px;
  }

  .hero-title-slide {
    font-size: 40px;
    line-height: 1.1;
  }

  .hero-badge {
    transform-origin: 0 0;
    transform: scale(.6);
  }

  .hero-badge-icon {
    width: 32px;
    height: 32px;
    top: 4px;
    right: 4px;
  }

  .connect-text {
    font-size: 38px;
  }
}

.hero-intro-mobile {
  display: none;
}

@media (width <= 768px) {
  .hero-intro-mobile {
    display: block;
  }
}

@media (width >= 769px) and (width <= 1024px) {
  .redesign-hero {
    flex-direction: column;
    padding-bottom: 20px;
  }

  .hero-main {
    max-width: 100%;
    min-height: 500px;
  }

  .hero-title-slide {
    font-size: 60px;
    line-height: 1.1;
  }

  .hero-badge {
    transform-origin: 0 0;
    transform: scale(.75);
  }

  .hero-badge-icon {
    width: 36px;
    height: 36px;
    top: 2px;
    right: 2px;
  }

  .hero-sidebar {
    flex-direction: row;
  }

  .lets-connect-box {
    flex: 1;
    max-height: none;
  }

  .connect-text {
    font-size: 48px;
  }

  .hero-secondary {
    flex: 1;
    min-height: 200px;
  }

  .hero-intro-mobile {
    display: block;
  }
}

.redesign-intro {
  text-align: center;
  max-width: 1162px;
  margin: 0 auto;
  padding: 80px 20px;
  font-family: Swiss721BT Regular, sans-serif;
}

.redesign-intro h2 {
  letter-spacing: -.02em;
  text-align: center;
  color: #1c1c1c;
  margin: 0;
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
}

.redesign-intro .intro-logo {
  vertical-align: middle;
  height: 28px;
  margin: 0 2px;
  position: relative;
  top: -4px;
}

.redesign-intro .highlight-blue {
  color: #23a8e0;
}

.redesign-intro .audience-pill {
  color: #23a8e0;
  vertical-align: middle;
  white-space: nowrap;
  background-color: #ddf4fc;
  border-radius: 50px;
  align-items: center;
  margin-left: 8px;
  padding: 4px 16px;
  display: inline-flex;
}

.redesign-intro .audience-icon {
  fill: currentColor;
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

@media (width <= 768px) {
  .redesign-intro {
    padding: 10px 20px;
  }

  .redesign-intro h2 {
    letter-spacing: -.02em;
    text-align: center;
    font-family: Swiss721BT Regular, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
  }

  .redesign-intro .intro-logo {
    height: 13px;
    top: -1px;
  }

  .redesign-intro .audience-icon {
    width: 20px;
    height: 20px;
  }
}

.psychology-thank-you {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2rem;
  display: flex;
}

.thank-you-icon {
  width: 64px;
  height: 64px;
}

.psychology-thank-you h3 {
  color: #1c1c1c;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: Swiss721BT Bold Condensed, sans-serif;
  font-size: 40px;
  line-height: 44px;
}

.psychology-thank-you p {
  color: #1c1c1c;
  margin-bottom: 2rem;
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 20px;
  line-height: 26px;
}

.psychology-thank-you .psychology-submit-btn {
  flex-grow: 0;
  width: auto;
  min-width: 200px;
}

.psychology-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 20px 1px;
}

.psychology-banner {
  cursor: pointer;
  background-color: #d9d7d5;
  border-radius: 20px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 1px auto;
  padding: 1.5rem 3rem;
  transition: background-color .3s;
  display: flex;
}

.psychology-banner:hover {
  background-color: #cfcdcb;
}

.psychology-banner-left h2 {
  letter-spacing: -.04em;
  text-transform: uppercase;
  color: #1c1c1c;
  margin: 0;
  font-family: Swiss721BT Bold Condensed, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
}

.psychology-banner-right {
  align-items: center;
  gap: 2rem;
  display: flex;
}

.psychology-banner-text {
  color: #1c1c1c;
  max-width: 600px;
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.psychology-banner-icon {
  background-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.psychology-banner-icon svg {
  width: 24px;
  height: 24px;
}

.psychology-modal-overlay {
  z-index: 1000;
  opacity: 0;
  background-color: #f9f6f4f5;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  animation: .3s ease-out forwards fadeIn;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.psychology-modal-overlay.closing {
  animation: .3s ease-in forwards fadeOut;
}

.psychology-modal-content {
  opacity: 0;
  background-color: #d9d7d5;
  border-radius: 24px;
  flex-direction: column;
  width: 100%;
  max-width: 1400px;
  max-height: 90vh;
  animation: .3s ease-out .1s forwards scaleIn;
  display: flex;
  position: relative;
  overflow: hidden auto;
  transform: scale(.95);
}

.psychology-modal-body {
  width: 100%;
  display: flex;
}

.psychology-disclaimer {
  letter-spacing: -.02em;
  text-align: center;
  color: #878787;
  max-width: 1200px;
  margin: auto;
  padding: 0 118px 40px;
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

.psychology-modal-overlay.closing .psychology-modal-content {
  animation: .3s ease-in forwards scaleOut;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scaleOut {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(.95);
  }
}

.psychology-modal-close {
  cursor: pointer;
  z-index: 10;
  background: #fff;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: absolute;
  top: 20px;
  right: 20px;
}

.psychology-modal-left {
  flex: 1;
  justify-content: center;
  padding: 40px;
  display: flex;
  position: relative;
}

.psychology-modal-image-container {
  aspect-ratio: 533 / 475;
  border-radius: 20px;
  width: 100%;
  max-width: 533px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.psychology-modal-image-container:after {
  content: "";
  z-index: 1;
  background: linear-gradient(#0000006e 0% 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.psychology-modal-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.psychology-modal-image-text {
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 2px 4px #0000004d;
  z-index: 2;
  font-family: Swiss721BT Bold Condensed, sans-serif;
  font-size: 50px;
  line-height: 60px;
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
}

.psychology-modal-right {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding: 60px 40px 40px 0;
  display: flex;
}

.psychology-modal-description {
  color: #1c1c1c;
  margin-bottom: 2rem;
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 18px;
  line-height: 24px;
}

.psychology-form {
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
}

.psychology-form-row {
  gap: 1rem;
  width: 100%;
  display: flex;
}

.psychology-form-group {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.psychology-form-group label {
  text-transform: uppercase;
  color: #1c1c1c;
  margin-bottom: .5rem;
  font-family: Swiss721BT Bold Condensed, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.psychology-form-group input {
  background-color: #fff;
  border: none;
  border-radius: 12px;
  padding: 1rem;
  font-size: 1rem;
}

.psychology-form-group input::-moz-placeholder {
  color: #ccc;
  font-family: Swiss721BT Regular, sans-serif;
}

.psychology-form-group input::placeholder {
  color: #ccc;
  font-family: Swiss721BT Regular, sans-serif;
}

.psychology-form-actions {
  align-items: center;
  width: 100%;
  margin-top: 1rem;
  display: flex;
}

.psychology-submit-btn {
  color: #1c1c1c;
  cursor: pointer;
  background-color: #ff9e66;
  border: none;
  border-radius: 50px;
  flex-grow: 1;
  padding: 12px 2rem;
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 1rem;
  transition: background-color .3s;
}

.psychology-submit-btn:hover {
  background-color: #ff8a47;
}

.psychology-arrow-icon {
  background-color: #ff8a47;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  display: flex;
}

@media (width <= 1024px) {
  .psychology-modal-body {
    flex-direction: column;
  }

  .psychology-modal-left, .psychology-modal-right {
    width: 100%;
    padding: 20px;
  }

  .psychology-modal-right {
    padding-top: 0;
  }

  .psychology-modal-image-container {
    height: 300px;
  }

  .psychology-modal-image-text {
    font-size: 40px;
    line-height: 40px;
    top: 20px;
    left: 20px;
  }

  .psychology-disclaimer {
    padding: 20px;
    font-size: 16px;
    line-height: 22px;
  }
}

@media (width <= 768px) {
  .psychology-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }

  .psychology-banner-right {
    justify-content: space-between;
    width: 100%;
  }

  .psychology-form-row {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.thank-you-message {
  background-color: #1c1c1c;
  border-radius: 50px;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 11px 23px;
  display: flex;
}

.thank-you-message .thank-you-icon {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  display: flex;
}

.thank-you-message .thank-you-text {
  letter-spacing: -.02em;
  color: #fff;
  text-align: left;
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.redesign-placements {
  justify-content: center;
  padding: 80px 20px;
  font-family: Swiss721, sans-serif;
  display: flex;
}

.placements-content {
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  display: flex;
}

@media (width >= 1024px) {
  .placements-content {
    flex-direction: row;
    align-items: stretch;
  }
}

.placements-text {
  flex-direction: column;
  width: 100%;
  max-width: 274px;
  display: flex;
}

.placements-text h2 {
  text-transform: uppercase;
  color: #1c1c1c;
  letter-spacing: -.04em;
  text-align: left;
  margin-bottom: 20px;
  font-family: Swiss721BT Bold Condensed, sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
}

.placements-title-img {
  margin-bottom: 20px;
}

.placements-title-img.mobile {
  display: none;
}

@media (width <= 767px) {
  .placements-title-img.desktop {
    display: none;
  }

  .placements-title-img.mobile {
    height: 40px;
    display: block;
  }
}

.blue-box {
  color: #fff;
  letter-spacing: -.02em;
  text-align: left;
  background-color: #24ade9;
  border-radius: 15px;
  margin-bottom: auto;
  padding: 16px 21px;
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.placements-text p {
  letter-spacing: -.02em;
  color: #1c1c1c;
  max-width: 232px;
  margin-top: 40px;
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.placements-cards {
  flex: 1;
  grid-template-columns: 1fr;
  gap: 20px;
  display: grid;
}

@media (width >= 768px) {
  .placements-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (width >= 768px) and (width <= 1023px) {
  .placements-text {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
    max-width: 100%;
    display: grid;
  }

  .placements-text .placements-title-img.desktop {
    display: none;
  }

  .placements-text .placements-title-img.mobile {
    grid-area: 1 / 1;
    max-width: 400px;
    margin-bottom: 10px;
    display: block;
  }

  .placements-text .blue-box {
    grid-area: 2 / 1;
    align-self: start;
    max-width: 280px;
    margin-bottom: 0;
  }

  .placements-text p {
    text-align: left;
    grid-area: 1 / 2 / 3;
    place-self: end;
    max-width: 280px;
    margin-top: 0;
  }
}

.placement-card {
  border-radius: 16px;
  flex-direction: column;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.card-image {
  aspect-ratio: 1;
  box-sizing: border-box;
  width: 100%;
  max-height: 400px;
  padding: 15px 15px 0;
  overflow: hidden;
}

.card-image img {
  object-fit: cover;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  display: block;
}

.card-content {
  flex-direction: column;
  flex-grow: 1;
  padding: 20px 20px 30px;
  display: flex;
}

.card-content h3 {
  text-transform: uppercase;
  letter-spacing: -.04em;
  margin-bottom: 10px;
  font-family: Swiss721BT Bold Condensed, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

.card-content p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.placement-card.on-property {
  color: #1c1c1c;
  background-color: #e6e6e6;
}

.placement-card.owned-digital {
  color: #fff;
  background-color: #24ade9;
}

.placement-card.offsite-digital {
  color: #1c1c1c;
  background-color: #ff9e66;
}

@media (width <= 767px) {
  .desktop-br {
    display: none;
  }

  .placements-text {
    max-width: unset;
    align-items: center;
    margin: 0 auto;
  }

  .placements-text h2 {
    font-size: 40px;
  }

  .placements-text p {
    max-width: unset;
    text-align: center;
  }

  .blue-box {
    text-align: center;
    max-width: 280px;
  }
}

.redesign-guest-journey {
  text-align: center;
  background-color: #fcfcfc;
  flex-direction: column;
  align-items: center;
  padding: 80px 0 0;
  display: flex;
  overflow-x: hidden;
}

.guest-journey-content {
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 20px;
  display: flex;
}

.guest-journey-title-img {
  width: auto;
  height: 45px;
  margin-bottom: 30px;
  display: block;
}

.guest-journey-title-img img {
  width: auto;
  height: 45px;
  display: block;
}

.guest-journey-text {
  letter-spacing: -.02em;
  text-align: center;
  color: #1c1c1c;
  max-width: 700px;
  margin-bottom: 40px;
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}

.scroll-down-arrow {
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: border-color .3s;
  display: flex;
}

.scroll-down-arrow:hover {
  border-color: #1c1c1c;
}

.scroll-down-arrow svg {
  fill: none;
  stroke: #1c1c1c;
  stroke-width: 1.5px;
  width: 20px;
  height: 20px;
}

.journey-steps-container {
  box-sizing: border-box;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding-bottom: 80px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.journey-step {
  box-sizing: border-box;
  border-radius: 20px;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 32px 60px 80px;
  display: flex;
}

.journey-step-inner {
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
  display: flex;
}

@media (width >= 1024px) {
  .journey-step-inner {
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (width >= 768px) and (width <= 1023px) {
  .journey-step {
    padding: 40px;
  }

  .journey-step-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .journey-step-text {
    text-align: left;
    max-width: 100%;
  }

  .step-number {
    margin-bottom: 20px;
    font-size: 40px;
  }

  .journey-step h3 {
    margin-bottom: 15px;
    font-size: 45px;
  }

  .journey-step p {
    max-width: 400px;
    font-size: 18px;
    line-height: 1.4;
  }

  .journey-step-image, .journey-step-image img {
    width: 100%;
    max-width: 100%;
  }
}

.journey-step-text {
  text-align: left;
  flex: 1;
  max-width: 500px;
}

.step-number {
  margin-bottom: 40px;
  font-family: Swiss721BT Bold Condensed, sans-serif;
  font-size: 48px;
  font-weight: 700;
}

.journey-step h3 {
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  font-family: Swiss721BT Bold Condensed, sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}

.journey-step p {
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.journey-step-image {
  flex: 1;
  width: 100%;
  max-width: 741px;
  position: relative;
}

.journey-step-image picture {
  width: 100%;
  display: block;
}

.journey-step-image img {
  border-radius: 15px;
  width: 100%;
  height: auto;
  display: block;
}

.journey-tabs-wrapper {
  display: none;
}

.journey-tabs-nav {
  display: flex;
}

.journey-tab-btn {
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
  background: none;
  border: 1px solid #000;
  border-radius: 30px;
  flex-shrink: 0;
  padding: 10px 30px;
  font-family: Swiss721BT Bold Condensed, sans-serif;
  font-size: 18px;
  font-weight: 700;
  transition: all .3s;
}

.journey-tab-btn:not(.active):hover, .journey-tab-btn:not(.active):focus {
  background-color: #b7d7f2;
  border-color: #24ade9;
}

.journey-tab-btn.active {
  color: #fff;
  background-color: #24ade9;
  border-color: #24ade9;
}

.journey-steps-mobile {
  display: none;
}

@media (width <= 767px) {
  .journey-tabs-wrapper {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 24px;
    padding: 0 20px;
    display: block;
    overflow: auto hidden;
  }

  .journey-tabs-wrapper::-webkit-scrollbar {
    display: none;
  }

  .journey-tabs-nav {
    white-space: nowrap;
    flex-wrap: nowrap;
    gap: 10px;
    display: inline-flex;
  }

  .journey-steps-mobile {
    box-sizing: border-box;
    width: 100%;
    padding: 0 20px 40px;
    display: block;
  }

  .journey-steps-container {
    display: none;
  }

  .journey-step {
    padding: 32px 16px;
    animation: .4s ease-in-out fadeIn;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .journey-step-image img {
    max-width: 310px;
    margin: 0 auto;
  }

  .journey-step-text {
    padding: 15px 20px 0;
  }

  .step-number {
    margin-bottom: 20px;
    font-size: 36px;
  }

  .journey-step h3 {
    letter-spacing: -.04em;
    text-align: center;
    text-transform: uppercase;
    font-family: "Swiss 721 Bold Condensed", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
  }

  .journey-step p {
    letter-spacing: -.02em;
    font-family: Swiss721BT Regular, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
  }

  .guest-journey-title-img {
    height: 40px;
  }

  .guest-journey-title-img img {
    height: unset;
  }

  .guest-journey-content {
    margin-bottom: 24px;
  }
}

.case-studies-section {
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px;
  font-family: Swiss721, sans-serif;
  display: flex;
}

.case-studies-title-img {
  width: auto;
  height: 55px;
  margin-bottom: 20px;
  display: block;
}

.case-studies-title-img img {
  width: auto;
  height: 55px;
  display: block;
}

.case-studies-arrow {
  cursor: pointer;
  background-color: #0000;
  border: 1px solid #ccc;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 30px;
  transition: border-color .3s;
  display: flex;
}

.case-studies-arrow:hover {
  border-color: #1c1c1c;
}

.case-studies-arrow svg {
  fill: none;
  stroke: #1c1c1c;
  stroke-width: 1.5px;
  width: 24px;
  height: 24px;
}

.case-studies-nav {
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  display: flex;
}

.case-study-btn {
  cursor: pointer;
  text-transform: uppercase;
  background: none;
  border: 1px solid #000;
  border-radius: 30px;
  padding: 10px 30px;
  font-family: Swiss721BT Bold Condensed, sans-serif;
  font-size: 18px;
  font-weight: 700;
  transition: all .3s;
}

.case-study-btn:not(.active):hover, .case-study-btn:not(.active):focus {
  background-color: #b7d7f2;
  border-color: #24ade9;
}

.case-study-btn.active {
  color: #fff;
  background-color: #24ade9;
  border-color: #24ade9;
}

.case-study-card {
  color: #fff;
  text-align: left;
  background-color: #24ade9;
  border-radius: 20px;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  max-width: 1376px;
  min-height: 500px;
  margin: 0 auto;
  padding: 40px;
  animation: .5s ease-in-out fadeIn;
  display: flex;
}

.cs-left {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  max-width: 286px;
  display: flex;
}

.cs-logo-img {
  object-fit: contain;
  max-width: 100%;
  height: auto;
  display: block;
}

.cs-title {
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-top: auto;
  margin-bottom: 20px;
  font-family: Swiss721 BT, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
}

.cs-title-img {
  width: 250px;
  height: auto;
  margin-top: auto;
  margin-bottom: 20px;
}

.cs-description {
  letter-spacing: -.02em;
  font-family: Swiss721 BT, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}

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

.cs-image {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  max-width: 637px;
  min-height: 428px;
}

.cs-right {
  color: #000;
  background-color: #b7d7f2;
  border-radius: 20px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  gap: 30px;
  max-width: 326px;
  padding: 30px;
  display: flex;
}

.cs-stat {
  padding-bottom: 10px;
}

.cs-stat:last-child {
  padding-bottom: 0;
}

.stat-value {
  letter-spacing: -.02em;
  align-items: baseline;
  margin-bottom: 5px;
  font-family: Swiss721BT Medium, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 100%;
  display: flex;
}

.stat-unit {
  margin-left: 5px;
  font-size: 24px;
}

.stat-desc {
  letter-spacing: -.02em;
  font-family: Swiss721 BT, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}

@media (width <= 1024px) {
  .case-study-card {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 30px;
  }

  .cs-left {
    text-align: center;
    align-items: center;
    max-width: 100%;
  }

  .cs-logo-img {
    margin: 0 auto 20px;
  }

  .cs-title {
    margin-top: 0;
  }

  .cs-middle {
    width: 100%;
  }

  .cs-image {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 200px;
  }

  .cs-right {
    width: 100%;
    max-width: 100%;
  }

  .cs-stat {
    text-align: left;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    display: flex;
  }

  .stat-value {
    justify-content: flex-end;
    min-width: 180px;
    margin-bottom: 0;
  }

  .stat-desc {
    flex: 1;
  }
}

@media (width <= 600px) {
  .case-studies-section {
    padding: 40px 15px;
  }

  .case-studies-nav {
    gap: 6px;
  }

  .case-study-card {
    padding: 20px;
  }

  .cs-left {
    text-align: left;
    align-items: flex-start;
  }

  .cs-logo-img {
    margin: 0 0 20px;
  }

  .cs-stat {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
  }

  .stat-value {
    justify-content: flex-start;
    min-width: 0;
    margin-bottom: 5px;
  }

  .case-studies-title-img, .case-studies-title-img img {
    height: 40px;
  }
}

.redesign-bonvoy-stats {
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 80px 20px;
  font-family: Swiss721BT Regular, sans-serif;
  display: flex;
}

.bonvoy-stats-header {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.bonvoy-title-image {
  width: auto;
  height: 45px;
  margin-bottom: 24px;
  display: block;
}

.bonvoy-title-image img {
  width: auto;
  height: 45px;
  display: block;
}

.bonvoy-stats-header p {
  color: #1c1c1c;
  text-align: center;
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 1.5;
}

.arrow-down {
  cursor: pointer;
  background-color: #0000;
  border: 1px solid #ccc;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  transition: border-color .3s;
  display: flex;
}

.arrow-down:hover {
  border-color: #1c1c1c;
}

.arrow-down svg {
  fill: none;
  stroke: #1c1c1c;
  stroke-width: 1.5px;
  width: 24px;
  height: 24px;
}

.bonvoy-stats-grid {
  grid-template-rows: 506px;
  grid-template-columns: minmax(560px, 1fr) 1fr minmax(300px, 332px);
  gap: 16px;
  width: 100%;
  max-width: 1376px;
  display: grid;
}

.stat-card {
  text-align: center;
  color: #fff;
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image-card {
  height: 100%;
  min-height: 500px;
}

.image-card .bg-image {
  object-fit: cover;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.image-card .overlay {
  z-index: 2;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  position: relative;
}

.floating-stat-box {
  backdrop-filter: blur(10px);
  background: radial-gradient(100% 359.18% at 0 0, #ffffff2e 0%, #ffffff08 100%);
  border: 1px solid #ffffff4d;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 320px;
  margin-bottom: 40px;
  padding: 30px 20px;
  display: flex;
}

.middle-column {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.orange-card {
  background-color: #ff9e75;
  flex: 1;
}

.orange-card .stat-number, .orange-card .stat-label {
  color: #1c1c1c;
}

.blue-card {
  background-color: #29abe2;
  flex: 1;
}

.stat-number {
  letter-spacing: -2px;
  margin-bottom: 16px;
  font-family: Swiss721BT Medium, sans-serif;
  font-size: 80px;
  line-height: 1;
}

.stat-label {
  max-width: 80%;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 400;
}

.icon-circle {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: flex;
  position: absolute;
  top: -32px;
}

.floating-stat-box .icon-circle {
  position: absolute;
  top: -32px;
}

.audience-card .overlay {
  backdrop-filter: blur(10px);
  justify-content: center;
}

.audience-card .icon-circle {
  margin-bottom: 24px;
  position: relative;
  top: -100px;
}

@media (width <= 1180px) {
  .bonvoy-stats-grid {
    grid-template-columns: minmax(382px, 1fr) 1fr minmax(300px, 332px);
  }
}

@media (width >= 768px) and (width <= 1024px) {
  .bonvoy-stats-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .middle-column {
    flex-direction: row;
  }

  .stat-card {
    min-height: 200px;
  }

  .image-card {
    height: 340px;
    min-height: 340px;
  }

  .image-card .overlay {
    padding: 20px;
  }

  .floating-stat-box {
    margin-bottom: 20px;
    padding: 20px 15px;
  }

  .audience-card .icon-circle {
    top: -32px;
  }

  .bonvoy-title-image {
    height: 45px;
  }
}

@media (width <= 767px) {
  .bonvoy-stats-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-card {
    min-height: 250px;
  }

  .image-card {
    min-height: 300px;
  }

  .audience-card .icon-circle {
    top: -32px;
  }

  .bonvoy-title-image img {
    height: 32px;
  }
}

.brands-section {
  text-align: center;
  padding: 60px 20px;
  font-family: Swiss721 BT, sans-serif;
}

.brands-container {
  background: #fff;
  border-radius: 24px;
  flex-flow: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
}

.brand-card {
  background: linear-gradient(#fff, #fff) padding-box padding-box, linear-gradient(#c4c4c4, #0000) border-box;
  border: .063rem solid #0000;
  border-radius: 20px;
  flex-direction: column;
  flex: 1;
  align-items: center;
  min-width: 250px;
  padding: 30px 20px;
  display: flex;
}

.brand-category-title {
  color: #000;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}

.brand-category-desc {
  color: #666;
  min-height: 30px;
  font-size: 13px;
  line-height: 1.4;
}

.brand-logos-grid {
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  width: 100%;
  display: flex;
}

.brand-logo-item {
  color: #333;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 10px;
  font-size: 12px;
  font-weight: 600;
  transition: transform .2s;
  display: flex;
}

.brand-logo-item svg {
  filter: grayscale() opacity(.6);
  cursor: pointer;
  transition: all .3s;
}

.brand-logo-item:hover svg {
  filter: grayscale(0%) opacity();
}

.brand-logo-item:hover {
  transform: scale(1.05);
}

.brand-logo-img {
  object-fit: contain;
  max-width: 80px;
  height: auto;
}

.brand-link {
  width: 48px;
  height: 32px;
  color: inherit;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

@media (width <= 1024px) {
  .brands-container {
    flex-wrap: wrap;
  }

  .brand-card {
    min-width: 45%;
  }
}

@media (width <= 768px) {
  .brands-container {
    flex-direction: column;
    align-items: center;
  }

  .brand-card {
    width: 100%;
    max-width: 400px;
  }
}

.redesign-partners {
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 4rem 1rem;
  display: flex;
}

.partners-header-img {
  width: auto;
  height: 45px;
  margin-bottom: .5rem;
  display: block;
}

.partners-header-img img {
  object-fit: contain;
  width: auto;
  height: 45px;
  display: block;
}

.redesign-partners .partners-text {
  letter-spacing: -.02em;
  text-align: center;
  color: #7e7e7e;
  max-width: 60vw;
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.redesign-partners .partners-text strong {
  color: #4f4f4f;
  font-weight: 700;
}

.redesign-partners .scroll-down-arrow {
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 2rem;
  transition: border-color .3s;
  display: flex;
}

.redesign-partners .scroll-down-arrow:hover {
  border-color: #1c1c1c;
}

.redesign-partners .scroll-down-arrow svg {
  fill: none;
  stroke: #1c1c1c;
  stroke-width: 1.5px;
  width: 20px;
  height: 20px;
}

.redesign-partners .logo-container {
  grid-template-rows: repeat(2, auto);
  grid-template-columns: repeat(4, 1fr);
  place-items: center;
  gap: 100px 60px;
  width: 100vw;
  max-width: 1300px;
  padding-top: 1rem;
  padding-bottom: 2rem;
  display: grid;
}

.redesign-partners .logo-img {
  object-fit: contain;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  height: 50px;
  display: flex;
}

@media (width <= 1050px) {
  .redesign-partners .partners-text {
    max-width: 70vw;
  }

  .redesign-partners .logo-img {
    height: 40px;
  }
}

@media (width <= 950px) {
  .redesign-partners .partners-text {
    max-width: 90vw;
  }

  .redesign-partners .logo-img {
    height: 35px;
  }

  .redesign-partners .logo-container {
    gap: 80px 30px;
    width: 90vw;
  }
}

@media (width <= 768px) {
  .redesign-partners .logo-container {
    grid-template-rows: repeat(4, auto);
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-header-img, .partners-header-img img {
    height: unset;
  }
}

@media (width <= 550px) {
  .redesign-partners .logo-img {
    height: 30px;
  }
}

.contact-thank-you {
  text-align: center;
  background-color: #fff;
  border-radius: 24px;
  flex-direction: column;
  flex: 1.5;
  justify-content: center;
  align-items: center;
  min-width: 550px;
  height: 100%;
  min-height: 400px;
  padding: 80px;
  display: flex;
}

.contact-thank-you h3 {
  color: #1c1c1c;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: Swiss721BT Bold Condensed, sans-serif;
  font-size: 40px;
  line-height: 44px;
}

.contact-thank-you p {
  color: #1c1c1c;
  margin-bottom: 2rem;
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 20px;
  line-height: 26px;
}

@media (width <= 768px) {
  .contact-thank-you {
    min-width: unset;
    width: 100%;
    min-height: 300px;
    margin: 0 auto;
    padding: 32px 16px;
  }
}

.redesign-contact-form {
  justify-content: center;
  padding: 4rem 2rem;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  display: flex;
}

.contact-content {
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  width: 100%;
  max-width: 1376px;
  display: flex;
}

.contact-text {
  text-align: center;
  flex: 1;
  min-width: 300px;
}

.contact-text h2 {
  letter-spacing: -.04em;
  text-transform: uppercase;
  color: #1c1c1c;
  margin-bottom: 1rem;
  font-family: Swiss721BT Bold Condensed, sans-serif;
  font-size: 110px;
  font-style: normal;
  font-weight: 700;
  line-height: 120px;
}

.contact-text p {
  letter-spacing: -.02em;
  color: #1c1c1c;
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.contact-form-fields {
  background-color: #fff;
  border-radius: 24px;
  flex: 1.5;
  gap: 0;
  min-width: 550px;
  padding: 80px;
}

.form-row {
  gap: 1rem;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

.form-group {
  flex-direction: column;
  flex: 1;
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
}

.form-group label {
  letter-spacing: 0;
  text-transform: uppercase;
  color: #1c1c1c;
  margin-bottom: .5rem;
  font-family: Swiss721BT Bold Condensed, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.form-group input, .form-group textarea {
  color: #333;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #e5e4e6;
  border-radius: 20px;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

.form-group input::-moz-placeholder {
  color: #ccc;
  letter-spacing: -.02em;
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.form-group input::placeholder {
  color: #ccc;
  letter-spacing: -.02em;
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.form-group textarea::-moz-placeholder {
  color: #ccc;
  letter-spacing: -.02em;
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.form-group textarea::placeholder {
  color: #ccc;
  letter-spacing: -.02em;
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.form-group textarea {
  resize: none;
}

.form-actions {
  justify-content: flex-end;
  width: 100%;
  margin-top: 1rem;
  display: flex;
}

.form-actions button {
  color: #1c1c1c;
  cursor: pointer;
  background-color: #ff9e66;
  border: none;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  width: 100%;
  padding: 10px 2rem;
  font-family: Swiss721BT Regular, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  transition: background-color .3s;
  display: flex;
}

.form-actions button:hover {
  background-color: #ff8a47;
}

.form-actions button:disabled {
  cursor: not-allowed;
  background-color: #ccc;
}

.arrow-icon {
  background-color: #ff8a47;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  font-size: 1.2rem;
  display: flex;
}

.arrow-icon svg {
  width: 30px;
  height: 30px;
}

.success-message {
  color: green;
  text-align: right;
  margin-top: 1rem;
}

.error-message {
  color: red;
  text-align: right;
  margin-top: 1rem;
}

@media (width <= 768px) {
  .contact-content {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-form-fields {
    min-width: unset;
    width: 100%;
    margin: 0 auto;
    padding: 32px 16px;
  }

  .contact-text h2 {
    letter-spacing: -.04em;
    text-transform: uppercase;
    font-family: Swiss721BT Bold Condensed, sans-serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (width <= 1270px) {
  .contact-text h2 {
    font-size: 70px;
    line-height: 70px;
  }
}

@media (width >= 769px) and (width <= 1024px) {
  .redesign-contact-form {
    padding: 4rem;
  }
}

.redesign-footer {
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 160px;
  display: flex;
}

.redesign-footer .footer-logo {
  text-align: center;
  width: 100%;
  padding: 0 24px;
}

.redesign-footer .footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.redesign-footer .footer-content {
  color: #fff;
  text-align: center;
  background-color: #1c1c1c;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  width: 100%;
  margin-top: -5px;
  padding: 40px 20px;
}

.redesign-footer .footer-copyright {
  margin-bottom: 15px;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
}

.redesign-footer .footer-links {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  display: flex;
}

.redesign-footer .footer-link {
  color: #fff;
  white-space: nowrap;
  align-items: center;
  text-decoration: none;
  transition: color .3s;
  display: inline-flex;
}

.redesign-footer .footer-link:hover {
  text-decoration: underline;
}

.redesign-footer .footer-separator {
  margin: 0 8px;
}

.redesign-footer .privacy-choices-img {
  vertical-align: middle;
  width: 29px;
  height: 14px;
  margin-right: 4px;
}

@media (width <= 768px) {
  .redesign-footer .footer-logo img {
    width: 100%;
  }

  .redesign-footer .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .redesign-footer .footer-separator {
    display: none;
  }

  .redesign-footer {
    margin-top: 80px;
  }
}

.redesign-page {
  color: #333;
  background-color: #f9f6f4;
  font-family: Swiss721BT Regular, Helvetica Neue, Helvetica, Arial, sans-serif;
}

.redesign-logo-container {
  justify-content: center;
  align-items: center;
  margin-top: 28px;
  margin-bottom: 24px;
  display: flex;
}

.redesign-logo-container img {
  width: 235px;
  height: 20px;
}

.intro-desktop-only {
  display: block;
}

@media (width <= 768px) {
  .intro-desktop-only {
    display: none;
  }
}

.footer {
  color: #fff;
  background-color: #1c1c1c;
  width: 100%;
  padding: 16px;
}

.footer-content {
  text-align: center;
  margin: 0 auto;
}

.footer-copyright {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  display: flex;
}

.footer-link {
  color: #fff;
  white-space: nowrap;
  align-items: center;
  text-decoration: none;
  transition: color .3s;
  display: inline-flex;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-arrow-separator {
  color: #fff;
  flex-shrink: 0;
  margin: 0 8px;
  transition: color .3s;
}

.footer-arrow-separator:hover {
  color: #fff;
}

.privacy-choices-img {
  vertical-align: middle;
  width: 14px;
  height: 7px;
  margin-right: 4px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #333;
  background-color: #fbf8f7;
  font-family: Swiss721BT, sans-serif;
  line-height: 1.3;
}

.app-container {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.content-wrapper {
  flex: 1 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.section {
  padding: 40px 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pt-4 {
  padding-top: 4rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

@font-face {
  font-family: Swiss721BT Regular;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("Swiss721BT-Regular.bec8aa7d.otf") format("opentype");
}

@font-face {
  font-family: Swiss721BT;
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  src: url("Swiss721BT-Light.3b34f286.otf") format("opentype");
}

@font-face {
  font-family: Swiss721BT Medium;
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("Swiss721BT-Medium.b91e2875.otf") format("opentype");
}

@font-face {
  font-family: Swiss721BT Condensed;
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("Swiss721BT-BlackCondensed.4fbb9ac4.otf") format("opentype");
}

@font-face {
  font-family: Swiss721BT Bold Condensed;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("Swiss721BT-BoldCondensed.6f74deb4.otf") format("opentype");
}

@font-face {
  font-family: ACaslonPro;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("ACaslonPro.91737c52.otf") format("opentype");
}

@font-face {
  font-family: WSupremeWeb-SemiBold;
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("WSupremeWeb-SemiBold.9a5ab434.woff") format("woff");
}
/*# sourceMappingURL=web-src.ebfc593d.css.map */
