/* SCSS variables for breakpoints */
.header {
  display: none; }
  @media (min-width: 768px) {
    .header {
      display: flex;
      position: absolute;
      top: 0;
      z-index: 1000;
      width: 100%;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      padding: 0 50px;
      height: 80px;
      box-sizing: border-box; } }
  @media (min-width: 992px) {
    .header {
      gap: 30px; } }
  .header .logo a img {
    width: 100px; }
    @media (min-width: 992px) {
      .header .logo a img {
        width: 150px; } }
  .header .navigation {
    margin-left: auto;
    padding: 10px 30px; }
    .header .navigation .links {
      display: flex;
      gap: 20px;
      white-space: nowrap; }
      .header .navigation .links .link {
        color: white;
        font-size: 1.2rem;
        text-decoration: none;
        cursor: pointer; }
        @media (min-width: 992px) {
          .header .navigation .links .link {
            font-size: 1.5rem; } }
        .header .navigation .links .link:hover {
          text-decoration: underline; }
  .header .actions {
    display: flex;
    gap: 20px;
    align-items: center; }
    .header .actions button {
      padding: 10px 20px;
      border-radius: 10px;
      background: transparent;
      border: 2px solid #fff;
      color: white;
      cursor: pointer; }
      .header .actions button:hover {
        background: #fe6f2f;
        color: white; }
    .header .actions a {
      display: none; }
      @media (min-width: 992px) {
        .header .actions a {
          color: white;
          display: flex;
          gap: 10px;
          align-items: center;
          text-decoration: none; } }
    .header .actions .seperator {
      display: none;
      color: white; }
      @media (min-width: 992px) {
        .header .actions .seperator {
          display: initial; } }
  .header.scrolled {
    position: fixed;
    background: #fe6f2f;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); }

.footer {
  background-color: #1f1f2e;
  color: white; }
  .footer .container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px; }
    @media (min-width: 992px) {
      .footer .container {
        flex-direction: row; } }
    @media (min-width: 992px) {
      .footer .container .column {
        max-width: 33%; } }
    .footer .container .column .title {
      color: #fe6f2f;
      font-size: 2rem;
      font-weight: bold; }
    .footer .container .column .subtitle {
      max-width: 600px; }
    .footer .container .column .quick-links {
      display: flex;
      flex-direction: column;
      gap: 10px; }
      .footer .container .column .quick-links a {
        color: white;
        text-decoration: none;
        font-size: 20px; }
        .footer .container .column .quick-links a i {
          margin-left: 20px; }
      .footer .container .column .quick-links .social-links {
        margin-top: 20px;
        display: flex;
        gap: 10px; }
        .footer .container .column .quick-links .social-links a {
          border: 1px solid white;
          border-radius: 50%;
          display: flex;
          justify-content: center;
          align-items: center;
          width: 40px;
          height: 40px; }
          .footer .container .column .quick-links .social-links a i {
            margin-left: 0; }
    .footer .container .column .input-group {
      position: relative;
      width: 100%; }
      .footer .container .column .input-group input {
        width: 100%;
        height: 60px;
        border-radius: 10px;
        border: none;
        background: rgba(255, 255, 255, 0.1);
        padding: 10px 30px;
        box-sizing: border-box;
        color: #fff;
        font-size: 18px;
        font-weight: bold; }
        .footer .container .column .input-group input:focus-visible {
          outline: none; }
        .footer .container .column .input-group input::placeholder {
          color: white; }
      .footer .container .column .input-group button {
        position: absolute;
        top: 20px;
        left: 10px;
        background: none;
        border: none;
        cursor: pointer; }
        .footer .container .column .input-group button i {
          color: white;
          font-size: 18px; }
    .footer .container-bottom {
      border-top: 1px solid #3e3e4e;
      padding: 20px;
      align-items: center; }
      .footer .container-bottom .copy-right {
        margin: 0; }
        .footer .container-bottom .copy-right a {
          color: #fe6f2f; }
      .footer .container-bottom .links {
        display: flex;
        gap: 15px; }
        .footer .container-bottom .links a {
          color: white; }

.download-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: space-between; }
  @media (min-width: 768px) {
    .download-links {
      justify-content: start; } }
  .download-links a {
    display: inline-flex;
    direction: initial;
    align-items: center;
    padding: 5px;
    border-radius: 10px;
    background: #ffffff;
    border: 2px solid #fff;
    text-decoration: none; }
    @media (min-width: 425px) {
      .download-links a {
        padding: 12px; } }
    @media (min-width: 1400px) {
      .download-links a {
        padding: 10px 20px; } }
    .download-links a .icon {
      font-size: 1.5rem;
      margin-right: 5px;
      color: #fe6f2f; }
      @media (min-width: 1400px) {
        .download-links a .icon {
          margin-right: 10px; } }
    .download-links a .text {
      font-size: 10px;
      font-weight: 400;
      color: #fe6f2f; }
      @media (min-width: 1400px) {
        .download-links a .text {
          font-size: 15px; } }
      .download-links a .text b {
        display: block;
        font-weight: 600;
        font-size: 0.75rem; }
    .download-links a:hover {
      background: #fe6f2f;
      color: white; }
      .download-links a:hover .icon,
      .download-links a:hover .text {
        color: white; }

.hero {
  position: relative; }
  .hero .overlay {
    background-color: rgba(245, 111, 47, 0.15);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: none; }
    @media (min-width: 768px) {
      .hero .overlay {
        display: block; } }
  .hero .background {
    display: flex; }
    .hero .background img {
      width: 100%; }
  .hero .content {
    padding: 5px;
    background: #fe6f2f; }
    @media (min-width: 425px) {
      .hero .content {
        padding: 10px; } }
    @media (min-width: 768px) {
      .hero .content {
        padding: 20px; } }
    @media (min-width: 992px) {
      .hero .content {
        z-index: 100;
        background: none;
        position: absolute;
        top: 0;
        height: 100%;
        width: 100%;
        padding: 0; } }
    .hero .content .content-body {
      display: flex;
      flex-direction: column;
      height: 100%;
      justify-content: center;
      max-width: 1200px;
      margin: auto; }
      @media (min-width: 992px) {
        .hero .content .content-body {
          padding: 10px 50px; } }
      .hero .content .content-body .title {
        color: #ffffff;
        font-size: 1.5rem; }
        .hero .content .content-body .title .subtitle {
          font-size: 1rem;
          max-width: 600px;
          padding: 0 10px; }
        @media (min-width: 992px) {
          .hero .content .content-body .title {
            font-weight: bold;
            font-size: 3rem; }
            .hero .content .content-body .title .subtitle {
              font-size: 1.5rem; } }
      .hero .content .content-body .track-box {
        margin-top: 20px; }
        .hero .content .content-body .track-box .input-group {
          position: relative;
          width: 100%; }
          @media (min-width: 992px) {
            .hero .content .content-body .track-box .input-group {
              max-width: 570px; } }
          .hero .content .content-body .track-box .input-group input {
            width: 100%;
            height: 60px;
            border-radius: 10px;
            border: none;
            background: rgba(255, 255, 255, 0.5);
            padding: 10px 30px;
            box-sizing: border-box;
            color: #fff;
            font-size: 18px;
            font-weight: bold; }
            .hero .content .content-body .track-box .input-group input:focus-visible {
              outline: none; }
            .hero .content .content-body .track-box .input-group input::placeholder {
              color: #fe6f2f;
              opacity: 0.8; }
          .hero .content .content-body .track-box .input-group button {
            position: absolute;
            top: 20px;
            left: 10px;
            background: none;
            border: none;
            cursor: pointer; }
            .hero .content .content-body .track-box .input-group button i {
              color: #fe6f2f;
              font-size: 18px; }

.download-app {
  background-color: #fe6f2f;
  padding: 20px 8px; }
  @media (min-width: 425px) {
    .download-app {
      padding: 10px; } }
  @media (min-width: 768px) {
    .download-app {
      padding: 20px; } }
  @media (min-width: 992px) {
    .download-app {
      padding: 50px; } }
  .download-app .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px; }
    @media (min-width: 768px) {
      .download-app .container {
        flex-direction: row;
        justify-content: space-between; } }
    @media (min-width: 992px) {
      .download-app .container {
        justify-content: center; } }
    .download-app .container .image {
      display: none; }
      @media (min-width: 768px) {
        .download-app .container .image {
          display: flex;
          justify-content: center;
          width: 30%; }
          .download-app .container .image img {
            width: 60%; } }
    @media (min-width: 768px) and (min-width: 1200px) {
      .download-app .container .image img {
        max-width: 200px; } }

    .download-app .container .content {
      text-align: center; }
      @media (min-width: 768px) {
        .download-app .container .content {
          text-align: start; } }
      .download-app .container .content .title {
        color: white;
        font-size: 1.5rem;
        margin-bottom: 30px; }
        @media (min-width: 1400px) {
          .download-app .container .content .title {
            font-size: 3rem; } }
      .download-app .container .content .subtitle {
        color: white;
        font-size: 1rem;
        max-width: 600px;
        margin-bottom: 20px;
        padding: 0 10px; }
        @media (min-width: 768px) {
          .download-app .container .content .subtitle {
            padding: 0;
            max-width: 450px; } }
        @media (min-width: 1400px) {
          .download-app .container .content .subtitle {
            font-size: 1.5rem;
            margin-bottom: 50px; } }

body {
  margin: 0; }
