﻿/*
  [CSS Index]
*/

/* 2. reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
box-sizing: border-box;
}

html, body {
height: 100%;
line-height: 170%;
}

body {
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
display: block;
}

ol, ul {
list-style: none;
}

blockquote, q {
quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
content: "";
content: none;
}

table {
border-collapse: collapse;
border-spacing: 0;
}

*:focus {
outline: none;
}

/* remove dotted outline from links,
button and input element */
a:focus,
a:active,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner {
border: 0;
outline: 0;
}

/* IE10 scrollbar FIX */
html {
-ms-overflow-style: scrollbar;
}


/* 3. layout */
body {
font-family: 'Open Sans', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
text-align: left;
color: #fff;
background: #111;
 -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
   -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
-webkit-backface-visibility: hidden;
        backface-visibility: hidden;
width: 100%;
height: 100%;
overflow-x: hidden;
overflow-y: auto;
margin: 0;
padding: 0;
line-height: 1.5;
}

a {
color: #fff;
text-decoration: none;
outline: none;
 -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
   -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
-webkit-backface-visibility: hidden;
        backface-visibility: hidden;
-webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
     -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
-webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
}

a:hover,
a:visited,
a:active,
a:focus {
color: #fff;
text-decoration: none;
outline: none;
-webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
     -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
-webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
}

p {
font-size: 15px;
font-weight: 600;
letter-spacing: 0.05em;
color: #fff;
line-height: 2;
 -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
   -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
-webkit-backface-visibility: hidden;
        backface-visibility: hidden;
}

p a,
p a:hover {
color: #fff;
text-decoration: none;
outline: none;
-webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
     -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
-webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
}

strong {
font-weight: bold;
}

::-moz-selection {
background: #555;
color: #fff;
}

::selection {
background: #555;
color: #fff;
}

.nopadding {
padding: 0!important;
margin: 0!important;
}


/* 3.1. upper page */
.upper-page {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
left: 0;
top: 0;
margin: 0;
}


/* 4. dot */
.dot {
position: relative;
width: 16px!important;
height: 16px;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
margin: 16px auto;
text-align: center;
background: #fff;
-webkit-border-radius: 50%;
   -moz-border-radius: 50%;
    -ms-border-radius: 50%;
     -o-border-radius: 50%;
        border-radius: 50%;
z-index: 10;
}

.dot:after {
content: "";
position: absolute;
width: 10px;
height: 10px;
top: 3px;
left: 3px;
background: #fff;
-webkit-border-radius: 50%;
   -moz-border-radius: 50%;
    -ms-border-radius: 50%;
     -o-border-radius: 50%;
        border-radius: 50%;
-webkit-animation: pulse 2s infinite;
   -moz-animation: pulse 2s infinite;
    -ms-animation: pulse 2s infinite;
     -o-animation: pulse 2s infinite;
        animation: pulse 2s infinite;
-webkit-transform-origin: center center;
        transform-origin: center center;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  25% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(4.5);
   opacity: 0;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  25% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(4.5);
   opacity: 0;
  }
}


/* 5. center container */
.center-container {
position: absolute;
display: table;
table-layout: fixed;
width: 100%;
height: 100%;
background: none;
z-index: 15;
}

.center-block {
display: table-cell;
vertical-align: middle;
}

.center-container-menu {
position: relative;
display: table;
width: 100%;
height: 100%;
}

.center-block-menu {
display: table-cell;
vertical-align: middle;
}


/* 6. film grain */
.film-grain {
position: absolute;
width: 100%;
height: 100%;
top: 0;
background: url(https://www.open.online/pandemia-covid-disturbi-alimentari-anime-affamate/img/film-grain.gif) repeat top left;
        opacity: 0.1;
   -moz-opacity: 0.1;
-webkit-opacity: 0.1;
filter: alpha(opacity=10);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
-webkit-pointer-events: none;
   -moz-pointer-events: none;
        pointer-events: none;
overflow: hidden;
z-index: 2;
}

.film-grain.film-grain-all {
-webkit-border-radius: 50px;
   -moz-border-radius: 50px;
    -ms-border-radius: 50px;
     -o-border-radius: 50px;
        border-radius: 50px;
}

@media only screen and (max-width: 995px) {
  .film-grain.film-grain-all {
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
        -ms-border-radius: 0;
         -o-border-radius: 0;
            border-radius: 0;
  }

  .film-grain.film-grain-all.film-grain-all-owl {
    -webkit-border-radius: 50px;
       -moz-border-radius: 50px;
        -ms-border-radius: 50px;
         -o-border-radius: 50px;
            border-radius: 50px;
  }
}

.film-grain-50 {
position: absolute;
width: 50%;
height: 100%;
top: 0;
background: url(https://www.open.online/pandemia-covid-disturbi-alimentari-anime-affamate/img/film-grain.gif) repeat top left;
        opacity: 0.1;
   -moz-opacity: 0.1;
-webkit-opacity: 0.1;
filter: alpha(opacity=10);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
-webkit-pointer-events: none;
   -moz-pointer-events: none;
        pointer-events: none;
overflow: hidden;
z-index: 2;
}

@media only screen and (max-width: 995px) {
  .film-grain-50 {
    width: 100%;
  }
}

.film-grain.film-grain-fix {
top: -7px;
}

@media only screen and (max-width: 995px) {
  .film-grain-50 {
    top: auto;
  }
}

.film-grain-50.film-grain-all {
-webkit-border-radius: 50px 0 0 50px;
   -moz-border-radius: 50px 0 0 50px;
    -ms-border-radius: 50px 0 0 50px;
     -o-border-radius: 50px 0 0 50px;
        border-radius: 50px 0 0 50px;
}

@media only screen and (max-width: 995px) {
  .film-grain-50.film-grain-all {
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
        -ms-border-radius: 0;
         -o-border-radius: 0;
            border-radius: 0;
  }
}

.film-grain-50.film-grain-all.film-grain-all-reverse {
-webkit-border-radius: 0 50px 50px 0;
   -moz-border-radius: 0 50px 50px 0;
    -ms-border-radius: 0 50px 50px 0;
     -o-border-radius: 0 50px 50px 0;
        border-radius: 0 50px 50px 0;
}

@media only screen and (max-width: 995px) {
  .film-grain-50.film-grain-all.film-grain-all-reverse {
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
        -ms-border-radius: 0;
         -o-border-radius: 0;
            border-radius: 0;
  }
}


/* 7. to top arrow */
.to-top-arrow {
position: fixed;
width: 50px!important;
max-width: 50px;
height: 50px;
line-height: 50px;
left: 0;
right: 0;
bottom: -10px;
margin-left: auto;
margin-right: auto;
margin: 0 auto;
overflow: hidden;
font-size: 16px;
text-align: center;
color: #111;
background: #fff;
        opacity: 0;
   -moz-opacity: 0;
-webkit-opacity: 0;
filter: alpha(opacity=0);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
-webkit-transform: translateY(40px);
   -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
     -o-transform: translateY(40px);
        transform: translateY(40px);
-webkit-transition: all 1.5s ease;
   -moz-transition: all 1.5s ease;
   -ms-transition: all 1.5s ease;
     -o-transition: all 1.5s ease;
        transition: all 1.5s ease;
-webkit-border-radius: 50%;
   -moz-border-radius: 50%;
    -ms-border-radius: 50%;
     -o-border-radius: 50%;
        border-radius: 50%;
cursor: pointer;
z-index: 115;
}

.to-top-arrow.show {
bottom: 30px;
-webkit-transform: translateY(-20px);
   -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
     -o-transform: translateY(-20px);
        transform: translateY(-20px);
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

@media only screen and (max-width: 1200px) {
  .to-top-arrow.show {
    bottom: 20px;
  }
}

@media only screen and (max-width: 880px) {
  .to-top-arrow.show {
    bottom: 10px;
  }
}

.to-top-arrow:hover {
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}


/* 8. preloader */
.preloader-bg,
#preloader {
position: fixed;
width: 100%;
height: 100%;
overflow: hidden;
background: #000;
z-index: 999999;
}

#preloader {
display: table;
table-layout: fixed;
}

#preloader-status {
display: table-cell;
vertical-align: middle;
}

.preloader-position {
position: relative;
margin: 0 auto;
text-align: center;
-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
     -o-box-sizing: border-box;
        box-sizing: border-box;
}

.loader {
position: relative;
width: 45px;
height: 45px;
left: 50%;
top: auto;
margin-left: -22px;
margin-top: 2px;
-webkit-animation: rotate 1s infinite linear;
   -moz-animation: rotate 1s infinite linear;
    -ms-animation: rotate 1s infinite linear;
     -o-animation: rotate 1s infinite linear;
        animation: rotate 1s infinite linear;
border: 3px solid rgba(255, 255, 255, .15);
-webkit-border-radius: 50%;
   -moz-border-radius: 50%;
    -ms-border-radius: 50%;
     -o-border-radius: 50%;
        border-radius: 50%;
}

.loader span {
position: absolute;
width: 45px;
height: 45px;
top: -3px;
left: -3px;
border: 3px solid transparent;
border-top: 3px solid rgba(255, 255, 255, .75);
-webkit-border-radius: 50%;
   -moz-border-radius: 50%;
    -ms-border-radius: 50%;
     -o-border-radius: 50%;
        border-radius: 50%;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* 9. hero */
.hero-fullscreen {
position: absolute;
width: 100%;
height: 100vh;
left: 0;
top: 0;
overflow: hidden;
background-size: cover;
background-position: center center;
background-attachment: fixed;
background-image: url('https://www.open.online/pandemia-covid-disturbi-alimentari-anime-affamate/img/apertura2.jpg');
}

.hero-bg {
position: absolute;
width: 100%;
height: 100%;
overflow: hidden;
background-position: center center;
background-repeat: no-repeat;
-webkit-background-size: cover;
   -moz-background-size: cover;
    -ms-background-size: cover;
     -o-background-size: cover;
        background-size: cover;
}

.hero-fullscreen-FIX {
width: 100%;
height: 100%;
}

.hero-center-container {
position: relative;
display: table;
table-layout: fixed;
width: 100%;
height: 100%;
z-index: 1;
}

.hero-center-block {
display: table-cell;
vertical-align: middle;
}


/* 10. link effect */
a.link-effect {
position: relative;
display: inline-block;
text-decoration: none;
color: inherit;
}

a.link-effect::after {
content: "";
position: absolute;
display: block;
width: 100%;
height: 1px;
left: 0;
bottom: 0;
padding: 0;
background-color: #fff;
-webkit-transform-origin: left center;
   -moz-transform-origin: left center;
    -ms-transform-origin: left center;
        transform-origin: left center;
-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

a.link-effect:hover::after {
-webkit-transform-origin: left center;
   -moz-transform-origin: left center;
    -ms-transform-origin: left center;
        transform-origin: left center;
-webkit-transform: scale(0, 1);
   -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
     -o-transform: scale(0, 1);
        transform: scale(0, 1);
-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 12. section txt */
.section-txt p {
text-align: left;
}

.section-txt a,
.section-txt a:hover {
text-decoration: none;
font-weight: 600;
}


/* 13. section subtitle */
.subtitle {
position: relative;
 -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
   -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
-webkit-backface-visibility: hidden;
        backface-visibility: hidden;
z-index: 3;
}

.subtitle {
font-family: 'Open Sans', sans-serif;
font-size: 15px;
font-weight: 800;
text-align: center;
text-transform: uppercase;
color: #fff;
line-height: 1;
letter-spacing: -0.04em;
}

.subtitle.subtitle-left {
text-align: left;
}
.subtitle img {
    width: 30px;
}
.universo .subtitle img {
   position: relative;
   top: 7px;
   margin-right: 10px;
}

.header{
   background: transparent;
}

/* 14. section title */
.main-title-wrapper {
position: absolute;
width: 100%!important;
top: 50%;
left: 50%;
bottom: auto;
margin: 0;
-webkit-transform: translate(-50%, -50%);
   -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
z-index: 10;
}

.main-title-wrapper .occhiello{
   background: -moz-linear-gradient(left, #fb14f2 0%, #00c2ff 100%);
   background: -webkit-linear-gradient(left, #fb14f2 0%,#00c2ff 100%);
   background: linear-gradient(to right, #fb14f2 0%,#00c2ff 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   font-family: 'Open Sans', sans-serif;
   font-size: 18px;
   text-transform: uppercase;
   font-weight: 700;
   text-align: center;
   width: fit-content;
   margin: 0 auto;
}
h1.main-title {
   font-family: 'Open Sans', sans-serif;
   text-transform: inherit;
   font-size: 90px;
   font-style: normal;
   font-weight: 700;
   font-size: 88px;
   line-height: 88px;
   margin: 15px auto;
   text-align: center!important;
   letter-spacing: -0.04em;
   color: #fff;
   width: 100%;
   position: relative;
   z-index: 3;
}
.main-title-wrapper .sommario{
   font-family: 'PT Serif', serif;
   font-size: 17px;
   text-align: center;
   line-height: 24px;
   font-weight: 400;
   color: #fff;
   max-width: 720px;
   margin: 0 auto;
}
.main-title-wrapper .sommario.sottotitolo{
   font-size: 22px;
   font-weight: 600;
}

@media all and (min-width: 1920px) {
  h1.main-title {
    font-size: 105px;
   /*margin: -20px auto;*/
  }
}

@media only screen and (max-width: 1200px) {
  h1.main-title {
      font-size: 65px;
      margin: -11px auto;
  }
}

@media only screen and (max-width: 995px) {
   h1.main-title {
      font-size: 42px;
      margin: 10px auto;
      line-height: 44px;
   }
}

@media only screen and (max-width: 880px) {
   .main-title-wrapper .occhiello{
      font-size: 16px;
   }
   h1.main-title {
      font-size: 40px;
      margin: 10px auto;
      line-height: 42px;
   }
   .main-title-wrapper .sommario{
      font-size: 17px;
      line-height: 21px;
      color: #fff;
   }
   .main-title-wrapper .sommario br{
      display: none;
   }
}

.main-title.main-title-all {
   color: #fff;
   text-align: center;
}
p.firma {
   font-family: 'Open Sans', sans-serif;
   font-size: 14px;
   margin: 10px auto 40px;
}

.main-title.main-title-all span {
color: #fff;
}

@supports((text-stroke: 1px #fff) or (-webkit-text-stroke: 1px #fff)) {
  .main-title.main-title-all span {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
            text-stroke: 1px #fff;
    text-shadow: none;
  }
}

/* 15. vertical lines */
.vertical-lines-wrapper {
position: fixed;
width: 100%;
height: 100%;
overflow: hidden;
left: 0;
top: 0;
margin: 0;
-webkit-pointer-events: none;
   -moz-pointer-events: none;
        pointer-events: none;
z-index: 2;
}

.vertical-lines {
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.vertical-effect {
position: relative;
width: 25%;
height: 100%;
float: left;
-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
        box-sizing: border-box;
border-right: 1px solid rgba(119, 119, 119, .2);
}

.vertical-effect::before {
content: "";
position: absolute;
display: block;
width: 3px;
-webkit-animation-direction: normal;
   -moz-animation-direction: normal;
    -ms-animation-direction: normal;
     -o-animation-direction: normal;
        animation-direction: normal;
}

.vertical-effect:first-child::before,
.vertical-effect:last-child::before {
content: "";
position: absolute;
right: -2px;
}

.vertical-effect:first-child::before {
top: 0;
-webkit-animation: raindrop 6s ease-out infinite;
   -moz-animation: raindrop 6s ease-out infinite;
    -ms-animation: raindrop 6s ease-out infinite;
     -o-animation: raindrop 6s ease-out infinite;
        animation: raindrop 6s ease-out infinite;
background: -webkit-linear-gradient(top, rgba(225, 225, 225, 0), rgba(225, 225, 225, 1));
background: -ms-linear-gradient(top, rgba(225, 225, 225, 0), rgba(225, 225, 225, 1));
background: linear-gradient(top, rgba(225, 225, 225, 0), rgba(225, 225, 225, 1));
}

.vertical-effect:last-child::before {
bottom: 0;
-webkit-animation: raindrop-reverse 6s ease-out infinite;
   -moz-animation: raindrop-reverse 6s ease-out infinite;
    -ms-animation: raindrop-reverse 6s ease-out infinite;
     -o-animation: raindrop-reverse 6s ease-out infinite;
        animation: raindrop-reverse 6s ease-out infinite;
background: -webkit-linear-gradient(top, rgba(225, 225, 225, 1), rgba(225, 225, 225, 0));
background: -ms-linear-gradient(top, rgba(225, 225, 225, 1), rgba(225, 225, 225, 0));
background: linear-gradient(top, rgba(225, 225, 225, 1), rgba(225, 225, 225, 0));
}

@-webkit-keyframes raindrop {
  0% {
    top: -10%;
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100%;
    height: 35%;
  }
}
@-ms-keyframes raindrop {
  0% {
    top: -10%;
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100%;
    height: 35%;
  }
}
@keyframes raindrop {
  0% {
    top: -10%;
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100%;
    height: 35%;
  }
}

@-webkit-keyframes raindrop-reverse {
  0% {
    bottom: -10%;
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    bottom: 100%;
    height: 35%;
  }
}
@-ms-keyframes raindrop-reverse {
  0% {
    bottom: -10%;
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    bottom: 100%;
    height: 35%;
  }
}
@keyframes raindrop-reverse {
  0% {
    bottom: -10%;
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
   }
  100% {
    bottom: 100%;
    height: 35%;
  }
}


/* 16. works */
.works-list .works-list-wrapper {
   padding: 0 0 150px 0;
}

.works-list .works-list-item {
   position: relative;
}

@media only screen and (max-width: 995px) {
  .works-list .works-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
}

.works-list .works-list-item:not(:first-of-type) {
/*margin-top: 460px;*/
}

@media only screen and (max-width: 1200px) {
  .works-list .works-list-item:not(:first-of-type) {
    /*margin-top: 200px;*/
  }
}

@media only screen and (max-width: 995px) {
  .works-list .works-list-item:not(:first-of-type) {
    /*margin-top: 0;*/
  }
}

.works-list .works-list-item:nth-of-type(odd) .works-list-bg {
left: 0;
}

.works-list .works-list-item:nth-of-type(even) .works-list-bg {
right: 0;
}

.works-list .works-list-item-container {
max-width: 100%;
-webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
}

.works-list .works-list-row {
position: relative;
z-index: 4;
}

.works-list .works-list-content {
padding: 150px 150px;
background: #151515;
-webkit-border-radius: 50px 0 0 50px;
   -moz-border-radius: 50px 0 0 50px;
    -ms-border-radius: 50px 0 0 50px;
     -o-border-radius: 50px 0 0 50px;
        border-radius: 50px 0 0 50px;
}

@media only screen and (max-width: 1200px) {
  .works-list .works-list-content {
    padding: 55px 55px;
  }
}

@media only screen and (max-width: 995px) {
  .works-list .works-list-content {
    padding: 0 40px;
   margin: 0 auto;
  }
}

@media only screen and (max-width: 995px) {
  .works-list .works-list-content {
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
        -ms-border-radius: 0;
         -o-border-radius: 0;
            border-radius: 0;
  }
}

@media only screen and (max-width: 880px) {
  .works-list .works-list-content {
    padding: 0 30px;
  }
}

.works-list .works-list-content.works-list-content-reverse {
-webkit-border-radius: 0 20px 20px 0;
   -moz-border-radius: 0 20px 20px 0;
    -ms-border-radius: 0 20px 20px 0;
     -o-border-radius: 0 20px 20px 0;
        border-radius: 0 20px 20px 0;
}

@media only screen and (max-width: 995px) {
  .works-list .works-list-content.works-list-content-reverse {
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
        -ms-border-radius: 0;
         -o-border-radius: 0;
            border-radius: 0;
  }
}

.works-list .works-list-bg {
position: absolute;
width: calc(50% + 150px);
height: calc(100% + 300px);
top: 50%;
-webkit-transform: translateY(-50%);
        transform: translateY(-50%);
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
overflow: hidden;
-webkit-border-radius: 0 20px 20px 0;
   -moz-border-radius: 0 20px 20px 0;
    -ms-border-radius: 0 20px 20px 0;
     -o-border-radius: 0 20px 20px 0;
        border-radius: 0 20px 20px 0;
z-index: 3;
}

@media only screen and (max-width: 1200px) {
  .works-list .works-list-bg {
    width: calc(50% + 130px);
   height: calc(100% + 120px)
  }
}

.works-list .works-list-bg.works-list-bg-reverse {
-webkit-border-radius: 20px 0 0 20px;
   -moz-border-radius: 20px 0 0 20px;
    -ms-border-radius: 20px 0 0 20px;
     -o-border-radius: 20px 0 0 20px;
        border-radius: 20px 0 0 20px;
}

.works-list-content-wrapper {
/*padding-top: 190px;
margin-top: -1px;*/
}

@media only screen and (max-width: 995px) {
  .works-list-content-wrapper {
    padding-top: 60px
  }
}

.container-custom {
width: 100%;
padding-left: 0;
padding-right: 0;
margin-right: auto;
margin-left: auto;
}

@media only screen and (max-width: 995px) {
  .container-custom {
   padding: 0;
  }
}

.col-md-6-custom {
position: relative;
width: 100%;
min-height: 1px;
padding-left: 0;
padding-right: 0;
}

@media only screen and (max-width: 995px) {
  .col-md-6-custom {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 880px) {
  .col-lg-4-custom {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%;
  }

  .offset-lg-1-custom {
    margin-left: 0;
  }

  .offset-lg-7-custom {
    margin-left: 50%;
  }
}

/* 21. background color */
.bg-light {
background: #111;
}


/* 22. intro */
.intro {
position: relative;
font-family: 'Open Sans', sans-serif;
font-weight: 700;
text-transform: none;
line-height: 1.5;
text-align: left;
letter-spacing: normal;
color: #fff;
margin: 0 0 20px 0;
padding: 0;
z-index: 3;
}

.intro span {
color: #fff;
}

@supports((text-stroke: 1px #fff) or (-webkit-text-stroke: 1px #fff)) {
  .intro span {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
            text-stroke: 1px #fff;
    text-shadow: none;
  }
}

/* 24. overlay */
.gradient-overlay,
.gradient-overlay-home,
.gradient-overlay-home-2 {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: -moz-linear-gradient(bottom, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .1) 100%);
background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .1) 100%);
background: linear-gradient(to top, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
-webkit-pointer-events: none;
   -moz-pointer-events: none;
        pointer-events: none;
}

.gradient-overlay,
.gradient-overlay-home-2 {
z-index: 1;
}

.gradient-overlay-home {
z-index: 10;
}

/* 27. Swiper CUSTOM */
.swiper-container {
width: 100%;
height: 100%;
margin: 0 auto;
}

.hero-slider-img .swiper-slide {
position: relative;
float: left;
width: 100%;
height: 100%;
overflow: hidden;
}

.swiper-slide-txt {
position: relative;
width: 100%!important;
padding: 0;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
z-index: 1;
}

@media only screen and (max-width: 995px) {
  .swiper-slide-txt {
   padding: 0 10px;
   left: 0;
  }
}

.swiper-slide-txt-inner {
position: relative;
max-width: 600px;
}

@media only screen and (max-width: 995px) {
  .swiper-slide-txt-inner {
    max-width: 100%;
  }
}

.hero-slider-bg-controls {
position: absolute;
right: 45px;
bottom: 50px;
z-index: 10;
}

@media only screen and (max-width: 1200px) {
  .hero-slider-bg-controls {
    right: 35px;
    bottom: 40px;
  }
}

@media only screen and (max-width: 880px) {
  .hero-slider-bg-controls {
    right: 25px;
    bottom: 30px;
  }
}

.swiper-slide-controls {
display: inline-block;
width: 50px;
height: 50px;
line-height: 50px;
-webkit-transition: all .4s ease-out;
   -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
     -o-transition: all .4s ease-out;
        transition: all .4s ease-out;
font-size: 16px;
color: #111;
background: #fff;
cursor: pointer;
}

.swiper-slide-controls.slide-prev,
.swiper-slide-controls.slide-next {
position: relative;
width: 50px!important;
left: 0;
right: 0;
margin-left: auto;
margin-right: 6px;
text-align: center;
-webkit-border-radius: 50%;
   -moz-border-radius: 50%;
    -ms-border-radius: 50%;
     -o-border-radius: 50%;
        border-radius: 50%;
}

.swiper-slide-controls:hover {
-webkit-transition: all .4s ease-out;
   -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
     -o-transition: all .4s ease-out;
        transition: all .4s ease-out;
background: #fff;
}

@media only screen and (max-width: 880px) {
  .swiper-slide-controls.slide-next {
    margin-top: 10px;
  }
}

.swiper-slide-pagination {
position: absolute;
width: 8px;
left: 50px;
bottom: 48px;
z-index: 10;
}

@media only screen and (max-width: 1200px) {
  .swiper-slide-pagination {
    left: 40px;
    bottom: 38px;
  }
}

@media only screen and (max-width: 880px) {
  .swiper-slide-pagination {
    left: 30px;
    bottom: 28px;
  }
}

.swiper-slide-pagination::before {
content: "";
position: absolute;
top: -50px;
left: 0;
right: 0;
bottom: -50px;
background: none;
}

.swiper-slide-pagination .swiper-pagination-bullet {
position: relative;
width: 100%;
height: 6px;
background: none;
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.swiper-slide-pagination .swiper-pagination-bullet:last-child {
margin-bottom: 0;
}

.swiper-slide-pagination .swiper-pagination-bullet::before,
.swiper-slide-pagination .swiper-pagination-bullet::after {
content: "";
position: absolute;
width: 6px;
height: 6px;
top: 0;
left: 50%;
background: #fff;
margin: 0;
-webkit-border-radius: 50%;
   -moz-border-radius: 50%;
    -ms-border-radius: 50%;
     -o-border-radius: 50%;
        border-radius: 50%;
}

.swiper-slide-pagination .swiper-pagination-bullet::after {
content: "";
position: absolute;
width: 8px;
height: 8px;
top: 50%;
left: 50%;
margin: -4px 0 0 -1px;
-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
     -o-box-sizing: border-box;
        box-sizing: border-box;
-webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
     -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
-webkit-transform: scale(0);
   -moz-transform: scale(0);
    -ms-transform: scale(0);
     -o-transform: scale(0);
        transform: scale(0);
}

.swiper-slide-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
-webkit-transition: all 0.5s linear;
   -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
     -o-transition: all 0.5s linear;
        transition: all 0.5s linear;
-webkit-transform: scale(1.8);
   -moz-transform: scale(1.8);
    -ms-transform: scale(1.8);
     -o-transform: scale(1.8);
        transform: scale(1.8);
background: #fff;
}

.slider-progress-bar {
position: absolute;
top: 0;
left: 0;
z-index: -1;
}

.circle-svg {
position: relative;
-webkit-transform: scale(1) rotate(-90deg);
   -moz-transform: scale(1) rotate(-90deg);
    -ms-transform: scale(1) rotate(-90deg);
     -o-transform: scale(1) rotate(-90deg);
        transform: scale(1) rotate(-90deg);
-webkit-transition: transform .4s ease;
   -moz-transition: transform .4s ease;
    -ms-transition: transform .4s ease;
     -o-transition: transform .4s ease;
        transition: transform .4s ease;
-webkit-transition: -webkit-transform .4s ease;
   -moz-transition: -moz-transform .4s ease;
    -ms-transition: -ms-transform .4s ease;
     -o-transition: -o-transform .4s ease;
        transition: transform .4s ease;
}

.circle-svg circle,
.circle {
fill: none;
stroke: #fff;
stroke-dasharray: 3;
stroke-width: 1px;
}

.slider-progress-bar.slider-active .circle {
stroke-dashoffset: 200px;
-webkit-transition: linear 4s stroke-dashoffset;
        transition: linear 4s stroke-dashoffset;
}

.swiper-slide-controls-play-pause {
position: absolute;
width: 50px;
height: 50px;
line-height: 50px;
right: 171px;
bottom: 50px;
-webkit-transition: all .4s ease-out;
   -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
     -o-transition: all .4s ease-out;
        transition: all .4s ease-out;
-webkit-border-radius: 50%;
   -moz-border-radius: 50%;
    -ms-border-radius: 50%;
     -o-border-radius: 50%;
        border-radius: 50%;
font-size: 16px;
color: #fff;
background: none;
cursor: pointer;
z-index: 10;
}

@media only screen and (max-width: 1200px) {
  .swiper-slide-controls-play-pause {
    right: 161px;
    bottom: 40px;
  }
}

@media only screen and (max-width: 880px) {
  .swiper-slide-controls-play-pause {
    right: 151px;
    bottom: 30px;
  }
}

.swiper-slide-controls-play-pause:hover {
-webkit-transition: all .4s ease-out;
   -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
     -o-transition: all .4s ease-out;
        transition: all .4s ease-out;
background: none;
}

.swiper-slide-controls-play-pause i,
.swiper-slide-controls-play-pause i {
-webkit-transition: all .4s ease-out;
   -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
     -o-transition: all .4s ease-out;
        transition: all .4s ease-out;

}

.swiper-slide-controls-play-pause.slider-on-off i::before,
.slider-on-off-switch {
content: "\f478";
position: relative;
width: 50px!important;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
text-align: center;
}

.swiper-container-wrapper {
padding-top: 0!important;
height: 100%!important;
}

.swiper-slide {
overflow: hidden;
}

.swiper-slide-inner {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: #111;
-webkit-backface-visibility: hidden;
        backface-visibility: hidden;
}

.swiper-slide-inner-bg {
position: absolute;
width: 100%;
height: 100%;
background-position: center center;
-webkit-background-size: cover;
   -moz-background-size: cover;
    -ms-background-size: cover;
     -o-background-size: cover;
        background-size: cover;
-webkit-transition: opacity .6s ease-in-out, transform 2s ease .7s;
   -moz-transition: opacity .6s ease-in-out, transform 2s ease .7s;
    -ms-transition: opacity .6s ease-in-out, transform 2s ease .7s;
     -o-transition: opacity .6s ease-in-out, transform 2s ease .7s;
        transition: opacity .6s ease-in-out, transform 2s ease .7s;
-webkit-transform: scale(1.15);
   -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
     -o-transform: scale(1.15);
        transform: scale(1.15);
        opacity: 0.2;
   -moz-opacity: 0.2;
-webkit-opacity: 0.2;
filter: alpha(opacity=20);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
}

.swiper-slide-active .swiper-slide-inner-bg {
-webkit-transform: scale(1);
   -moz-transform: scale(1);
    -ms-transform: scale(1);
     -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.swiper-slide-inner-bg-2 {
position: absolute;
width: 100%;
height: 100%;
background-position: center center;
-webkit-background-size: cover;
   -moz-background-size: cover;
    -ms-background-size: cover;
     -o-background-size: cover;
        background-size: cover;
-webkit-transition: opacity .6s ease-in-out, transform 2s ease .7s;
   -moz-transition: opacity .6s ease-in-out, transform 2s ease .7s;
    -ms-transition: opacity .6s ease-in-out, transform 2s ease .7s;
     -o-transition: opacity .6s ease-in-out, transform 2s ease .7s;
        transition: opacity .6s ease-in-out, transform 2s ease .7s;
        opacity: 0.2;
   -moz-opacity: 0.2;
-webkit-opacity: 0.2;
filter: alpha(opacity=20);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
}

.swiper-slide-active .swiper-slide-inner-bg-2 {
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.swiper-slide-inner-txt {
position: absolute;
width: 80%!important;
margin-left: auto;
margin-right: auto;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
   -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
-webkit-transition: opacity .4s ease;
   -moz-transition: opacity .4s ease;
    -ms-transition: opacity .4s ease;
     -o-transition: opacity .4s ease;
        transition: opacity .4s ease;
-webkit-user-select: none;
   -moz-user-select: none;
    -ms-user-select: none;
        user-select: none;
        opacity: 0;
   -moz-opacity: 0;
-webkit-opacity: 0;
filter: alpha(opacity=0);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
z-index: 15;
}

.swiper-slide-active .swiper-slide-inner-txt {
-webkit-transition: opacity 1.8s ease 1.2s;
   -moz-transition: opacity 1.8s ease 1.2s;
    -ms-transition: opacity 1.8s ease 1.2s;
     -o-transition: opacity 1.8s ease 1.2s;
        transition: opacity 1.8s ease 1.2s;
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.diario video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}
.diario.ultimoTeresa video{
   object-position: center top;
}

.swiper-scrollbar {
position: absolute;
left: 0;
right: 0;
bottom: 64px;
margin-left: auto;
margin-right: auto;
width: 300px!important;
height: 1px;
background: rgba(119, 119, 119, .75);
-webkit-border-radius: 0;
   -moz-border-radius: 0;
    -ms-border-radius: 0;
     -o-border-radius: 0;
        border-radius: 0;
z-index: 15;
}

@media only screen and (max-width: 995px) {
  .swiper-scrollbar {
    display: none;
   visibility: hidden;
  }
}

.swiper-scrollbar-drag {
position: relative;
width: 16px!important;
height: 16px;
top: -8px;
left: 0;
-webkit-border-radius: 50%;
   -moz-border-radius: 50%;
    -ms-border-radius: 50%;
     -o-border-radius: 50%;
        border-radius: 50%;
background: #fff;
}

.swiper-scrollbar-drag::after {
content: "";
position: absolute;
width: 10px!important;
height: 10px;
top: 3px;
left: 3px;
background: #fff;
-webkit-border-radius: 50%;
   -moz-border-radius: 50%;
    -ms-border-radius: 50%;
     -o-border-radius: 50%;
        border-radius: 50%;
-webkit-animation: pulse 2s infinite;
   -moz-animation: pulse 2s infinite;
    -ms-animation: pulse 2s infinite;
     -o-animation: pulse 2s infinite;
        animation: pulse 2s infinite;
-webkit-transform-origin: center center;
        transform-origin: center center;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  25% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(4.5);
   opacity: 0;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  25% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(4.5);
   opacity: 0;
  }
}

.swiper-container-wrapper-2 {
padding-top: 0!important;
height: 100%!important;
}

.swiper-container-wrapper-2 .swiper-slide {
height: 30%;
top: -webkit-calc(35% - 50px);
top: -moz-calc(35% - 50px);
top: calc(35% - 50px);
overflow: visible;
}

.swiper-container-wrapper-2 .swiper-description {
position: absolute;
width: 100%;
height: auto;
bottom: -120px;
padding: 0;
-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
        box-sizing: border-box;
-webkit-pointer-events: none;
   -moz-pointer-events: none;
        pointer-events: none;
z-index: 15;
}

@media only screen and (max-width: 1200px) {
  .swiper-container-wrapper-2 .swiper-description {
    bottom: -110px;
  }
}

@media only screen and (max-width: 880px) {
  .swiper-container-wrapper-2 .swiper-description {
    bottom: -100px;
  }
}

.post-heading {
position: relative;
font-family: 'Open Sans', sans-serif;
font-size: 20px;
font-weight: 400;
line-height: 1.5;
color: #fff;
 -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
   -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
-webkit-backface-visibility: hidden;
        backface-visibility: hidden;
margin: -75px auto 0 auto;
z-index: 3;
}

@media only screen and (max-width: 880px) {
  .post-heading {
    font-size: 15px;
  }
}

.post-heading {
font-family: 'Open Sans', sans-serif;
font-weight: 800;
text-align: center;
text-transform: uppercase;
color: #fff;
letter-spacing: -0.04em;
}

.post-heading span {
color: #fff;
letter-spacing: 0.05em;
}

@supports((text-stroke: 1px #fff) or (-webkit-text-stroke: 1px #fff)) {
  .post-heading span {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
            text-stroke: 1px #fff;
    text-shadow: none;
  }
}

.swiper-slide-inner-bg-3 {
position: absolute;
width: 100%;
height: 100%;
background-position: center center;
-webkit-background-size: cover;
   -moz-background-size: cover;
    -ms-background-size: cover;
     -o-background-size: cover;
        background-size: cover;
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.swiper-slide-active .swiper-slide-inner-bg-3 {
        opacity: 1;
   -moz-opacity: 1;
-webkit-opacity: 1;
filter: alpha(opacity=100);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.swiper-slide-inner-txt-2 {
position: absolute;
width: 80%!important;
margin-left: auto;
margin-right: auto;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
   -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
-webkit-user-select: none;
   -moz-user-select: none;
    -ms-user-select: none;
        user-select: none;
z-index: 15;
}

.swiper-scrollbar.swiper-scrollbar-2 {
display: none;
visibility: hidden;
}

/* 31. headers */
.intro {
font-size: 40px;
margin: -10px 0 -5px 0;
}

@media all and (min-width: 1920px) {
  .intro {
    font-size: 40px;
  }
}

@media only screen and (max-width: 995px) {
  .intro {
    font-size: 30px;
   margin: -7px 0 -5px 0;
  }
}

@media only screen and (max-width: 880px) {
  .intro {
    font-size: 20px;
   margin: -6px 0 -4px 0;
  }
}

.intro span {
font-size: 40px;
}

@media all and (min-width: 1920px) {
  .intro span {
    font-size: 40px;
  }
}

@media only screen and (max-width: 995px) {
  .intro span {
    font-size: 30px;
  }
}

@media only screen and (max-width: 880px) {
  .intro span {
    font-size: 20px;
  }
}

.intro.intro-all {
font-size: 40px;
margin: -8px 0 -6px 0;
text-transform: uppercase;
line-height: 1.25;
}

.intro.intro-all {
font-family: 'Open Sans', sans-serif;
font-weight: 800;
text-align: left;
text-transform: uppercase;
color: #fff;
letter-spacing: -0.04em;
}

@media all and (min-width: 1920px) {
  .intro.intro-all {
    font-size: 40px;
  }
}

@media only screen and (max-width: 995px) {
  .intro.intro-all {
    font-size: 30px;
   margin: -4px 0;
  }
}

@media only screen and (max-width: 880px) {
  .intro.intro-all {
    font-size: 30px;
  }
}

.intro.intro-all span {
font-size: 40px;
}

@media all and (min-width: 1920px) {
  .intro.intro-all span {
    font-size: 40px;
  }
}

@media only screen and (max-width: 995px) {
  .intro.intro-all span {
    font-size: 30px;
  }
}

@media only screen and (max-width: 880px) {
  .intro.intro-all span {
    font-size: 30px;
  }
}

.more-wraper {
margin: 3px auto;
}

.more-wraper.more-wraper-form {
margin: 19px auto 0 auto;
}

.section-txt p {
margin: 0 auto;
}

@media only screen and (max-width: 995px) {
  .section-txt p {
    padding: 0;
  }
}

.post-title {
font-size: 15px;
margin: -4px auto;
}

.owl-nav-custom-history,
.owl-nav-custom-works {
margin: 3px auto;
}

/* 33. extras */
.subtitle.subtitle-news {
text-align: center!important;
}

.intro.intro-last {
margin-left: 15px!important;
}

/* 34. dots */
.dots {
position: absolute;
display: block;
width: -webkit-calc(33% - 300px);
width: -moz-calc(33% - 300px);
width: calc(33% - 300px);
height: -webkit-calc(100% - 300px);
height: -moz-calc(100% - 300px);
height: calc(100% - 300px);
top: 150px;
right: 150px;
bottom: 150px;
left: 150px;
-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
        box-sizing: border-box;
-webkit-pointer-events: none;
   -moz-pointer-events: none;
        pointer-events: none;
z-index: 1; z-index: 10;
}

@media only screen and (max-width: 880px) {
  .dots {
    display: none;
   visibility: hidden;
  }
}

.dots-reverse {
position: absolute;
display: block;
width: -webkit-calc(33% - 300px);
width: -moz-calc(33% - 300px);
width: calc(33% - 300px);
height: -webkit-calc(100% - 300px);
height: -moz-calc(100% - 300px);
height: calc(100% - 300px);
top: 150px;
right: 0;
bottom: 150px;
left: 66%;
margin-left: 150px;
-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
        box-sizing: border-box;
-webkit-pointer-events: none;
   -moz-pointer-events: none;
        pointer-events: none;
z-index: 1; z-index: 10;
}

@media all and (min-width: 1920px) {
  .dots-reverse {
    margin-left: 180px;
  }
}

@media only screen and (max-width: 1200px) {
  .dots-reverse {
    margin-left: 150px;
  }
}

@media only screen and (max-width: 880px) {
  .dots-reverse {
    display: none;
   visibility: hidden;
  }
}

.the-dots {
position: relative;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0);
background-image: radial-gradient(rgba(119, 119, 119, .75) 5%, transparent 0);
background-size: 30px 30px;
}


/* 35. parallax */
.parallax-window {
min-height: 100%;
height: 100%;
background: transparent;
}


/* 36. home */
.home-page,
.footer-page {
position: relative;
width: 100%;
height: 100vh;
text-align: center;
}
.main-content{
   background: #111;
}

@media only screen and (max-width: 880px) {
  .home-page {
    z-index: 1;
  }
}

/* 37. divider */
.inner-divider,
.inner-divider-half,
.inner-divider-ultra-half,
.inner-divider-50,
.inner-divider-last {
position: relative;
width: 100%;
margin: 0 auto;
background: none;
z-index: -1;
}

.inner-divider {
height: 200px;
}

@media only screen and (max-width: 995px) {
  .inner-divider {
    height: 150px;
  }
}

.inner-divider-half {
height: 75px;
}

@media only screen and (max-width: 995px) {
  .inner-divider-half {
    height: 75px;
  }
}

.inner-divider-ultra-half {
height: 50px;
}

@media all and (min-width: 1920px) {
  .inner-divider-ultra-half {
    height: 75px;
  }
}

@media only screen and (max-width: 880px) {
  .inner-divider-ultra-half {
    height: 50px;
  }
}

.inner-divider-50 {
height: 50px;
}

@media only screen and (max-width: 880px) {
  .inner-divider-50 {
    height: 30px;
  }
}

.inner-divider-last {
height: 300px;
}

@media only screen and (max-width: 1200px) {
  .inner-divider-last {
    height: 290px;
  }
}

@media only screen and (max-width: 995px) {
  .inner-divider-last {
    height: 230px;
  }
}

@media only screen and (max-width: 995px) {
  .inner-divider.inner-divider-showcase {
   height: 75px;
  }
}

.mobile-visible {
display: none;
visibility: hidden;
}

@media only screen and (max-width: 995px) {
  .mobile-visible {
    display: block;
    visibility: visible;
  }

  .mobile-hidden {
    display: none;
    visibility: hidden;
  }
}

.extra-margin-all,
.extra-margin-owl {
position: relative;
height: auto;
min-height: inherit;
overflow: hidden;
margin-left: 0;
margin-right: 0;
background: none;
}

h6 {
display: none;
visibility: hidden;
}

/* 38. nodo */
.nodo .subtitle{
   font-family: 'Open Sans', sans-serif;
   text-transform: inherit;
   background: -webkit-linear-gradient(left, #fb14f2 0%, #00c2ff 100%);
   -webkit-background-clip: text;
   -webkit-text-stroke: 3px transparent;
   color: #111111;
   text-shadow: none;
   font-size: 90px;
   padding-bottom: 15px;
   margin: 40px auto;
}
.nodo .intro{
   font-family: 'Open Sans', sans-serif;
   font-size: 50px;
   text-align: center;
   line-height: 54px;
   margin: 0;
   padding-bottom: 5px;
}
.nodo .intro span{
   font-size: 50px;
}
.nodo .intro.colorato{
   width: fit-content;
   margin: 30px auto 0;
   padding: 0 40px 5px;
}
.nodo .intro.colorato:before{
   content: "";
   display: block;
   width: 0;
   height: 100%;
   background: #fb14f2;
   background: -moz-linear-gradient(left, #fb14f2 0%, #00c2ff 100%);
   background: -webkit-linear-gradient(left, #fb14f2 0%,#00c2ff 100%);
   background: linear-gradient(to right, #fb14f2 0%,#00c2ff 100%);
   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fb14f2', endColorstr='#00c2ff',GradientType=1 );
   position: absolute;
   z-index: -1;
   left: 50%;
   transform: translateX(-50%);
   border-radius: 20px;
   -webkit-transition: all 1000ms ease-out;
   -moz-transition: all 1000ms ease-out;
    -ms-transition: all 1000ms ease-out;
     -o-transition: all 1000ms ease-out;
        transition: all 1000ms ease-out;
}
.nodo .intro.colorato.attivo:before{
   width: 100%;
}
.nodo .paragraph-two-columns{
   font-family: 'PT Serif', serif;
   font-size: 17px;
   line-height: 24px;
   text-align: justify;
   column-count: 2;
   -moz-column-count: 2;
   -webkit-column-count: 2;
   column-gap: 2rem;
   -moz-column-gap: 2rem;
   -webkit-column-gap: 2rem;
   width: 100%;
   max-width: 840px;
   margin: 0 auto;
   padding: 15px;
}
.nodo .paragraph-two-columns i{
   font-style: italic;
}
.nodo .paragraph-two-columns.teresa{
   text-align: center;
   column-count: 1;
   -moz-column-count: 1;
   -webkit-column-count: 1;
}
.nodo.mappa .intro{
   max-width: 600px;
   margin: 0 auto;
   text-align: right;
   font-size: 30px;
   line-height: 30px;
}
.nodo.mappa .intro span{
   font-size: 30px;
}

/* 39. diario */
.works-list .works-list-item {
    margin: 100px auto;
}
.works-list .works-list-item.vuoto {
   margin: 0 auto;
}
.works-list .diario .works-list-item-container{
    max-width: 1024px;
    margin: 0 auto;
}
.works-list .diario .works-list-content{
   position: relative;
   padding: 30px 40px;
   -webkit-border-radius: 20px;
   -moz-border-radius: 20px;
   -ms-border-radius: 20px;
   -o-border-radius: 20px;
   border-radius: 20px;
   background: #fb14f2;
   background: -moz-linear-gradient(left,  #fb14f2 0%, #00c2ff 100%);
   background: -webkit-linear-gradient(left,  #fb14f2 0%,#00c2ff 100%);
   background: linear-gradient(to right,  #fb14f2 0%,#00c2ff 100%);
   filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fb14f2', endColorstr='#00c2ff',GradientType=1 );
   height: 300px;
}
.works-list .diario .works-list-content:before{
   content: "";
   display: block;
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, .3);
   border-radius: 20px;
   opacity: 0;
}
.works-list .diario .works-list-bg{
   /*height: 600px;*/
}
.works-list .diario .works-list-row {
    margin-right: 0;
    margin-left: 0;
}
.works-list .diario .intro.intro-all{
   font-family: 'Open Sans', sans-serif;
   font-size: 50px;
   line-height: 50px;
   margin-top: 10px;
   /*letter-spacing: 1px;*/
   font-weight: 700;
   text-transform: inherit;
}
.works-list .diario .intro.intro-all span{
   font-size: 50px;
}
.works-list .diario.universo .intro.intro-all{
   font-family: 'PT Serif', serif;
   text-transform: none;
   font-size: 17px;
   line-height: 24px;
   margin-top: 10px;
   font-weight: 300;
}
.works-list .universo .works-list-content{
   background: #2F2F2F;
}
.works-list .works-list-item.diario{
    margin: 250px auto;
}
.works-list .works-list-item.diario:last-child{
    margin-bottom: 0;
}
.works-list .universo .subtitle{
   background: -moz-linear-gradient(left,  #fb14f2 0%, #00c2ff 100%);
   background: -webkit-linear-gradient(left,  #fb14f2 0%,#00c2ff 100%);
   background: linear-gradient(to right,  #fb14f2 0%,#00c2ff 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   font-family: 'Open Sans', sans-serif;
   font-size: 18px;
}
.works-list .works-list-item.diario .col-lg-4-custom{
   position: relative;
   height: 300px;
   overflow: hidden;
   border-radius: 20px;
}
.works-list .works-list-item.diario .wave-play{
   position: absolute;
   width: 40px;
   height: 40px;
   top: 20px;
   right: 20px;
   background-image: url(https://www.open.online/pandemia-covid-disturbi-alimentari-anime-affamate/img/icon-play.svg);
   background-repeat: no-repeat;
   background-size: contain;
   cursor: pointer;
}
.works-list .works-list-item.diario .wave-play.attivo{
   background-image: url(https://www.open.online/pandemia-covid-disturbi-alimentari-anime-affamate/img/icon-pause.svg);
}
.waveform{
   position: absolute;
   width: 100%;
   left: 0;
   bottom: -100px;
   bottom: 0;
}

/* 40. small */
.works-list .small .works-list-item-container{
   max-width: 50%;
   flex: 0 0 50%;
   -webkit-box-flex: 0;
   -ms-flex: 0 0 50%;
}
.works-list .works-list-item.small{
   max-width: 1024px;
   display: flex;
   align-items: center;
   margin: 100px auto 0;
}
.works-list .works-list-item.small .dida{
   font-family: 'Open Sans', sans-serif;
   font-size: 18px;
   margin: 10px 0;
}
.senza-cure .works-list .works-list-item.small .dida {
   font-size: 20px;
   background: -moz-linear-gradient(left, #fb14f2 0%, #00c2ff 100%);
   background: -webkit-linear-gradient(left, #fb14f2 0%,#00c2ff 100%);
   background: linear-gradient(to right, #fb14f2 0%,#00c2ff 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   font-weight: 500;
}
.works-list .works-list-item.small .col-lg-4-custom{
   flex: 0 0 100%;
   max-width: 100%;
   margin-left: 0;
}
.works-list .small .works-list-bg{
   height: auto;
   width: 50%;
   border-radius: 20px;
   border-radius: 20px;
   position: relative;
   top: 0;
   transform: none;
   background-image: none;
}
.works-list .small.two .works-list-bg{
   width: 100%;
}
.works-list .small .works-list-bg img{
    display: block;
    max-width: 100%;
}
.works-list .small .works-list-bg img.icon-play{
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 3;
   width: 50px;
   height: 50px;
}
.works-list .small .works-list-content{
   padding: 50px;
   border-radius: 0;
   background: transparent;
}
.small .intro.intro-all, .citazionePerMobile .intro.intro-all{
   position: relative;
   font-family: 'PT Serif', serif;
   font-size: 32px;
   font-style: italic;
   text-transform: none;
   font-weight: normal;
}
.small .container_citazione, .citazionePerMobile .container_citazione{
   position: relative;
}
.small .intro.intro-all .cit, .citazionePerMobile .intro.intro-all .cit{
   position: absolute;
   top: -50px;
   left: -20px;
}
.small .intro.intro-all .cit2, .citazionePerMobile .intro.intro-all .cit2{
   position: absolute;
   transform: rotate(180deg);
   bottom: -20px;
   right: -20px;
}
.small .intro.intro-all p, .citazionePerMobile .intro.intro-all p{
   text-align: right;
   /*font-family: 'Open Sans', sans-serif;*/
   font-family: 'PT Serif', serif;
   font-style: normal;
   font-size: 18px;
   padding-right: 50px;
}

/* 41. interviste doppie */
.interviste-doppie{
   margin: 100px auto;
}
.interviste-doppie .container{
   max-width: 1024px;
   padding: 0;
}
.interviste-doppie .container img{
   display: block;
   max-width: 100%;
}
.interviste-doppie .container .col-md-6{
   padding: 0;
   width: 50%;
   float: left;
}
.interviste-doppie .extra-margin-all {
   overflow: visible;
   padding: 0;
}
.interviste-doppie .extra-margin-all .row {
   margin: 0;
   position: relative;
}
.interviste-doppie .extra-margin-all .row .post-spacing-3{
   position: relative;
   margin: 0 auto;
   overflow: visible;
   z-index: 2;
}
.interviste-doppie .extra-margin-all .row .post-spacing-3:after{
   content: "";
   display: block;
   clear: both;
}
.interviste-doppie .container .col-md-6.sx{
   position: absolute;
   border-top-left-radius: 20px;
   border-bottom-left-radius: 20px;
   overflow: hidden;
   top: 0;
   left: -200px;
   opacity: 0;
   -webkit-transition: all 1000ms ease-out;
   -moz-transition: all 1000ms ease-out;
    -ms-transition: all 1000ms ease-out;
     -o-transition: all 1000ms ease-out;
        transition: all 1000ms ease-out;
   z-index: 2;
}
.interviste-doppie .container .col-md-6.sx.attivo{
   left: 0;
   opacity: 1;
}
.interviste-doppie .container .col-md-6.dx{
   position: absolute;
   border-top-right-radius: 20px;
   border-bottom-right-radius: 20px;
   overflow: hidden;
   top: 0;
   right: -200px;
   opacity: 0;
   -webkit-transition: all 1000ms ease-out;
   -moz-transition: all 1000ms ease-out;
    -ms-transition: all 1000ms ease-out;
     -o-transition: all 1000ms ease-out;
        transition: all 1000ms ease-out;
   z-index: 2;
}
.interviste-doppie .container .col-md-6.dx.attivo{
   right: 0;
   opacity: 1;
}
.interviste-doppie .container .col-md-12{
   padding: 0;
   opacity: 0;
   z-index: 1;
   border-radius: 20px;
   overflow: hidden;
}
.interviste-doppie .container .col-md-12.attivo{
   opacity: 1;
}

/* Disturbi alimentari */
.disturbi-alimentari .row, .quattro-livelli .row{
   margin: 70px auto;
}
.disturbi-alimentari .container, .quattro-livelli .container{
   max-width: 1024px;
   padding: 0;
   margin: 0 auto;
}
.disturbi-alimentari .extra-margin-all, .quattro-livelli .extra-margin-all{
   padding: 0;
   overflow: visible;
}
.disturbi-alimentari .extra-margin-all .row, .quattro-livelli .extra-margin-all .row{
   display: flex;
   align-items: center;
}
.disturbi-alimentari .extra-margin-all .row{
   align-items: flex-start;
   margin-bottom: 0;
}
.disturbi-alimentari .col-md-4 {
    z-index: 9;
}
.disturbi-alimentari .icona img, .quattro-livelli .icona img{
   display: block;
   margin: 0 auto;
   max-width: 170px
}
.disturbi-alimentari strong, .quattro-livelli strong{
   display: block;
   text-transform: uppercase;
   background: -moz-linear-gradient(left, #fb14f2 0%, #00c2ff 100%);
   background: -webkit-linear-gradient(left, #fb14f2 0%,#00c2ff 100%);
   background: linear-gradient(to right, #fb14f2 0%,#00c2ff 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   font-size: 20px;
   margin-bottom: 10px;
}
.disturbi-alimentari, .quattro-livelli{
   font-size: 16px;
   line-height: 22px;
}

/* 42. Swiper */
.swiper {
   position: relative;
   width: 100%;
   height: auto;
   margin: 100px auto;
   z-index: 2;
}

.swiper-slide {
   text-align: center;
   display: -webkit-box;
   display: -ms-flexbox;
   display: -webkit-flex;
   display: flex;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   -webkit-justify-content: center;
   justify-content: center;
   -webkit-box-align: center;
   -ms-flex-align: center;
   -webkit-align-items: center;
   align-items: center;
}

.swiper-slide img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.swiper-slide {
   width: 100%;
   max-width: 1024px;
   height: auto;
   border-radius: 20px;
   overflow: hidden!important;
   transform: translateZ(0);
}
.swiper-pagination{
   bottom: -40px!important;
}
.swiper-pagination-bullet{
   width: 15px;
   height: 15px;
   background: #111;
   opacity: 1;
   border: 1px solid #fff;
}
.swiper-pagination-bullet-active{
   background: #fff;
}

/* menu */
.bg-light.menu {
   height: 50px;
}
#menuD{
   font-family: 'Open Sans', sans-serif;
   font-size: 16px;
   text-transform: uppercase;
   position: relative;
   width: 100%;
   border-bottom: 1px solid rgba(119, 119, 119, .2);
   z-index: 11;
   font-weight: 700;
}
#menuD .binario{
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   height: 50px;
   /*column-gap: 40px;*/
}
#menuD .binario .voce{
   position: relative;
   cursor: pointer;
   margin: 0 20px;
}
#menuD .binario .voce.attiva:after {
   content: "";
   position: absolute;
   display: block;
   width: 100%;
   height: 1px;
   bottom: 0;
   background: -moz-linear-gradient(left, #fb14f2 0%, #00c2ff 100%);
   background: -webkit-linear-gradient(left, #fb14f2 0%,#00c2ff 100%);
   background: linear-gradient(to right, #fb14f2 0%,#00c2ff 100%);
}
#menuD.sticky{
  position: fixed;
  top: 0;
  background-color: #111;
}

/* crediti */
.crediti .extra-margin-all{
   max-width: 560px;
   margin: 0 auto;
}
.crediti .ruolo {
    margin: 20px auto;
}
.crediti .ruolo h5{
   font-family: 'Open Sans', sans-serif;
   background: -moz-linear-gradient(left, #fb14f2 0%, #00c2ff 100%);
   background: -webkit-linear-gradient(left, #fb14f2 0%,#00c2ff 100%);
   background: linear-gradient(to right, #fb14f2 0%,#00c2ff 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   font-size: 18px;
   font-weight: 600;
}
.crediti .ruolo h4{
   font-family: 'PT Serif', serif;
   font-size: 22px;
   font-weight: 600;
}
.crediti .ruolo p{
   font-family: 'Open Sans', sans-serif;
   font-size: 14px;
   line-height: 19px;
   font-weight: 400;
   font-style: italic;
}

.sepCapitoli{
   position: relative;
   width: 100%;
   height: 100vh;
   margin: 100px auto;
   background-attachment: fixed;
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
}
.mySwiperDisturbi .swiper-button-next,
.mySwiperLivelli .swiper-button-next,
.mySwiperDisturbi .swiper-button-prev,
.mySwiperLivelli .swiper-button-prev
{
   display: none;
}

section.bg-light.nodo {
    margin: 100px auto 0;
}

.senza-cure .works-list .works-list-wrapper {
    padding-bottom: 0;
}
.senza-cure .works-list .works-list-item.small:last-child{
   margin-bottom: 0;
}

.crediti {
    padding-bottom: 100px;
}

div#home:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .15);
    z-index: 1;
}

iframe{
   display: block;
   border-radius: 20px;
}
.meride-video-container.small{
   width: 512px!important;
   height: 288px!important;
   border-radius: 20px;
   overflow: hidden;
}
.meride-video-container.small video{
   width: 100%!important;
   height: 100%!important;
   left: 0;
}
.meride-video-container.small2{
   width: 497px!important;
   height: 280px!important;
   border-radius: 20px;
   overflow: hidden;
}
.meride-video-container.small2 video{
   width: 100%!important;
   height: 100%!important;
   left: 0;
}
.meride-video-container.big{
   width: 1024px!important;
   height: 576px!important;
   border-radius: 20px;
   overflow: hidden;
}
.meride-video-container.big video{
   width: 100%!important;
   height: 100%!important;
   left: 0;
}
@media only screen and (max-width: 995px) {
   .meride-video-container.small, .meride-video-container.big, .meride-video-container.small2{
      width: 497px!important;
      height: 280px!important;
      margin: 0 auto;
   }
}
@media only screen and (max-width: 480px) {
   .meride-video-container.small, .meride-video-container.big, .meride-video-container.small2{
      width: 384px!important;
      height: 216px!important;
      margin: 0 auto;
   }
   .sepCapitoli{
      height: 70vh
   }
   .interviste-doppie .meride-video-container.big{
      width: 384px!important;
      height: 683px!important;
   }
   .interviste-doppie .container .col-md-6{
      width: 100%;
      height: 50%;
   }
   .interviste-doppie .container .col-md-6.sx{
      top: 0;
      border-radius: 0;
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
   }
   .interviste-doppie .container .col-md-6.dx{
      top: 50%;
      border-radius: 0;
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
   }
}
@media only screen and (max-width: 390px) {
   .meride-video-container.small, .meride-video-container.big, .meride-video-container.small2{
      width: 360px!important;
      height: 203px!important;
      margin: 0 auto;
   }
   .meride-video-container.big.mobile{
      width: 360px!important;
      height: 641px!important;
      margin: 0 auto;
   }
   .interviste-doppie .meride-video-container.big{
      width: 360px!important;
      height: 640px!important;
   }
}
@media only screen and (max-width: 375px) {
   .meride-video-container.small, .meride-video-container.big, .meride-video-container.small2{
      width: 345px!important;
      height: 194px!important;
      margin: 0 auto;
   }
   .meride-video-container.big.mobile{
      width: 345px!important;
      height: 614px!important;
      margin: 0 auto;
   }
   .interviste-doppie .meride-video-container.big{
      width: 345px!important;
      height: 614px!important;
   }
}

/*
   __                    __     __
  / /_____  ____ _____ _/ /__  / /_  ____  _  __
 / __/ __ \/ __ `/ __ `/ / _ \/ __ \/ __ \| |/_/
/ /_/ /_/ / /_/ / /_/ / /  __/ /_/ / /_/ />  <
\__/\____/\__, /\__, /_/\___/_.___/\____/_/|_|
         /____//____/
*/
.toggleBox {
   text-align: center;
   font-family: 'PT Serif', serif;
   font-size: 16px;
   border-radius: 20px;
   padding: 15px;
   margin-top: 10px;
}
.toggleBox .approfondisci{
   margin-bottom: 10px;
   cursor: pointer;
}
.toggleBox .approfondisci p{
   font-size: 18px;
   font-weight: 600;
}
.toggleBox .approfondisci img{
   display: block;
   margin: 10px auto;
}
.toggleBox p {
   font-size: 16px;
   font-weight: 300;
   line-height: 22px;
   letter-spacing: .5px;
}
.toggleBox .apriChiudi{
   overflow: hidden;
   max-height: 0;
   -webkit-transition: all 0.15s ease-out;
   -moz-transition: all 0.15s ease-out;
    -ms-transition: all 0.15s ease-out;
     -o-transition: all 0.15s ease-out;
        transition: all 0.15s ease-out;
}
.toggleBox.attivo{
   background-color: #2F2F2F;
}
.toggleBox.attivo .apriChiudi{
   max-height: 200px;
   -webkit-transition: all 0.25s ease-in;
   -moz-transition: all 0.25s ease-in;
    -ms-transition: all 0.25s ease-in;
     -o-transition: all 0.25s ease-in;
        transition: all 0.25s ease-in;
}

/*
    __                          __
   / /__  ____ ____  ____  ____/ /___ _
  / / _ \/ __ `/ _ \/ __ \/ __  / __ `/
 / /  __/ /_/ /  __/ / / / /_/ / /_/ /
/_/\___/\__, /\___/_/ /_/\__,_/\__,_/
       /____/
*/
.legenda{
   max-width: 600px;
   margin: 0 auto;
   text-align: right;
}
.legenda .voce{
   display: inline-block;
   margin: 0 5px;
   font-size: 14px;
}
.legenda .voce:last-child{
    margin-right: 0;
}
.legenda .voce span{
   width: 20px;
   height: 12px;
   display: inline-block;
   border-radius: 4px;
   position: relative;
   top: 1px;
}
.legenda p {
   font-size: 16px;
   line-height: 22px;
   margin-bottom: 15px;
}

/*
    __
   / /_  ____  __  ______  ________
  / __ \/ __ \/ / / / __ \/ ___/ _ \
 / /_/ / /_/ / /_/ / / / / /__/  __/
/_.___/\____/\__,_/_/ /_/\___/\___/

*/
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.bounce {
  -moz-animation: bounce 4s infinite;
  -webkit-animation: bounce 4s infinite;
  animation: bounce 4s infinite;
}
.scrolla{
   position: absolute;
   bottom: 10px;
   left: 50%;
   transform: translateX(-50%);
   z-index: 10;
   cursor: pointer;
}
.scrolla img{
   display: block;
   max-width: 30px;
   height: 30px;
   -webkit-filter: drop-shadow( 0px 1px 3px rgba(0, 0, 0, .8));
   filter: drop-shadow( 0px 1px 3px rgba(0, 0, 0, .8));
}

.meride-video-container{

}
.meride-video-container .boxcenterBtn {
    width: 50px;
    height: 50px;
    margin-left: -25px;
    margin-top: -25px;
}

.sfalsato{
   margin-top: 40px;
}

.citazionePerMobile{
   display: none;
}

@media only screen and (max-width: 480px) {
   .citazionePerMobile{
      display: block;
   }
   .citazionePerMobile .extra-margin-all{
      overflow: visible;
   }
   .citazionePerMobile .intro.intro-all .cit2{
      bottom: -10px!important;
      right: -5px!important;
   }
   .hero-fullscreen {
      background-image: url('https://www.open.online/pandemia-covid-disturbi-alimentari-anime-affamate/img/apertura3-mob.jpg');
   }
   div#home:before{
      display: none;
   }
   .sfalsato{
      margin-top: inherit;
   }
   .mySwiperDisturbi .swiper-button-next,
   .mySwiperLivelli .swiper-button-next,
   .mySwiperDisturbi .swiper-button-prev,
   .mySwiperLivelli .swiper-button-prev
   {
      display: block;
   }
   .disturbi-alimentari .extra-margin-all{

   }
   .quattro-livelli .row{
      width: calc(100% - 30px);
      margin: 0 auto;
      background-color: #2F2F2F;
      text-align: left;
      padding: 15px 0;
   }
   .quattro-livelli .icona img{
      width: 70px;
   }
   .quattro-livelli{
      font-size: 14px;
      line-height: 20px;
   }
   .swiper-button-next, .swiper-button-prev{
      width: 12px;
      height: 18px;
      margin-top: -9px;
      background-size: 12px 18px;
   }
   .hero-fullscreen, .sepCapitoli{
      background-attachment: inherit;
   }
   .disturbi-alimentari .extra-margin-all .row{
      display: block;
      margin: 0 auto;
   }
   .disturbi-alimentari .icona img{
      max-width: 150px;
   }
   .disturbi-alimentari .col-md-4{
      margin-bottom: 30px;
   }
   .disturbi-alimentari .col-md-4:last-child{
      margin-bottom: 0;
   }
   section.bg-light.nodo {
      margin: 50px auto 0;
   }
   .swiper-pagination{
      position: relative;
      bottom: 0!important;
      margin-top: 20px;
   }
   .sepCapitoli{
      margin: 50px auto;
   }
   .nodo .paragraph-two-columns.teresa{
      text-align: left;
   }
   .universo .subtitle img{
      top: 3px;
      width: 20px;
      margin-top: 7px;
   }
   .subtitle img{
      position: relative;
      top: 5px;
   }
   .works-list .universo .subtitle{
      font-size: 17px;
   }
   .nodo .intro{
      font-size: 28px;
      line-height: 28px;
   }
   .nodo .intro span {
      font-size: 28px;
   }
   .small .intro.intro-all .cit2, .citazionePerMobile .intro.intro-all .cit2{
      bottom: -10px;
   }
   .swiper{
      padding-top: 30px!important;
   }
   .swiper-button-next{
      right: 50%;
      transform: translateX(20px);
      top: 10px;
   }
   .swiper-button-prev{
      left: 50%;
      transform: translateX(-20px);
      top: 10px;
   }
   .main-title-wrapper .sommario.sottotitolo{
      font-size: 18px;
      line-height: 22px;
   }
}

@media only screen and (max-width: 995px) {
   #menuD{
      overflow-x: scroll;
   }
   #menuD .binario{
       width: 990px;
   }
   .works-list .works-list-item.small:first-child{
      flex-direction: column;
   }
   .swiper {
      overflow: hidden;
      padding: 15px;
      margin: 20px auto;
   }
}

@media only screen and (max-width: 880px) {
   .main-title-wrapper{
      padding: 0 15px;
   }
   .extra-margin-all{
      padding: 0;
   }
   .nodo .subtitle{
      -webkit-text-stroke: 2px transparent;
       font-size: 36px;
       margin: 40px auto 0;
       padding: 0;
   }
   .interviste-doppie .extra-margin-all .row .post-spacing-3{
      overflow: hidden;
   }
   .nodo .intro{
      font-size: 30px;
      line-height: 30px;
      margin-top: 15px;
   }
   .nodo .intro span{
      font-size: 30px;
   }
   .nodo .paragraph-two-columns{
      column-count: 1;
      -moz-column-count: 1;
      -webkit-column-count: 1;
      text-align: left;
   }
   .works-list .small .works-list-item-container{
      max-width: 100%;
      flex: 0 0 100%;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      margin-top: 25px;
   }
   .works-list .small .works-list-bg{
      width: 100%;
      min-height: auto;
      padding: 0;
   }
   .works-list .small .works-list-bg img{
      max-width: 100%;
      min-width: 100%;
   }
   .works-list-content-wrapper{
      padding: 0 15px;
   }
   .works-list .small .works-list-content{
      padding: 0;
   }
   .small .intro.intro-all, .citazionePerMobile .intro.intro-all{
      font-size: 22px;
      max-width: 70%;
      margin: 0 auto;
   }
   .small .intro.intro-all .cit, .citazionePerMobile .intro.intro-all .cit{
      top: -5px;
      left: -40px;
      width: 32px;
   }
   .small .intro.intro-all .cit2, .citazionePerMobile .intro.intro-all .cit2{
      bottom: 30px;
      right: -40px;
      width: 32px;
   }
   .small .intro.intro-all p, .citazionePerMobile .intro.intro-all p{
      padding-right: 0;
   }
   .works-list .works-list-item.small, .works-list .works-list-item.diario{
      margin: 50px auto;
   }
   .works-list .diario.universo .intro.intro-all{
      font-size: 18px;
      line-height: 24px;
   }
   .works-list .works-list-bg{
      width: 100%;
      height: 320px;
      position: relative;
      border-radius: 20px;
      top: 0;
      transform: none;
   }
   .works-list .works-list-item.diario .col-lg-4-custom{
      padding: 0;
      border-top-left-radius: 0;
      border-top-right-radius: 0;
   }
   .works-list .diario .works-list-content{
      padding: 20px;
   }
   .works-list .diario .intro.intro-all{
      font-size: 32px;
      line-height: 32px;
   }
   .works-list .diario .intro.intro-all span{
      font-size: 32px;
   }
   .works-list .works-list-item.diario .col-lg-4-custom{
      height: 240px
   }
   .works-list .works-list-item.diario.universo .col-lg-4-custom{
      height: 380px
   }
   .works-list .works-list-wrapper{
      padding: 0;
   }
   .works-list .diario .works-list-item-container{
      max-width: 90%;
      top: -40px;
      position: relative;
   }
   .works-list .diario.universo .works-list-content{
      height: 380px;
   }
   .works-list .works-list-bg.works-list-bg-reverse{
      border-radius: 20px;
   }
   .interviste-doppie{
      margin: 50px auto;
      padding: 0 15px;
   }
   .works-list .works-list-item.small.two .row .col-md-6:first-child {
       margin-bottom: 50px;
   }
   .disturbi-alimentari .container, .quattro-livelli .container{
      margin-top: 50px;
   }
   .disturbi-alimentari .extra-margin-all .row:nth-child(even), .quattro-livelli .extra-margin-all .row:nth-child(even){
      flex-direction: row-reverse;
   }
   .crediti .ruolo h4{
       font-size: 18px;
   }
}