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
 */
html.glass-header .layout-container {
  padding-top: var(--fla-header-height);
  position: unset;
  background: transparent url("/themes/custom/fla/img/backgrounds/FLA-Desktop-UI_BG-Samples_01.01.jpg") center center no-repeat;
  background-size: cover;
}

html.glass-header .layout-container main {
  position: relative;
}

body {
  background-color: black;
}

[data-component-id="fla:embla_carousel"] {
  height: 100%;
}

[data-component-id="fla:embla_carousel"] .embla__container picture {
  text-align: center;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-component-id="fla:embla_carousel"] .embla__container img {
  margin: auto;
  padding: 0 0 !important;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.9));
}

[data-component-id="fla:embla_carousel"] .embla__container picture.fit-width img {
  width: calc(100% - 2rem);
  height: auto;
}

[data-component-id="fla:embla_carousel"] .embla__container picture.fit-height img {
  height: calc(100% - 2rem);
  width: auto;
}

@media screen and (max-width: 767px) and (max-aspect-ratio: 0.6) {
  [data-component-id="fla:embla_carousel"] .embla__container picture.orientation-landscape {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  [data-component-id="fla:embla_carousel"] .embla__container picture.orientation-landscape img {
    --rotated-img-height: min(
              calc(100dvh - var(--fla-header-height) - var(--fla-footer-height) - 2rem),
              calc((100dvw - 2rem) * var(--ar))
            )
          ;
    --rotated-img-width: calc(var(--rotated-img-height) / var(--ar) );
    position: absolute;
    top: 50%;
    left: 50%;
    height: var(--rotated-img-width) !important;
    width: var(--rotated-img-height) !important;
    max-width: unset;
    object-fit: unset;
    transform: translate(-50%, -50%) rotate(90deg);
    padding: 0 !important;
  }
}

@container embla-outer (min-width: 1024px) and (min-aspect-ratio: 1.01 / 1) {
  [data-component-id="fla:embla_carousel"] .embla {
    padding: 1rem 0;
  }
}

[data-component-id="fla:embla_carousel"] .embla-thumbs img {
  object-fit: 110% 120%;
  object-position: center;
}

[data-component-id="fla:embla_carousel"] .embla-thumbs img {
  border: 1px solid rgba(255, 255, 255, 0.618) !important;
}

[data-component-id="fla:embla_carousel"] .embla-thumbs .embla-thumbs__slide--selected img {
  border-color: white !important;
}

@media screen and (max-width: 1024px) {
  [data-component-id="fla:embla_carousel"] .embla-thumbs [data-component-id="fla:card"] {
    filter: drop-shadow(0 0 0.25rem rgba(0, 0, 0, 0.5));
  }
}

@container fu-card (min-width: 200px) and (min-height: 70px) {
  [data-component-id="fla:embla_carousel"] .embla-thumbs .fu-card:before {
    background-color: rgba(0, 0, 0, 0.35);
    backdrop-filter: grayscale(20%) blur(3px) brightness(110%);
  }
}

[data-component-id="fla:embla_carousel"] .embla-thumbs [data-component-id="fla:card"] {
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 1023px) {
  [data-fla-state*="do:1"] [data-component-id="fla:embla_carousel"] .embla-thumbs {
    display: none;
  }
}

.views-element-container, .views-element-container > .view, .views-element-container .view-content {
  position: relative;
  height: 100%;
}

main .layout-content {
  padding-bottom: var(--fla-dock-height);
}

/*# sourceMappingURL=fla-portfolio-samples2.css.map */