/*!********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!../Templates/Modules/Eyecatcher/frontend.scss ***!
  \********************************************************************************************************************************************************************************************************************************************************************/
/*  ==========================================================================
    MODULE
    ========================================================================== */
/*  ==========================================================================
    STORAGE
    ========================================================================== */
/*  ==========================================================================
    VARIABLES
    Collection of all variables

    INFO:
    - try to use variables as much as possible, it makes life easier
    - try to use meaningful prefixes, e.g. "$clr-" for color variables
      or "$fs-" for font-sizes
    ========================================================================== */
/*  ==========================================================================
    CLASS NAMES
    Collection of class-names.
    ========================================================================== */
/*  ==========================================================================
    COLORS
    List all colors concerning your project here

    INFO:
    - use for your colors at least the prefix "$clr-"
    ========================================================================== */
/*  ==========================================================================
    DEFAULTS
    ========================================================================== */
/*  ==========================================================================
    DIMENSIONS
    List of some recurring dimensions.

    INFO:
    - don't delete any unit!
    - do unit changes with care
    - try to use prefixes (f.e. "zi" for "z-index", "hgt" for "height", "wdt" for "width" etc.)
    - if possible try to define the main z-index values here
    - don't put all dimensions in here, only well selected ones (it's not a trashcan!)
    ========================================================================== */
/*  ==========================================================================
    MEDIA QUERIES
    Collection of media queries.
    ========================================================================== */
/*  ==========================================================================
    TYPOGRAPHY
    Font settings concerning your project.

    INFO:
    - don't delete anything!
    - use changes in here with care
    - try to use prefixes (f.e. "ff" for "font-family", "fs" for "font-size", "fw" for "font-weight" ecc.)
    - don't put all properties in here, only well selected ones (it's not a trashcan!)
    ========================================================================== */
/*  ==========================================================================
    FUNCIONS
    Collection of all functions
    ========================================================================== */
/*  ==========================================================================
    GENERAL
    Useful global functions
    ========================================================================== */
/*  ==========================================================================
    MIXINS
    Collection of all mixins (mind the ordering!)
    ========================================================================== */
/*  ==========================================================================
    GENERAL
    Useful global helpers

    INFO:
    - no specific naming convention (no prefix) except to not use camelcase if possible!
    - use it with care, its not a trash can!
    - contributions for the kickstarter are welcome!
    ========================================================================== */
/*
 * WRAPPER DIMENSIONS
 * generates wrapper padding & max-width
 */
/*  ==========================================================================
    TYPOGRAPHY
    Helpers to arrange type

    INFO:
    - all mixins should start with "typo" as prefix
    ========================================================================== */
/*  ==========================================================================
    CONTENT
    Helpers for Headlines/RichText/...

    INFO:
    - all mixins should start with "content" as prefix
    ========================================================================== */
/*
 * OVERLINE
 */
/*
 * HEADLINES
 */
/*
 * TABLE-WRAP
 */
/*
 * RICH-TEXT
 */
/*  ==========================================================================
    BUTTONS
    Helpers to edit buttons

    INFO:
    - all mixins should start with "btn" as prefix
    ========================================================================== */
/*  ==========================================================================
    IMAGES
    Collection of all helpers for images

    INFO:
    - all mixins should start with "img" as prefix
    ========================================================================== */
/*  ==========================================================================
    VISTA
    Helper to add base style to the vista output.

    INFO:
    - Usage example:
      @include vista(100vh, 75vh, 100vh, 60vh, true);
    ========================================================================== */
/*  ==========================================================================
    MISC
    ========================================================================== */
/*  ==========================================================================
    SLIDER ITEMS
    ========================================================================== */
/*  ==========================================================================
    POPUP
    ========================================================================== */
/*  ==========================================================================
    KEYFRAMES
    Collection of all keyframes (mind the ordering!)
    ========================================================================== */
/*  ==========================================================================
    LOADER
    ========================================================================== */
@keyframes loader-spinning {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loader-blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* STYLING
 * --------------------------------------------------------------------------- */
.DNA-module[data-id=Eyecatcher] {
  transition: transform 2s, opacity 2s;
  /* RESPONSIVE
   * --------------------------------------------------------------------------- */
}
.DNA-module[data-id=Eyecatcher].JS-effect {
  transform: translateY(5.5em);
  opacity: 0;
}
@media (max-width: 767px) {
  .DNA-module[data-id=Eyecatcher].JS-effect {
    transform: translateY(2.5em);
  }
}
.DNA-module[data-id=Eyecatcher] .DNA-module__list__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.DNA-module[data-id=Eyecatcher] .DNA-module__item {
  width: 100%;
  border-radius: 0.5em;
  overflow: hidden;
  position: relative;
}
.DNA-module[data-id=Eyecatcher] .DNA-module__item img {
  transition: transform 1s;
}
.DNA-module[data-id=Eyecatcher] .DNA-module__item video {
  width: 100%;
  height: auto;
}
@media (min-width: 1025px) {
  .DNA-module[data-id=Eyecatcher] .DNA-module__item:hover img {
    transform: scale(1.05);
  }
}
.DNA-module[data-id=Eyecatcher] .DNA-module__share {
  display: flex;
  align-items: center;
  position: absolute;
  right: 2em;
  bottom: 2em;
  border-radius: 0.5em;
  overflow: hidden;
  padding: 0.5em;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}
.DNA-module[data-id=Eyecatcher] .DNA-module__share__item {
  display: block;
  padding: 0.2em 1.2em;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: opacity 0.5s;
}
.DNA-module[data-id=Eyecatcher] .DNA-module__share__item > * {
  font-size: 1.9em;
}
@media (max-width: 1024px) {
  .DNA-module[data-id=Eyecatcher] .DNA-module__share__item > * {
    font-size: 1.4em;
  }
}
.DNA-module[data-id=Eyecatcher] .DNA-module__share__item:last-child {
  border-right: 0;
}
@media (min-width: 1025px) {
  .DNA-module[data-id=Eyecatcher] .DNA-module__share__item:hover {
    opacity: 0.5;
  }
}
.DNA-module[data-id=Eyecatcher] .DNA-module__link {
  display: flex;
  align-items: center;
  position: absolute;
  left: 2em;
  bottom: 2em;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.DNA-module[data-id=Eyecatcher] .DNA-module__link__wrap {
  display: flex;
  align-items: center;
  gap: 1em;
  font-weight: 300;
  border-radius: 0.5em;
  padding: 0.7em 1.5em;
  background-color: rgba(0, 0, 0, 0.25);
  transition: background-color 0.5s;
}
.DNA-module[data-id=Eyecatcher] .DNA-module__link__wrap > * {
  font-size: 1.8em;
}
@media (max-width: 1024px) {
  .DNA-module[data-id=Eyecatcher] .DNA-module__link__wrap > * {
    font-size: 1.5em;
  }
}
.DNA-module[data-id=Eyecatcher] .DNA-module__link__wrap i {
  font-size: 1em;
  transition: transform 0.5s;
}
.DNA-module[data-id=Eyecatcher] .DNA-module__link__wrap:hover {
  background-color: rgba(0, 0, 0, 0.45);
}
.DNA-module[data-id=Eyecatcher] .DNA-module__link__wrap:hover i {
  transform: translateX(0.5em);
}
.DNA-module[data-id=Eyecatcher] .DNA-module__count {
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  border-radius: 2em;
  display: flex;
  align-items: center;
  line-height: 1;
  padding: 0.5em 1em;
  position: absolute;
  bottom: 2em;
  right: 2em;
}
.DNA-module[data-id=Eyecatcher] .DNA-module__count > * {
  font-size: 1.6em;
}
@media (max-width: 1024px) {
  .DNA-module[data-id=Eyecatcher] .DNA-module__count > * {
    font-size: 1.3em;
  }
}
@media (max-width: 1024px) {
  .DNA-module[data-id=Eyecatcher] .DNA-module__count {
    padding: 0.5em 0.7em;
  }
}
.DNA-module[data-id=Eyecatcher] .DNA-module__arrows {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5em;
}
.DNA-module[data-id=Eyecatcher] .DNA-module__arrows__arrow {
  width: 5em;
  height: 5em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.DNA-module[data-id=Eyecatcher] .DNA-module__arrows__arrow i {
  transition: transform 0.5s;
}
@media (min-width: 1025px) {
  .DNA-module[data-id=Eyecatcher] .DNA-module__arrows__arrow[data-direction=prev]:hover i {
    transform: translateX(-5px);
  }
}
.DNA-module[data-id=Eyecatcher] .DNA-module__arrows__arrow[data-direction=next] {
  background-color: rgba(255, 255, 255, 0.2);
}
@media (min-width: 1025px) {
  .DNA-module[data-id=Eyecatcher] .DNA-module__arrows__arrow[data-direction=next]:hover i {
    transform: translateX(5px);
  }
}
@media (max-width: 1024px) {
  .DNA-module[data-id=Eyecatcher] .DNA-module__arrows__arrow {
    width: 3.5em;
    height: 3.5em;
  }
}
@media (max-width: 1024px) {
  .DNA-module[data-id=Eyecatcher] .DNA-module__count {
    right: 1em;
    bottom: 1em;
  }
  .DNA-module[data-id=Eyecatcher] .DNA-module__share {
    right: 1em;
    bottom: 1em;
    padding: 0.7em 0.2em;
  }
  .DNA-module[data-id=Eyecatcher] .DNA-module__link {
    left: 1em;
    bottom: 1em;
  }
  .DNA-module[data-id=Eyecatcher] .DNA-module__link__wrap {
    padding: 0.5em 1em;
  }
}
