/** Shopify CDN: Minification failed

Line 278:22 Expected identifier but found whitespace
Line 278:24 Unexpected "{"
Line 278:33 Expected ":"

**/
 .tortour-hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    isolation: isolate;
  }


  /* ============================
     IMAGE
  ============================ */

  .tortour-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
  }

  .tortour-hero__media picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .tortour-hero__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .tortour-hero__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  /* ============================
     OVERLAY
  ============================ */



  /* ============================
     CONTENT
  ============================ */

  .tortour-hero__content {
    position: relative;
    z-index: 3;
    display: flex;
    width: 100%;
    height: 100%;
    padding: 75px 7%;
    box-sizing: border-box;
  }

  .tortour-hero__content-inner {
    width: 100%;

  }


  /* Horizontal */

  .tortour-hero__content--left {
    justify-content: flex-start;
    text-align: left;
  }

  .tortour-hero__content--center {
    justify-content: center;
    text-align: center;
  }

  .tortour-hero__content--right {
    justify-content: flex-end;
    text-align: right;
  }


  /* Vertical */

  .tortour-hero__content--top {
    align-items: flex-start;
  }

  .tortour-hero__content--middle {
    align-items: center;
  }

  .tortour-hero__content--bottom {
    align-items: flex-end;
  }


  /* ============================
     LOGOS
  ============================ */

  .tortour-hero__logos {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
  }

  .tortour-hero__logo {
    display: flex;
    align-items: center;
  }

  .tortour-hero__logo-image {
    display: block;
    width: auto;
    max-width: 180px;
    max-height: 40px;
    object-fit: contain;
  }

  .tortour-hero__logo-separator {

    font-size: 20px;
    line-height: 1;
  }


  /* ============================
     EYEBROW
  ============================ */

  .tortour-hero__eyebrow {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
  }


  /* ============================
     HEADING
  ============================ */

  .tortour-hero__heading {
    max-width: 600px;
    margin: 0;



  }

.tortour-hero__heading p {
    margin: 0;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
}
  /* ============================
     HIGHLIGHT
  ============================ */

  .tortour-hero__highlight {
    margin-top: 4px;
    text-transform: uppercase;

  }


  /* ============================
     DESCRIPTION
  ============================ */

  .tortour-hero__description {
    max-width: 520px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.45;
    color: var(--tortour-text-color);
  }

.tortour-hero__description p {
    margin: 0 0 5px;
    font-size: 20px;
}

  .tortour-hero__description p:last-child {
    margin-bottom: 0;
  }


  /* ============================
     BUTTON
  ============================ */

  .tortour-hero__button-wrapper {
    margin-top: 30px;
  }

  .tortour-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 20px;
    border-radius: 999px;

    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }




  /* ============================
     BADGE
  ============================ */

  .tortour-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 9px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    backdrop-filter: blur(4px);
  }

  .tortour-hero__badge-icon {
    font-size: 11px;
  }

  .tortour-hero__badge-text {
    white-space: nowrap;
  }


  /* ============================
     CUSTOM LIQUID
  ============================ */

  .tortour-hero__custom-liquid {
    margin-top: 15px;
  }


  /* ============================
     MOBILE
  ============================ */

  @media screen and (max-width: 749px) {

    .tortour-hero {
      min-height: 500px;
    }

    .tortour-hero__image {
      object-position: {{ section.settings.mobile_image_position }};
    }

    .tortour-hero__content {
      padding: 35px 22px;
    }

    .tortour-hero__content-inner {
      max-width: 100%;
    }

    .tortour-hero__logo-image {
      max-width: 130px;
      max-height: 32px;
    }

    .tortour-hero__logos {
      margin-bottom: 14px;
    }

    .tortour-hero__heading {
      max-width: 100%;
    }



    .tortour-hero__description {
      margin-top: 0;
      font-size: 18px;
    }

    .tortour-hero__button-wrapper {
      margin-top: 30px;
    }

    .tortour-hero__button {
      padding: 9px 18px;
      font-size: 15px;
    }


    .tortour-hero__content--middle {
    align-items: flex-end;
}
.tortour-hero__description p {
    font-size: 18px;
}
  }

 @media screen and (max-width: 399px) {
  .tortour-hero__description p {
    font-size: 16px;
}
 }