@import "_reset.min.css";
:root {
  --white: #fff;
  --black: #000;
  --grey: #bbb;
  --greylight: #ddd;
  --black1: rgba(0, 0, 0, 0.05);
  --black2: rgba(0, 0, 0, 0.2);
  --black7: rgba(0, 0, 0, 0.7);
  --line: 1px solid var(--grey);
  --space1: 1em;
  --space1_5: 1.5em;
  --header_h_mobile: 135px;
  --header_h_desktop: 80px;
  --padding-mobile: 5%;
  --padding-desktop: auto;
  --max-width: 1920px;
  --medium-width: 768px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Amiri";
  src: url("../fonts/Amiri-Regular.woff2") format("woff2"), url("../fonts/Amiri-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Amiri";
  src: url("../fonts/Amiri-Italic.woff2") format("woff2"), url("../fonts/Amiri-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Amiri";
  src: url("../fonts/Amiri-Bold.woff2") format("woff2"), url("../fonts/Amiri-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Amiri";
  src: url("../fonts/Amiri-BoldItalic.woff2") format("woff2"), url("../fonts/Amiri-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
a {
  color: var(--black);
  text-underline-offset: 5px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
a:hover {
  color: var(--grey);
}
body {
  font-family: "Amiri", serif;
  font-size: 17px;
  line-height: 1.4;
  background-color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
h1 {
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2em;
}
h2 {
  font-weight: normal;
}
.small {
  font-size: 0.85em;
}
/* LAYOUT */
.container {
  width: 100%;
  height: 100vh;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem var(--padding-mobile);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.header {
  background-color: red;
  width: 100%;
  height: var(--header_h_mobile);
  min-height: 100px;
  background-color: var(--white);
  padding: var(--space1_5) 0 0 0;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header .logo,
.header .header_dx {
  flex: 0 140px;
  height: 50px;
}
.header .nav ul {
  display: flex;
  gap: var(--space1);
}
.header .nav ul li {
  list-style: none;
  position: relative;
}
.header .nav ul li a {
  text-decoration: none;
  color: var(--black);
  padding: 0.25em 0.5em;
  border: 0;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header .nav ul li a:hover {
  color: var(--grey);
}
.header .nav ul li.active > a {
  color: var(--grey);
}
.header .nav ul li ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 200px;
  position: absolute;
  top: -999em;
  left: -1.5em;
  padding: 3em 1em 1em 1em;
}
.header .nav ul li ul li {
  background-color: var(--greylight);
  padding: 0.25em 0.5em;
}
.header .nav ul li ul li:first-child {
  padding-top: 1em;
}
.header .nav ul li ul li:last-child {
  padding-bottom: 1em;
}
.header .nav ul li:hover ul {
  top: 1em;
}
.header .nav .mod-languages li {
  margin: 0 0 0 1rem !important;
}
.header .nav .mod-languages p {
  display: none!important;
}
/* CONTENT */
.content {
  padding: 2em 0;
  flex: 1;
  /* BLOG */
}
.content.home {
  flex: 0;
}
.content.one_two_cols {
  column-count: 1;
}
.content .colsx,
.content .coldx {
  flex: 0 100%;
}
.content .coldx img {
  margin-bottom: 0.5em;
}
.content .colcx,
.content .coldx {
  margin-top: 3.5em;
}
.content .colcx {
  margin: 0 auto;
  max-width: var(--medium-width);
}
.content .colcx.center {
  text-align: center;
}
.content .blog {
  flex: 0 100%;
}
.content .blog .items-leading > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: var(--line);
  padding-top: var(--space1);
  margin-bottom: 3em;
}
.content .blog .items-leading > div figure {
  flex: 0 100%;
  margin-bottom: var(--space1_5);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-timing-function: cubic-bezier(0, 0.99, 0.88, 0.99);
}
.content .blog .items-leading > div .item-content {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-timing-function: cubic-bezier(0, 0.99, 0.88, 0.99);
  flex: 0 100%;
  line-height: 2;
}
.content .blog .items-leading > div .item-content h2 {
  font-weight: 400;
}
.content .blog .items-leading > div:first-child {
  border-top: 0;
  padding-top: 0;
}
.content .row.opere {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  grid-gap: 1em;
}
.footer {
  padding: 3em 0 1em 0;
  text-align: center;
  width: 100%;
  position: relative;
}
.footer span {
  display: block;
}
.footer .freccia {
  font-size: 2em;
  padding: 0.5em;
  cursor: pointer;
  position: relative;
}
/* LIGHTGALLERY */
.lg-thumb-outer,
#lg-download,
#lg-zoom-in,
#lg-zoom-out,
#lg-actual-size,
.lg-autoplay-button,
.lg-fullscreen,
#lg-share {
  display: none !important;
}
.lg-backdrop {
  background-color: #fff !important;
}
.lg-toolbar .lg-icon,
.showtime-renderer-caption-title,
.lg-icon::before,
.lg-icon::after,
.lg-sub-html p {
  color: var(--black) !important;
  font-size: 1em !important;
}
#lg-counter {
  color: var(--black) !important;
  font-size: 0.75em !important;
  position: relative;
  top: 5px;
}
#lg-zoom-in::after {
  content: "" !important;
  display: block;
  background-image: url("https://www.archiviosalvo.com/templates/archiviosalvo/images/lg_zoom_in.svg") !important;
  background-repeat: no-repeat;
  background-size: contain !important;
  width: 12px;
  height: 12px;
  position: relative;
  top: 8px;
}
#lg-zoom-in:hover::after {
  background-image: url("https://www.archiviosalvo.com/templates/archiviosalvo/images/lg_zoom_in_hover.svg") !important;
}
.lg-next,
.lg-prev {
  background-color: transparent !important;
  display: none !important;
}
.lg-toolbar {
  background-color: transparent !important;
}
.lg-sub-html {
  background-color: rgba(255, 255, 255, 0) !important;
  bottom: 0 !important;
  position: relative;
}
.lg-toolbar .lg-icon:hover,
.lg-icon:hover::before,
.lg-icon:hover::after {
  color: var(--grey) !important;
}
/* loading logo*/
.lg-outer .lg-item {
  background: url("https://www.archiviosalvo.com/templates/archiviosalvo/images/logo_archivio_salvo.svg") no-repeat scroll center center transparent !important;
  background-size: 150px auto !important;
}
/* SLICKNAV */
.slicknav_menu {
  display: block;
}
.header .nav {
  display: none;
}
/* Desktop version */
@media (min-width: 960px) {
  .slicknav_menu {
    display: none;
  }
  .header .nav {
    display: flex;
  }
  .header {
    height: var(--header_h_desktop);
  }
  .header .header_sx {
    display: flex;
  }
  .header .header_sx .breadcrumb {
    padding-top: 0;
  }
  /* CONTENT */
  .content {
    /* BLOG */
  }
  .content .colsx {
    flex: 0 45%;
  }
  .content .coldx {
    flex: 0 45%;
  }
  .content .blog .items-leading > div figure,
  .content .blog .items-leading > div .item-content {
    flex: 0 48%;
  }
  .content .blog .items-leading > div:first-child figure,
  .content .blog .items-leading > div:first-child .item-content {
    flex: 0 100%;
  }
  .content.one_two_cols {
    column-count: 2;
    column-gap: 10%;
  }
  .content.one_two_cols p {
    break-inside: avoid;
  }
  #lg-zoom-in,
  .lg-next,
  .lg-prev {
    display: block !important;
  }
  #lg-counter {
    font-size: 0.9em !important;
  }
  .row.three_cols .colsx {
    flex: 0 25%;
  }
  .row.three_cols .colcx {
    flex: 0 50%;
  }
  .row.three_cols .coldx {
    flex: 0 25%;
  }
  .footer span {
    display: inline-block;
  }
  .footer .freccia {
    font-size: 2.5em;
    position: absolute;
    top: 0;
    right: 0;
  }
}
/* XL Desktop version */
@media (min-width: 1280px) {
  .content {
    /* CONTENT */
    /* BLOG */
  }
  .content .blog .items-leading > div figure {
    flex: 0 33%;
  }
  .content .blog .items-leading > div .item-content {
    flex: 0 64%;
  }
  .content.one_two_cols {
    column-count: 3;
    column-gap: 5%;
  }
}
