/* CSS Document */
/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
.ir {
  text-indent: 105%;
  white-space: nowrap;
  overflow: hidden;
  font-family: sans-serif !important;
}

@media screen and (max-width: 68.75em) {
  .menu-container {
    width: 80%;
    padding-right: 3em;
  }
  .event__calendar__box {
    width: 33%;
  }
  .footer__data__company h3 {
    display: block;
  }
  .footer__data__company p {
    display: block;
  }
  .footer__data__company span {
    display: block;
  }
  .footer__data__company span:not(:first-child)::before {
    display: none;
  }
}

@media screen and (max-width: 60em) {
  .slide-container {
    width: 90%;
  }
  .slide-close {
    left: -1em;
  }
  #slide-content {
    top: 1em;
    left: 1em;
    right: 1em;
    bottom: 1em;
  }
}

@media screen and (max-width: 54.5em) {
  .event__calendar {
    display: flex;
    flex-flow: row wrap;
  }
  .event__calendar__box {
    width: 50%;
  }
  .event__calendar__box > :not(.hidden) {
    position: static;
    padding: .5em;
    height: 100%;
    min-height: 17em;
  }
  .event__calendar__box::after {
    content: none;
    display: none;
  }
  .event__calendar .event__date {
    font-size: 1.8em;
  }
  .event__calendar-gallery .event__calendar__box > :not(.hidden) {
    min-height: 10em;
  }
}

@media screen and (max-width: 48em) {
  .logo a {
    margin: .5em 1em;
    height: 75px;
    width: 155px;
  }
  .menu-switcher {
    padding-left: 1.11111em;
  }
  .menu-main a {
    font-size: 1.3em;
  }
  .menu__title {
    font-size: 1.3em;
  }
  .banner__text h2, .banner__text h3 {
    font-size: 2.8em;
  }
  .strip {
    padding-bottom: 1em;
  }
  .page-content > .strip:first-child {
    padding-top: 8em;
  }
  .strip__title {
    font-size: 1.5em;
  }
  .strip__title-small {
    font-size: 1.2em;
  }
  .strip__slider {
    margin-bottom: 1em;
  }
  .strip__link__text {
    max-width: 40%;
    margin-right: 1em;
  }
  .strip__link h3 {
    font-size: 1.5em;
  }
  .strip:nth-child(2n) .strip__link__text {
    margin-left: 1em;
    margin-right: 0;
  }
  .event__date {
    font-size: 2.4em;
  }
  .slide__detail {
    display: block;
  }
  .slide__detail__socials {
    margin: 2em 0 0;
  }
  .slide__detail__socials .socials li {
    display: inline-block;
    margin: 0 .5em .5em;
  }
  .download__image, .download__form {
    display: block;
    width: 100%;
    margin: 0 0 2em;
  }
}

@media screen and (max-width: 37.5em) {
  .list-filters {
    display: block;
  }
  .list-filters p {
    width: 100%;
  }
}

@media screen and (max-width: 36em), screen and (max-device-width: 42em), screen and (max-device-width: 46em) and (orientation: landscape) {
  .hide-sd {
    display: none;
  }
  .show-sd {
    display: block;
  }
  .allinea-destra, .allinea-sinistra {
    float: none;
    max-width: 100%;
    margin: 0 auto 1em;
    display: block;
  }
  .allinea-destra[style*="float"], .allinea-sinistra[style*="float"] {
    float: none !important;
  }
  .opaque .logo a {
    height: 36px;
    width: 36px;
  }
  .header__content .accordion__switch {
    display: none;
    font-size: .6em;
  }
  .opaque .header__content .accordion__switch {
    display: block;
  }
  .m-open:not(.opaque) .menu-switcher {
    transform: translateY(-2.4em);
  }
  .menu-container {
    width: 100%;
    padding: 2em 1em 1em;
    text-align: center;
  }
  .menu__row {
    display: block;
  }
  .menu__column {
    width: auto;
  }
  .menu__text {
    margin-bottom: 5em;
  }
  .banner__slider {
    height: 75vh;
  }
  .banner__text {
    width: 90%;
  }
  .banner__text h2, .banner__text h3 {
    font-size: 1.8em;
  }
  .strip__image {
    height: 200%;
  }
  .strip__image__container::before {
    padding-bottom: 50%;
  }
  .strip__link {
    display: block;
  }
  .strip__link__text {
    width: auto;
    max-width: none;
    margin: 0 !important;
    padding: 1em;
  }
  .strip__link__text h3 {
    margin: .5em 0 0;
  }
  .event__date {
    font-size: 1.6em;
  }
  .event__title {
    font-size: 1em;
  }
  .event__calendar__box {
    height: auto;
  }
  .slide-container {
    width: 100%;
  }
  .slide-close {
    top: .5em;
    left: auto;
    right: .5em;
    color: #1d1d1d;
  }
  .slideOpened .slide-close {
    transform: none;
  }
  .slide__detail__gallery a {
    margin-bottom: 1em;
  }
  #slide-content {
    top: 3em;
  }
  .flex__column {
    margin-bottom: 1em;
  }
  .flex__column:not(:last-child) {
    margin-right: 1em;
  }
  .linklist li {
    display: block;
  }
  .linklist li:not(:last-child) {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }
  .area__title {
    font-size: 1.6em;
  }
  .download__form .buttons .button, .download__form .buttons button {
    display: block;
    width: 100%;
    margin: .3em 0 .5em;
  }
  .footer__data {
    display: block;
    text-align: center;
  }
  .footer__credits {
    width: auto;
    margin: 2em auto 0;
  }
}
/*# sourceMappingURL=media-queries.css.map */