@font-face {
  font-family: "Open Sans";
  src: url("/home-assets/OpenSans-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "PT Sans";
  src: url("/home-assets/PTSans-Bold.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: #193848;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial,
    sans-serif;
}
button,
input,
textarea,
select {
  font: inherit;
}

.home-page {
  --home-navy: #082532;
  --home-navy-light: #123746;
  --home-cyan: #0297ca;
  --home-orange: #fe7822;
  --home-red: #c80a02;
  --home-line: #dce8ed;
  color: #193848;
  background: #fff;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial,
    sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

.home-page *,
.home-page *::before,
.home-page *::after {
  box-sizing: border-box;
}
.home-page a {
  text-decoration: none;
}
.home-page h1,
.home-page h2,
.home-page h3,
.home-page p {
  margin: 0;
}
.home-page h1,
.home-page h2,
.home-page h3 {
  font-family: "PT Sans", Arial, sans-serif;
}
.home-page h2 {
  color: var(--home-navy);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}
.home-page h3 {
  font-size: 23px;
  line-height: 1.22;
}
.home-page p {
  color: #5b7080;
}
.home-page section[id] {
  scroll-margin-top: 90px;
}
.home-page a:focus-visible,
.home-page button:focus-visible,
.home-page summary:focus-visible {
  outline: 3px solid var(--home-orange);
  outline-offset: 4px;
}

.home-wrap {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}
.home-logo {
  color: var(--home-navy) !important;
  font: 700 29px/1 "PT Sans", Arial, sans-serif;
  white-space: nowrap;
}
.home-logo b {
  color: var(--home-cyan);
}
.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 12px 24px;
  border: 1px solid #1a5265;
  border-radius: 4px;
  background: #1a5265;
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.home-button:hover {
  filter: brightness(1.08);
}
.home-button--primary {
  border-color: var(--home-orange);
  background: var(--home-orange);
}
.home-button--info {
  border-color: var(--home-cyan);
  background: var(--home-cyan);
}
.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.home-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--home-cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.home-eyebrow::before {
  width: 22px;
  height: 3px;
  background: var(--home-orange);
  content: "";
}
.home-skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 1000;
  padding: 12px;
  background: #fff;
  color: var(--home-navy);
}
.home-skip-link:focus {
  top: 12px;
}

/* Header and account navigation */
.home-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  color: var(--home-navy);
  box-shadow: 0 8px 28px #0825320a;
}
.home-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 78px;
}
.home-header__navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}
.home-header__navigation a,
.home-account > a {
  color: #526875;
  font-size: 13px;
  font-weight: 600;
}
.home-header__navigation a:hover,
.home-account > a:hover {
  color: var(--home-cyan);
}
.home-stripes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  height: 4px;
}
.home-stripes i:nth-child(1) {
  background: #1a5265;
}
.home-stripes i:nth-child(2) {
  background: var(--home-red);
}
.home-stripes i:nth-child(3) {
  background: var(--home-orange);
}
.home-stripes i:nth-child(4) {
  background: var(--home-cyan);
}
.home-account {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 122px;
}
.home-account details {
  position: relative;
}
.home-account summary {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #526875;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.home-account summary::-webkit-details-marker,
.home-mobile-menu summary::-webkit-details-marker {
  display: none;
}
.home-account summary i {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a5265;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.3px;
}
.home-account__menu {
  position: absolute;
  top: 48px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 220px;
  padding: 10px;
  border: 1px solid var(--home-line);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 18px 50px #00192333;
}
.home-account__menu > a,
.home-account__menu > button {
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: #526875;
  font: 600 13px "Open Sans", Arial, sans-serif;
  text-align: left;
  cursor: pointer;
}
.home-account__menu > a:hover,
.home-account__menu > button:hover {
  background: #f4f8fa;
  color: var(--home-cyan);
}
.home-mobile-menu {
  display: none;
  position: relative;
}
.home-mobile-menu > summary {
  color: var(--home-navy);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.home-mobile-menu > nav {
  position: absolute;
  top: 42px;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(320px, calc(100vw - 32px));
  max-height: calc(100vh - 100px);
  padding: 12px;
  overflow-y: auto;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 18px 50px #00192355;
}
.home-mobile-menu nav > a,
.home-mobile-menu nav > button {
  padding: 10px;
  border: 0;
  background: transparent;
  color: var(--home-navy) !important;
  font: 600 13px "Open Sans", Arial, sans-serif;
  text-align: left;
  cursor: pointer;
}
.home-mobile-menu nav > a[href^="/sports/auth"] {
  margin-top: 7px;
  background: var(--home-orange);
  color: #fff !important;
  text-align: center;
}

.home-view-as {
  order: -1;
  width: 100%;
  margin-bottom: 6px;
  padding: 8px 10px 14px;
  border-bottom: 1px solid var(--home-line);
}
.home-view-as label {
  display: block;
  margin-bottom: 5px;
  color: #7f8e96;
  font-size: 11px;
  font-weight: 600;
}
.home-view-as > div {
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: end;
  gap: 8px;
}
.home-view-as input {
  min-width: 0;
  height: 34px;
  padding: 6px 9px;
  border: 1px solid #b7d4e5;
  border-radius: 4px;
  color: #526875;
  font: 400 12px "Open Sans", Arial, sans-serif;
}
.home-view-as button {
  display: grid;
  place-items: center;
  width: 28px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--home-orange);
  box-shadow: none;
}
.home-view-as button:hover,
.home-view-as button:focus {
  background: #f4f8fa;
}
.home-view-as button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--home-orange);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Hero */
.home-hero {
  overflow: hidden;
  background: var(--home-navy);
  color: #fff;
}
.home-hero__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
  gap: 58px;
  padding-top: 72px;
  padding-bottom: 72px;
}
.home-hero__intro {
  display: flex;
  flex-direction: column;
}
.home-hero__intro h1 {
  font-size: clamp(50px, 6.2vw, 82px);
  line-height: 0.95;
  letter-spacing: -2px;
}
.home-hero__intro h1 em {
  color: var(--home-cyan);
  font-style: normal;
}
.home-hero__intro > p {
  max-width: 520px;
  margin-top: 28px;
  color: #b6c7ce;
  font-size: 17px;
}
.home-hero__intro .home-actions {
  margin-top: auto;
  padding-top: 30px;
}
.home-hero__visual {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 18px;
}
.home-capabilities {
  background: #061d27;
}
.home-capabilities > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #ffffff1f;
  border-left: 1px solid #ffffff1f;
}
.home-capabilities a {
  padding: 20px 25px;
  border-right: 1px solid #ffffff1f;
  border-bottom: 1px solid #ffffff1f;
  color: #b8c8ce;
  font-size: 12px;
  transition: background 0.2s, color 0.2s;

  cursor: pointer;
}
.home-capabilities a:hover {
  background: #ffffff0b;
  color: #fff;
}

.home-banners {
  min-width: 0;
}
.home-banners > p {
  margin-bottom: 14px;
  color: #9eb4bd;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.home-banners > small {
  display: block;
  margin-top: 15px;
  color: #90a5ae;
  font-size: 11px;
}
.home-banners__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  aspect-ratio: 13 / 5;
  border: 1px solid #ffffff1f;
  border-radius: 10px;
  background: var(--home-navy-light);
  color: #c4d3d9;
  font-size: 14px;
}
.home-banners__placeholder a {
  color: #05b0f0;
  text-decoration: underline;
}
.home-banner-carousel {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #1a5265;
}
.home-banner-carousel__slide {
  display: block;
}
.home-banner-carousel__slide[hidden] {
  display: none;
}
.home-banner-carousel__slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 13 / 5;
  object-fit: contain;
}
.home-banner-carousel__slide:focus-visible {
  outline-offset: -3px;
}
.home-banner-carousel__previous,
.home-banner-carousel__next {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0 4px 4px 0;
  background: #08253299;
  color: #fff;
  font: 400 28px/1 Arial, sans-serif;
  transform: translateY(-50%);
  cursor: pointer;
}
.home-banner-carousel__previous {
  left: 0;
}
.home-banner-carousel__next {
  right: 0;
  border-radius: 4px 0 0 4px;
}
.home-banner-carousel__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}
.home-banner-carousel__dots button {
  width: 18px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: #ffffff80;
  cursor: pointer;
}
.home-banner-carousel__dots button.is-active {
  background: #fff;
}

.home-stats {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}
.home-stats article {
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid #ffffff1f;
  border-radius: 4px;
  background: var(--home-navy-light);
}
.home-stats span {
  display: block;
  color: #8fa6b0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.home-stats strong {
  display: block;
  margin-top: 5px;
  color: var(--home-cyan);
  font: 700 clamp(20px, 2.5vw, 36px) / 1 "PT Sans", Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.home-stats article:nth-child(2) strong {
  color: var(--home-orange);
}

/* Content sections */
.home-section,
.home-sports-section,
.home-projects,
.home-faq {
  padding: 100px 0;
}
.home-section,
.home-faq {
  background: #f4f8fa;
}
.home-sports-section,
.home-projects {
  background: #fff;
}
.home-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
}
.home-section-heading > div {
  max-width: 760px;
}
.home-section-heading > p {
  max-width: 360px;
}
.home-section-heading > a {
  color: var(--home-cyan);
  font-size: 13px;
  font-weight: 700;
}

.home-journeys {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.home-journeys article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 32px;
  border: 1px solid var(--home-line);
  border-top: 4px solid var(--home-cyan);
  background: #fff;
}
.home-journeys article:nth-child(2) {
  border-top-color: var(--home-orange);
}
.home-journeys article:nth-child(3) {
  border-top-color: #1a5265;
}
.home-journeys article > span {
  position: absolute;
  top: 25px;
  right: 27px;
  color: #a8bac3;
  font: 700 13px "PT Sans", Arial, sans-serif;
}
.home-journeys i {
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: 30px;
  color: var(--home-cyan);
}
.home-journeys i svg {
  width: 100%;
  height: 100%;
}
.home-journeys small {
  color: #6f8490;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.home-journeys h3 {
  margin: 8px 0 14px;
  color: var(--home-navy);
}
.home-journeys p {
  margin-bottom: 28px;
  font-size: 13px;
}
.home-journeys .home-button {
  align-self: start;
  margin-top: auto;
}

.home-sports {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--home-line);
}
.home-sports > a {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 24px;
  min-height: 180px;
  padding: 34px;
  border-bottom: 1px solid var(--home-line);
  color: var(--home-navy);
}
.home-sports > a:nth-child(odd) {
  border-right: 1px solid var(--home-line);
}
.home-sports > a:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.home-sports > a:hover {
  background: #f3f9fb;
}
.home-sports i {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #e7f5fa;
  color: var(--home-cyan);
}
.home-sports i svg {
  width: 58px;
  height: 58px;
}
.home-sports h3 {
  margin-bottom: 5px;
}
.home-sports p {
  font-size: 12px;
}
.home-sports b {
  grid-column: 2;
  color: var(--home-cyan);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-organizer {
  padding: 105px 0;
  background: var(--home-navy);
  color: #fff;
}
.home-organizer__layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 80px;
}
.home-organizer h2 {
  color: #fff;
}
.home-organizer p {
  color: #adc0c8;
}
.home-organizer__intro {
  position: sticky;
  top: 125px;
}
.home-organizer__intro > p {
  margin-top: 24px;
  font-size: 15px;
}
.home-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.home-feature-grid article {
  min-height: 175px;
  padding: 26px;
  border: 1px solid #ffffff19;
  background: var(--home-navy-light);
}
.home-feature-grid span {
  color: var(--home-cyan);
  font: 700 13px "PT Sans", Arial, sans-serif;
}
.home-feature-grid h3 {
  margin: 17px 0 7px;
  font-size: 19px;
}
.home-feature-grid p {
  font-size: 12px;
}

.home-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.home-projects__grid > a {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 32px;
  border: 1px solid var(--home-line);
  background: #f4f8fa;
  color: var(--home-navy);
}
.home-projects__grid > a:hover {
  border-color: var(--home-cyan);
}
.home-projects__grid > a > span {
  position: absolute;
  top: 23px;
  right: 25px;
  color: #99aeb8;
  font-weight: 700;
}
.home-projects__grid small {
  color: var(--home-cyan);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.home-projects__grid h3 {
  margin: 43px 0 15px;
  font-size: 25px;
}
.home-projects__grid p {
  font-size: 13px;
}
.home-projects__grid b {
  display: block;
  margin-top: auto;
  padding-top: 28px;
  color: var(--home-cyan);
  font-size: 12px;
}

.home-trust {
  padding: 82px 0;
  background: #1a5265;
  color: #fff;
}
.home-trust__layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  align-items: center;
  gap: 60px;
}
.home-trust h2 {
  color: #fff;
  font-size: 40px;
}
.home-trust p {
  color: #d3e3e8;
  font-size: 14px;
}
.home-trust .home-button {
  border-color: #fff;
  background: #fff;
  color: var(--home-navy) !important;
}

.home-faq__layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
}
.home-faq h2 {
  margin-bottom: 20px;
}
.home-faq details {
  padding: 22px 0;
  border-bottom: 1px solid #cbdce3;
}
.home-faq summary {
  color: var(--home-navy);
  font: 700 18px "PT Sans", Arial, sans-serif;
  cursor: pointer;
}
.home-faq details p {
  padding-top: 14px;
  font-size: 13px;
}
.home-faq a {
  color: var(--home-cyan);
}

/* Footer */
.home-footer {
  padding: 52px 0 36px;
  background: #061d27;
  color: #9eb1b9;
}
.home-footer__layout {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px 60px;
}
.home-footer .home-logo {
  color: #fff !important;
}
.home-footer__brand p {
  margin-top: 10px;
  color: #8da2ab;
  font-size: 12px;
}
.home-footer__navigation {
  display: flex;
  gap: 25px;
}
.home-footer__navigation a,
.home-footer__legal a {
  color: #9eb1b9;
  font-size: 12px;
}
.home-footer__navigation a:hover,
.home-footer__legal a:hover {
  color: #fff;
}
.home-footer__socials {
  display: flex;
  align-items: center;
  gap: 13px;
}
.home-footer__socials a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  opacity: 0.82;
  transition: opacity 0.2s;
}
.home-footer__socials a:hover {
  opacity: 1;
}
.home-footer__socials svg {
  display: block;
}
.home-footer__legal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px 24px;
  padding-top: 25px;
  border-top: 1px solid #ffffff17;
  font-size: 12px;
}
.home-footer__legal span {
  margin-left: auto;
}

/* Contact button and dialog */
.home-contact-button {
  position: fixed;
  right: 40px;
  bottom: 80px;
  z-index: 777;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 20px;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 4px #00000040;
  color: #1a5265;
  font: 600 14px "Open Sans", Arial, sans-serif;
  cursor: pointer;
}
.contact-us-button-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 20px;
  height: 18px;
}
.contact-us-button-icon hr {
  width: 100%;
  height: 3px;
  margin: 0 0 1px;
  border: 0;
}
.contact-us-button-icon hr:nth-child(1) {
  background: #1a5265;
}
.contact-us-button-icon hr:nth-child(2) {
  background: var(--home-red);
}
.contact-us-button-icon hr:nth-child(3) {
  background: var(--home-orange);
}
.contact-us-button-icon hr:nth-child(4) {
  margin-bottom: 0;
  background: var(--home-cyan);
}
.home-contact-dialog {
  position: fixed;
  right: 40px;
  bottom: 140px;
  z-index: 776;
  visibility: hidden;
  width: 315px;
  max-width: calc(100vw - 32px);
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 8px 30px #00000040;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  pointer-events: none;
}
.home-contact-dialog--open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.home-contact-dialog > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #1b5366;
  color: #fff;
}
.home-contact-dialog > header h2 {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}
.home-contact-dialog > header button {
  display: grid;
  place-items: center;
  padding: 5px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.home-contact-dialog > header button span {
  font: 400 24px/1 Arial, sans-serif;
}
.home-contact-dialog__body {
  padding: 15px 16px;
  color: #5b6b7f;
  font-size: 12px;
}
.home-contact-dialog__body section {
  margin-bottom: 17px;
}
.home-contact-dialog__body section:last-child {
  margin-bottom: 0;
}
.home-contact-dialog__body p {
  color: #5b6b7f;
  font-size: 12px;
}
.home-contact-dialog__body a {
  color: #0297ca;
}
.home-contact-dialog__schedule strong {
  font-size: 14px;
  font-weight: 600;
}
.home-contact-dialog__item {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
}
.home-contact-dialog__item > svg {
  margin-top: 1px;
}
.home-contact-dialog__icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--home-orange);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-contact-dialog__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-contact-dialog__socials p {
  margin-right: 2px;
  font-size: 14px;
}
.home-contact-dialog__socials a {
  display: flex;
  align-items: center;
  width: 24px;
  height: 24px;
}

@media (max-width: 1000px) {
  .home-projects__grid {
    grid-template-columns: 1fr;
  }
  .home-projects__grid > a {
    min-height: 0;
  }
}

@media (max-width: 944px) {
  .home-contact-button {
    right: 16px;
    bottom: 16px;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0 8px 24px #0000002e;
  }
  .home-contact-button .contact-us-button-icon {
    width: 22px;
    height: 20px;
  }
  .home-contact-button > span:last-child {
    display: none;
  }
  .home-contact-dialog {
    right: 16px;
    bottom: 76px;
  }
}

@media (max-width: 900px) {
  .home-header__navigation,
  .home-account {
    display: none;
  }
  .home-mobile-menu {
    display: block;
  }
  .home-hero__layout {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .home-hero__intro h1 {
    font-size: 58px;
  }
  .home-hero__intro .home-actions {
    margin-top: 30px;
    padding-top: 0;
  }
  .home-journeys {
    grid-template-columns: 1fr;
  }
  .home-organizer__layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .home-organizer__intro {
    position: static;
  }
  .home-trust__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .home-footer__layout {
    grid-template-columns: 1fr auto;
  }
  .home-footer__navigation {
    grid-row: 2;
    grid-column: 1 / -1;
    flex-wrap: wrap;
  }
}

@media (max-width: 800px) {
  .home-faq__layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 750px) {
  .home-sports {
    grid-template-columns: 1fr;
  }
  .home-sports > a:nth-child(odd) {
    border-right: 0;
  }
  .home-sports > a:nth-last-child(2) {
    border-bottom: 1px solid var(--home-line);
  }
}

@media (max-width: 700px) {
  .home-wrap {
    width: calc(100% - 32px);
  }
  .home-capabilities > div {
    grid-template-columns: 1fr 1fr;
  }
  .home-section,
  .home-sports-section,
  .home-projects,
  .home-faq {
    padding: 65px 0;
  }
  .home-organizer {
    padding: 70px 0;
  }
  .home-section-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .home-footer__layout {
    grid-template-columns: 1fr;
  }
  .home-footer__navigation {
    grid-row: auto;
    grid-column: auto;
  }
  .home-footer__legal span {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 550px) {
  .home-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .home-hero__layout {
    gap: 30px;
    padding-top: 32px;
    padding-bottom: 36px;
  }
  .home-hero__intro h1 {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .home-hero__intro > p {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.5;
  }
  .home-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 20px;
  }
  .home-actions a {
    padding: 10px 8px;
    font-size: 12px;
    text-align: center;
  }
  .home-stats {
    grid-template-columns: 1fr 1fr;
  }
  .home-stats article:first-child {
    grid-column: 1 / -1;
  }
  .home-stats article {
    padding: 14px 16px;
  }
  .home-stats strong {
    font-size: 28px;
  }
}

@media (max-width: 450px) {
  .home-sports > a {
    grid-template-columns: 60px 1fr;
    gap: 18px;
    padding: 24px;
  }
  .home-sports i {
    width: 60px;
    height: 60px;
  }
  .home-sports i svg {
    width: 43px;
    height: 43px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .home-page *,
  .home-page *::before,
  .home-page *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
