html {
  --fla-heading-font-family: "CenturyGothicStd", "Inter", sans-serif;
  --fla-subheading-font-family: "Poppins";
  --fla-body-font-family: "Inter", "Helvetica Neue", "Arial", "Helvetica", "sans-serif";
  --fla-text-color-light: rgba(255,255,255,0.618);
}

body {
  --fla-dock-height: 0px;
}

body[data-fla-state*="do:1"] {
  --fla-dock-height: var(--fla-footer-height);
}

/**
 * TO BE INCLUDED WITHIN THE CONTENT CONTAINING ELEMENT
 * (WHERE THE SCOLLING DOES HAPPEN)
 */
/**
 * Must be applied not to the block element but the h1/h2/h3 directly
 * block must be display: contents
 */
/**
  NOTE: THIS IS SPECIFIC TO FONTS
  ARIAL: 0.318/2
 */
/**
 * What this does, is:
 * Given a Text like "First, Last and Always" we have the descender "y"
 * this mixin calculates the space that is taken by descenders and subtracts it
 * from the height of the element via negative margin bottom. By the way:
 * the descender space is also taken if we have text that does NOT have a descender!
 * When to use:
 * - The text block needs to sit bottom align with a specific design line or element
 *
 * When NOT to use:
 * - If another text block is placed below this one. in that case we need to use another mixin "centuryGothicDescendantEqualizer"
 *
 * Get the UnitsPerEM via "ttx -t head CenturyGothicStd.ttf" (fonttools)
 * Get the sTypoDescender via `ttx -t OS/2 CenturyGothicStd.ttf` (fonttools)
 * Calculate the Descener Ratio: Descender Ratio = |sTypoDescender| / unitsPerEm
 * Translate into CSS: margin-bottom: calc(-1*<DescenderRatio>)
 *
 * @see https://stackoverflow.com/questions/27631736/meaning-of-top-ascent-baseline-descent-bottom-and-leading-in-androids-font
 */
/**
 What we do here is:
 Based on this graphic: https://i.sstatic.net/LwZJF.png we cut off the
 distance from the bottom to the Descent
 */
/**
 * @deprecated Moved to a SDC component
 */
/**
 * Meant to glue the menu image before and after the content area so it can be used as glass background..
 */
/**
 * Use the content's image as a background below the content area to prevent boring grey areas
 */
/*
 * Use this for sections where the main content area must start below the header (not overlayed by the glass header)
 * to look fine u need to define a backkground image either for the body element or the layout container
 */
/**
 * Sticky title within the content area ( does apply only for phone design )
 */
@media screen and (max-width: 10768px) {
  header .block-page-title-block {
    padding-top: 0;
    line-height: 1;
    position: absolute;
    left: 0;
    top: calc(0.05*var(--fla-header-height));
  }
  header .block-page-title-block#block-pagetitle-desktop {
    display: none;
  }
  header .block-page-title-block h1 {
    --font-size: 1.5rem;
    text-align: left;
    font-size: var(--font-size);
    font-weight: 300;
    margin: 0 0;
    padding: 0;
    color: white;
    font-family: "CenturyGothicStd", "Helvetica Neue", Arial;
    margin-bottom: calc(-1 * 0.264 * 1.42857143 * 1em - 0.09 * 1em);
  }
}

@media screen and (max-width: 10768px) and (min-width: 731px) and (min-height: 931px) {
  header .block-page-title-block h1 {
    font-size: clamp(2.25rem, calc(0.5 * var(--fla-header-height)), 3.75rem);
  }
  header .block-page-title-block h1, header .block-page-title-block h1 a {
    color: rgba(255, 255, 255, 0.7);
  }
}

@media screen and (max-width: 10768px) and (min-width: 11192px) {
  header .block-page-title-block {
    pointer-events: none;
    padding-right: 10px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    text-transform: uppercase;
  }
  header .block-page-title-block h1 {
    font-size: 80px;
    margin: 0;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 200;
    letter-spacing: -2.5px;
  }
}

@media screen and (max-width: 10768px) {
  .region-content .block-page-title-block,
.region-content #block-page-title-portfolio-project {
    background-color: #666666;
    position: relative;
    font-size: 1.5rem;
    height: 40px;
    line-height: 1;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 10px;
    padding-right: 10px;
    display: none;
  }
  body[class*="html"].path-depth-3 .region-content .block-page-title-block, body[class*="html"].path-depth-4 .region-content .block-page-title-block, body[class*="html"].path-depth-5 .region-content .block-page-title-block, body[class*="html"].path-depth-6 .region-content .block-page-title-block, body[class*="html"].header-has-background .region-content .block-page-title-block, body[class*="html"].path-depth-3 .region-content #block-page-title-portfolio-project, body[class*="html"].path-depth-4 .region-content #block-page-title-portfolio-project, body[class*="html"].path-depth-5 .region-content #block-page-title-portfolio-project, body[class*="html"].path-depth-6 .region-content #block-page-title-portfolio-project, body[class*="html"].header-has-background .region-content #block-page-title-portfolio-project {
    display: block;
  }
  .region-content .block-page-title-block .title-background,
.region-content #block-page-title-portfolio-project .title-background {
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: 50% calc(50% - 0px);
    z-index: 1;
  }
  .region-content .block-page-title-block .title-background, .region-content .block-page-title-block .title-background:before,
.region-content #block-page-title-portfolio-project .title-background,
.region-content #block-page-title-portfolio-project .title-background:before {
    position: absolute;
    top: -10px;
    left: 0;
    bottom: 0;
    right: 0;
    display: inline-block;
  }
  .region-content .block-page-title-block .title-background:before,
.region-content #block-page-title-portfolio-project .title-background:before {
    content: " ";
    background-color: rgba(0, 0, 0, 0.25);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  }
  .region-content .block-page-title-block h1.page-title,
.region-content #block-page-title-portfolio-project h1.page-title {
    border-bottom: 1px solid black;
    padding: 10px 10px;
    margin: 0 auto;
    position: absolute;
    line-height: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    font-size: inherit;
    font-weight: normal;
  }
  .region-content .block-page-title-block h1.page-title, .region-content .block-page-title-block h1.page-title span.field,
.region-content #block-page-title-portfolio-project h1.page-title,
.region-content #block-page-title-portfolio-project h1.page-title span.field {
    color: rgba(255, 255, 255, 0.8);
  }
  .region-content .block-page-title-block h1.page-title span.field,
.region-content #block-page-title-portfolio-project h1.page-title span.field {
    font-size: 1.3125rem;
    text-transform: capitalize;
    font-weight: normal;
    line-height: 1;
  }
}

/*# sourceMappingURL=fla-page-title.css.map */