/* [project]/src/components/home/Hero.module.css [app-client] (css) */
.Hero-module__s-6kkG__hero {
  background: var(--rb-black);
  flex-direction: row;
  flex-shrink: 0;
  justify-content: center;
  align-self: stretch;
  align-items: stretch;
  height: 100dvh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.Hero-module__s-6kkG__overlay {
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(#00000080, #0000);
  position: absolute;
  inset: 0;
}

.Hero-module__s-6kkG__media {
  z-index: 1;
  background-image: var(--hero-image);
  min-width: 325px;
  animation: Hero-module__s-6kkG__hero-media-enter 2s var(--rb-ease);
  background-position: center;
  background-size: cover;
  flex: 1;
  position: relative;
}

@keyframes Hero-module__s-6kkG__hero-media-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.Hero-module__s-6kkG__side {
  z-index: 3;
  -webkit-user-select: none;
  user-select: none;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 25px;
  display: flex;
}

.Hero-module__s-6kkG__logo {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  width: 400px;
  max-width: 70vw;
  height: auto;
  animation: Hero-module__s-6kkG__hero-fade-enter 1s var(--rb-ease);
}

.Hero-module__s-6kkG__eyebrow {
  font-family: var(--rb-font-display);
  font-weight: var(--rb-fw-nav);
  letter-spacing: .15em;
  color: var(--rb-white);
  filter: blur(.5px);
  animation: Hero-module__s-6kkG__hero-blur-enter 2s var(--rb-ease);
  font-size: 13px;
  font-stretch: expanded;
  line-height: 75%;
}

@keyframes Hero-module__s-6kkG__hero-fade-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes Hero-module__s-6kkG__hero-blur-enter {
  from {
    opacity: 0;
    filter: blur(.8px);
  }

  to {
    opacity: 1;
    filter: blur(.5px);
  }
}

@media only screen and (max-width: 800px) {
  .Hero-module__s-6kkG__media {
    position: absolute;
    inset: 0;
  }

  .Hero-module__s-6kkG__side {
    padding-bottom: var(--rb-space-20);
    background: linear-gradient(#0000, #000000d9);
    justify-content: flex-end;
    gap: 18px;
    position: absolute;
    inset: 0;
  }
}

/* [project]/src/components/home/home.css [app-client] (css) */
.rb-marquee {
  background: #000;
  align-self: stretch;
  height: 125px;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, #0000, #000 12% 88%, #0000);
  mask-image: linear-gradient(to right, #0000, #000 12% 88%, #0000);
}

.rb-marquee-track {
  white-space: nowrap;
  align-items: center;
  animation: 30s linear infinite rb-marquee;
  display: flex;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.rb-marquee-item {
  pointer-events: none;
  filter: invert();
  flex: none;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 75px;
  display: flex;
}

.rb-marquee-item svg {
  transform: scale(.75);
}

@keyframes rb-marquee {
  from {
    transform: translate(0, -50%);
  }

  to {
    transform: translate(-50%, -50%);
  }
}

.rb-feature {
  align-self: stretch;
  padding: 100px 25px;
}

.rb-feature-image {
  background-position: center;
  background-size: cover;
}

.rb-feature-scrim {
  background: linear-gradient(to right, #000, #0000);
}

.rb-feature-scrim-v {
  background: linear-gradient(to top, #000, #0000);
}

.rb-feature-container {
  flex: 1;
  max-width: 1564px;
}

.rb-feature-content {
  flex: 1;
  gap: 15px;
  max-width: 900px;
}

.rb-feature-content h2 {
  font-family: var(--rb-font-display);
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 150;
  font-stretch: expanded;
  line-height: 120%;
}

.rb-feature-content h2 span {
  font-weight: 630;
}

.rb-feature-content h4 {
  font-family: var(--rb-font-display);
  letter-spacing: .005em;
  color: #fff;
  font-size: 20px;
  font-weight: 274;
  line-height: 120%;
}

.rb-statement {
  background: #000;
  align-self: stretch;
  padding: 100px 15px;
}

.rb-statement-inner {
  flex: 1;
  gap: 50px;
  max-width: 800px;
}

.rb-statement-inner h2 {
  font-family: var(--rb-font-display);
  text-align: center;
  letter-spacing: .3em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff26 0%, #fff 50%, #ffffff26 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(30px, 7vw, 70px);
  font-weight: 270;
  font-stretch: expanded;
  line-height: 95%;
}

.rb-statement-inner p {
  font-family: var(--rb-font-display);
  text-align: center;
  letter-spacing: .01em;
  color: #ffffff80;
  max-width: 600px;
  padding-inline: 25px;
  font-size: 13px;
  font-weight: 400;
  line-height: 150%;
}

.rb-shopgrid {
  background: #000;
  align-self: stretch;
  gap: 25px;
}

.rb-shopgrid-head {
  align-self: stretch;
  padding: 25px 15px;
}

.rb-shopgrid-head-inner {
  flex: 1;
  gap: 50px;
  max-width: 1300px;
}

.rb-shopgrid-head-inner h2 {
  font-family: var(--rb-font-display);
  letter-spacing: .3em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 270;
  font-stretch: expanded;
  line-height: 95%;
}

.rb-shopgrid-tiles {
  align-self: stretch;
  gap: 0 2px;
}

.rb-shopgrid-tile {
  box-sizing: border-box;
  cursor: pointer;
  background: #000;
  flex: 1;
  min-width: 325px;
  height: 700px;
  padding: 50px;
}

.rb-shopgrid-tile-img {
  background-position: center;
  background-size: cover;
  transition: transform .15s ease-in-out;
}

.rb-shopgrid-tile:hover .rb-shopgrid-tile-img {
  transform: scale(1.05);
}

.rb-shopgrid-tile-overlay {
  background: linear-gradient(#0000, #00000080);
}

.rb-shopgrid-tile-text {
  transition: padding .3s var(--rb-ease), border-color .3s var(--rb-ease);
  border-bottom: 1px solid #0000;
}

.rb-shopgrid-tile:hover .rb-shopgrid-tile-text {
  border-bottom-color: #fff;
  padding: 25px 0;
}

.rb-shopgrid-tile-text h4 {
  font-family: var(--rb-font-display);
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  font-size: clamp(26px, 3vw, 35px);
  font-weight: 230;
  font-stretch: expanded;
  line-height: 1.2;
}

.rb-news {
  background: #000;
  align-self: stretch;
  padding: 50px;
}

.rb-news-inner {
  width: 100%;
  max-width: 1500px;
}

.rb-news-title {
  width: 100%;
  max-width: 400px;
}

.rb-news-title h3 {
  font-family: var(--rb-font-display);
  color: #fff;
  font-size: 25px;
  font-weight: 274;
  line-height: 1.2;
}

.rb-news-title p {
  font-family: var(--rb-font-display);
  color: #ffffff80;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.rb-news-rail {
  align-self: stretch;
  width: 100%;
}

.rb-news .slick-slider {
  display: block;
  position: relative;
}

.rb-news .slick-list {
  overflow: hidden;
}

.rb-news .slick-track {
  display: flex;
}

.rb-news .slick-slide {
  box-sizing: border-box;
  height: auto;
  padding: 0 7.5px;
}

.rb-news .slick-slide, .rb-news .slick-slide * {
  box-sizing: border-box;
}

.rb-news .slick-slide > div {
  height: 100%;
}

.rb-news-card {
  cursor: pointer;
  background: #ffffff0d;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 175px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.rb-news-card-img {
  z-index: 2;
  transition: scale .25s var(--rb-ease);
  background-position: center;
  background-size: cover;
  position: absolute;
  inset: 0;
}

.rb-news-card:hover .rb-news-card-img {
  scale: 1.05;
}

.rb-news-card-overlay {
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(#0000, #000000bf);
  position: absolute;
  inset: 0;
}

.rb-news-card svg {
  z-index: 4;
  pointer-events: none;
  width: auto;
  max-width: 70%;
}

.rb-showcase {
  background: #000;
  flex-wrap: wrap;
  align-self: stretch;
  gap: 25px 2px;
  padding: 15px;
  display: flex;
}

.rb-showcase-tile {
  flex-direction: column;
  flex: 1;
  min-width: 325px;
  display: flex;
}

.rb-showcase-media {
  background: #000;
  align-self: stretch;
  height: 600px;
  position: relative;
  overflow: hidden;
}

.rb-showcase-media .rb-showcase-img, .rb-showcase-media iframe {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: scale .25s var(--rb-ease);
  border: 0;
  position: absolute;
  inset: 0;
}

.rb-showcase-media:hover .rb-showcase-img {
  scale: 1.05;
}

.rb-showcase-body {
  flex-direction: column;
  justify-content: flex-end;
  align-self: stretch;
  align-items: flex-start;
  gap: 15px;
  padding: 35px;
  display: flex;
}

.rb-showcase-logo {
  box-sizing: border-box;
  background: #000;
  border: 2px solid #fff;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 125px;
  height: 125px;
  padding: 5px;
  display: flex;
}

.rb-showcase-logo svg {
  width: 100%;
  height: 100%;
}

.rb-showcase-text h4 {
  font-family: var(--rb-font-display);
  text-transform: uppercase;
  color: #fff;
  font-size: 25px;
  font-weight: 270;
  font-stretch: expanded;
  line-height: 1.2;
}

.rb-showcase-text h4 span {
  font-weight: 600;
}

.rb-showcase-text p {
  font-family: var(--rb-font-display);
  color: #ffffff80;
  margin-top: 15px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
}

.rb-services {
  background: #000;
  align-self: stretch;
  padding: 50px;
}

.rb-services-inner {
  gap: 25px;
  width: 100%;
  max-width: 1500px;
}

.rb-services-title {
  gap: 5px;
  width: 100%;
  max-width: 400px;
}

.rb-services-title h3 {
  font-family: var(--rb-font-display);
  color: #fff;
  font-size: 25px;
  font-weight: 274;
  line-height: 1.2;
}

.rb-services-list {
  align-self: stretch;
  gap: 15px;
}

.rb-service {
  cursor: pointer;
  border: 1px solid #ffffff1a;
  border-radius: 16px;
  flex: 1;
  min-width: 250px;
  height: 115px;
  overflow: hidden;
}

.rb-service-img {
  aspect-ratio: 1;
  background-position: center;
  background-size: cover;
  flex-shrink: 0;
}

.rb-service-text {
  flex: 1;
  gap: 5px;
  padding: 0 25px;
}

.rb-service-text h4 {
  font-family: var(--rb-font-display);
  letter-spacing: .02em;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.rb-service-text p {
  font-family: var(--rb-font-display);
  letter-spacing: .02em;
  color: #ffffff80;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

.rb-app {
  color: #000;
  background: #f5f5f7;
  align-self: stretch;
  padding: 50px 15px 0;
}

.rb-app-container {
  flex: 1;
  gap: 25px 100px;
  max-width: 1300px;
}

.rb-app-content {
  box-sizing: border-box;
  flex: 1;
  gap: 15px;
  min-width: 325px;
  padding: 75px;
}

.rb-app-content h2 {
  font-family: var(--rb-font-display);
  color: #000;
  max-width: 500px;
  font-size: 40px;
  font-weight: 274;
  line-height: 48px;
}

.rb-app-content p {
  font-family: var(--rb-font-display);
  color: #00000080;
  max-width: 500px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.rb-app-logo {
  align-self: stretch;
  gap: 25px;
  padding: 15px 0;
}

.rb-app-logo-bar {
  background: #000;
  flex-shrink: 0;
  width: 1px;
  height: 20px;
}

.rb-app-logo-icon {
  background: url("/media/appicon.png") center / contain no-repeat;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.rb-app-platforms {
  align-self: stretch;
  gap: 15px;
  padding: 25px 0;
}

.rb-app-platforms svg {
  transition: scale .15s var(--rb-ease);
  cursor: pointer;
}

.rb-app-platforms svg:hover {
  scale: 1.05;
}

.rb-app-image {
  aspect-ratio: 485 / 670;
  object-fit: cover;
  flex: 1;
  align-self: flex-end;
  min-width: 325px;
  max-width: 485px;
}

.rb-logobar {
  background: #000;
  align-self: stretch;
  padding: 100px 15px;
}

.rb-logobar img {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
  max-width: 400px;
}

.rb-credit {
  background: #000;
  align-self: stretch;
  padding: 50px 15px;
}

.rb-credit h5 {
  font-family: var(--rb-font-display);
  text-align: center;
  letter-spacing: .6em;
  text-transform: uppercase;
  color: #fff;
  -webkit-user-select: none;
  user-select: none;
  font-size: clamp(8px, 1.1vw, 13px);
  font-weight: 410;
  font-stretch: expanded;
  line-height: 160%;
}

.rb-credit h5 span {
  font-weight: 600;
}

/*# sourceMappingURL=src_components_home_1nt79n_._.css.map*/