
@import url('https://fonts.googleapis.com/css2?family=Signika:wght@300;400;600&display=swap');
*{
  margin: 0;
  padding: 0;
  list-style: none;
  color: inherit;
  text-decoration: none;
  box-sizing: border-box;
}
html{
  position: relative;
  background-color: #000;
  width: 100%;
}
:root{
  --aspect-ratio: 16/9;
}
.swiper-pagination-bullet{
  margin: 0 5px;
}
body{
  position: relative;
  opacity: 0;
  width: 100%;
  height: auto;
  background-color: #FFD300;
  background-image: url('../assets/pattern_bg.png');
  background-repeat: repeat;
  font-family: 'Signika', sans-serif;
}
.cookie{
  opacity: 1;
}
.cta--button{
  display: inline-block;
  margin: 0 auto;
  line-height: 50px;
  border-radius: 32px;
  padding: 16px 32px;
  border: 2px solid #000;
  color: #000;
  box-shadow: 0px 6px black;
}
.cta--button p {
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}
header{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.back-home{
  position: absolute;
  left: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  line-height: 17px;
}
.triangle{
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 10px 8px 0;
  border-color: transparent #574438 transparent transparent;
  margin-right: 10px;
}
header img{
  width: 120px;
  margin: 20px auto;
}

.video--wrapper {
  position: relative;
  top: 0;
  width: 100%;
  height: 100vh;
  text-align: center;
  background-color: #000;
  overflow: hidden;
}
.video--wrapper .video--cover {
  position: absolute;
	max-width:100%;
  height: 100%;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media screen and (max-width: 1023px){
  .video--wrapper .video--cover {
    max-width: inherit;
    height: 90vh;
    top: 5%;
  }
}
.video--wrapper iframe {
  position:absolute;
  opacity: 0;
  visibility: hidden;
	z-index:666;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	background-color:transparent;
  border:0;
  width:  calc(calc(100vh) * var(--aspect-ratio));
}
@media (min-aspect-ratio: 16/9){
  .video--wrapper iframe{
    height: 100%;
    width:  calc(calc(100vh) * var(--aspect-ratio));
  }
}
@media (max-aspect-ratio: 16/9){
  .video--wrapper iframe{
    width: 100%;
    height:  calc(calc(100vw) * calc(9/16));
  }
}

.video--wrapper .video--overlay{
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: column wrap;
}

.video--wrapper .video--overlay-titles{
  position: relative;
  height: calc(100vh - 160px);
  width: 100%;
  flex: 1 0 auto;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.video--overlay-titles img{
  align-self: center;
  margin: 0 auto;
  opacity: 0;
}
.video--overlay-titles img#logo{
  margin-top: 1.25%;
  height: 25%;
}
.video--overlay-titles img#presenta{
  margin-top: 1%;
  height: 10%;
}
.video--overlay-titles img#bumper{
  margin-top: 1%;
  height: 50%;
}
@media screen and (max-width: 1023px){
  .video--overlay-titles img#logo, 
  .video--overlay-titles img#presenta,
  .video--overlay-titles img#bumper{
    margin-top: 5%;
  }
  .video--overlay-titles img#bumper{
    height: auto;
    width: 90%;
  }
}
.video--wrapper .video--overlay-ctas{
  width: 100%;
  height: 160px;
  flex: 0 1 160px;
  margin: 0 auto;
  text-align: center;
}
.video--play:hover {
  cursor:pointer;
  opacity: .75;
}
.video--play{
  background-color: #FFD300;
}
.scroll--cta{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
}
.ctas{
  opacity: 0;
}

/* content wrapper */
.content--wrapper{
  position: relative;
  width: 100%;
}
.content--wrapper p {
  color: #574438;
  text-align: center;
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
}
.content--intro{
  margin: 5% auto 0;
  max-width: 650px;
  padding-bottom: 100px;
  width: 80%;
}
.content--intro img{
  display: block;
  width: 100%;
}
.content--intro h1{
  color: #574438;
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  padding: 40px 20px 150px;
}
@media screen and (max-width: 767px){
  .content--intro{
    margin: 100px auto 0;
  }
  .content--intro h1{
    font-size: 24px;
    line-height: 30px;
    padding: 40px 20px 100px;
  }
}
.content--stars{
  position: relative;
  width: 100%;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}
.title-wrap{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.title-wrap img{
  margin: 0 15px;
}
.title-wrap h3{
  font-size: 48px;
  line-height: 52px;
  font-weight: 600;
  color: #574438;
}
@media screen and (max-width: 767px){
  .title-wrap h3{
    font-size: 32px;
    line-height: 40px;
    text-align: center;
  }
  section p{
    font-size: 20px;
    line-height: 30px;
    padding: 0 10px;
  }
}
.grid--characters{
  position: relative;
  padding: 70px 80px 150px;
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.card--character{
  flex: 0 0 31%;
  max-width: 31%;
  margin-bottom: 30px;
  perspective: 1000px;
}
.characters--bullets-wrap{
  display: none;
}
@media screen and (max-width: 1023px){
  .card--character{
    flex: 0 0 49%;
    max-width: 49%;
  }
  .characters--bullets-wrap{
    display: block;
  }
}
@media screen and (max-width: 767px){
  
  .card--character{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 50px;
  }
}
.card--character-inner{
  position: relative;
  text-align: center;
  transition: transform 0.75s;
  transform-style: preserve-3d;
  box-sizing: content-box;
}

.card--character:hover .card--character-inner {
  transform: rotateY(180deg);
}
.card--character img{
  display: block;
  width: 100%;
}
.card--character-front, .card--character-back {
  width: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
  border-radius: 48px;
  overflow: hidden;
  border: 2px solid #000;
}
.card--character-back { 
  height: 100%;
  top: 0;
  position: absolute;
  background-color: #808DF7;
  color: #000;
  transform: rotateY(180deg);
}
.card--character-bio{
  position: absolute;
  padding: 40px 20px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 24px;
  border-radius: 48px;
  border: 2px solid #000;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card--character-bio .card--character-bio-link p {
  color: #000;
  font-size: 14px;
  line-height: 14px;
  white-space: nowrap;
}
.card--character-bio h3, .card--character-bio p{
  color: #000
}
.card--character-bio h3 {
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 15px;
}
.card--character-bio p {
  font-weight: 300;
  font-size: 24px;
  line-height: 32px;
}

@media screen and (min-width: 1024px) and (max-width: 1160px){
  .card--character-bio h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
  }
  .card--character-bio p {
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1160px){
  .card--character-bio h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
  }
  .card--character-bio p {
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
  }
}

.card--character-bio-link{
  position: absolute;
  background-color: #808DF7;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 1023px){
  .grid--characters-container{
    margin-right: 39px;
    margin-left: 39px;
  }
  .grid--characters.swiper-wrapper{
    flex-flow: row nowrap;
    padding: 70px 0 30px;
    height: auto;
  }
  .card--character-bio {
    padding: 40px;
  }
  .characters--bullets-wrap{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 150px;
  }
}
@media screen and (min-width: 1024px){
  .grid--characters.swiper-wrapper{
    width: auto;
    height: auto;
  }
}

@media screen and (max-width: 767px){
  .grid--characters-container{
    margin: 0 auto;
    width: 90%;
  }
  .characters--bullets-wrap{
    margin-top: 0;
  }
}
.swiper-pagination-bullet{
  width: 24px;
  height: 24px;
  border: 2px solid #000;
  border-radius: 8px;
  opacity: 1;
  background-color: transparent;
  transition: all .25s ease-in-out;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active{
  width: 24px;
  height: 21px;
  border-radius: 8px;
  background-color: #808DF7;
  box-shadow: 0px 4px black;
}
.content--ricette{
  position: relative;
  width: 100%;
  overflow: hidden;
}
.row--ricette-container.swiper-container{
  position: relative;
  width: 80%;
  margin: 50px auto 0;
  overflow: visible;
  max-width: 1120px;
}
.row--ricette.swiper-wrapper{
  position: relative;
  width: auto;
  height: auto;
  width: 100%;
  overflow: visible;
}
.card--ricetta{
  position: relative;
  border: 2px solid #000000;
  border-radius: 32px;
  overflow: hidden;
  flex: 1 0 100%;
}
.card--ricetta img{
  position: relative;
  width: 100%;
  height: auto;
}
img.mobile--img{
  display: none !important;
}
.hide-desk{
  display: none;
}
@media screen and (max-width: 767px){
  .hide-desk{
    display: block;
  }
  .hide-mobile{
    display: none;
  }
  .row--ricette-container.swiper-container{
    width: 90%;
    overflow: hidden;
  }
  img.desk--img{
    display: none !important;;
  }
  img.mobile--img{
    display: block !important;;
  }
}
.card--ricetta-over{  
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 32px;
  transition: all .25s ease-in-out;
  border: 2px solid #000;
}
.card--ricetta.swiper-slide-active .card--ricetta-over{
  height: calc(100% - 40px);
  box-shadow: 0 40px #808DF7;
}
.card--ricetta-over h3, .card--ricetta-over a{
  margin: 10px 0;
  text-align: center;
}
.card--ricetta-over h3{
  font-size: 48px;
  line-height: 56px;
  padding: 0 20px;
}
.card--ricetta-over a{
  font-size: 24px;
  line-height: 32px;
  text-decoration: underline;
}
.ricette-button-prev{
  left: -20px;
}
.ricette-button-next{
  right: -36px;
}
.ricette--bullets-wrap{
  text-align: center;
  margin: 50px 0 250px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.ricette-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  z-index: 3;
  cursor: pointer;
} 
@media screen and (max-width: 1023px){
  .card--ricetta-over h3{
    font-size: 48px;
    line-height: 58px;
  }
  .card--ricetta-over a{
    font-size: 24px;
    line-height: 30px;
  }
  .ricette--bullets-wrap{
    margin: 50px 0 150px;
  }
}

@media screen and (max-width: 1023px){
  .ricette-arrow{
    display: none;
  }
}
.content--gif{
  position: relative;
  width: 100%;
  text-align: center;
  padding-bottom: 150px;
}
.content--gif .placeholder{
  max-width: 100%;
}
.content--gif p a {
  text-decoration: underline;
}
.row--gif-container.swiper-container{
  position: relative;
  width: 90%;
  margin: 50px auto 0;
}
.row--gif.swiper-wrapper{
  position: relative;
  height: auto;
  display: flex;
}
.gif--bullets-wrap{
  text-align: center;
  margin: 50px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.card--gif{
  position: relative;
  flex: 1 0 33%;
  width: 33%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1023px){
  .card--gif{
    flex: 1 0 50%;
    width: 50%;
  }
}
@media screen and (max-width: 767px){
  .card--gif{
    flex: 1 0 100%;
    width: 100%;
  }
}
.card--gif img{
  width: 100%;
}
.content-prodotto{
  position: relative;
  width: 100%;
}
.shade{
  position: absolute;
  display: block;
  width: 100%;
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
}
.prodotto--container{
  position: relative;
  width: 100%;
  text-align: center;
}
.prodotto--container img {
  position: relative;
  z-index: 2;
  width: 70%;
  max-width: 1100px;
  margin: 80px auto -80px;
}
.prodotto--container h2{
  color: #574438;
  font-size: 64px;
  line-height: 77px;
  padding: 0 20px 20px;
}
@media screen and (max-width: 1023px){
  .prodotto--container h2{
    font-size: 48px;
    line-height: 52px;
  }
}
.prodotto--container a{
  text-decoration: underline;
}
.prodotto--gradient{
  position: relative;
  height: 200px;
  width: 100%;
  background: rgb(128,141,247);
  background: linear-gradient(0deg, rgba(128,141,247,1) 0%, rgba(46,211,203,1) 100%);
}
@media screen and (max-width: 767px){
  .prodotto--container img {
    width: 100%;
  }
}

.content--intro-personaggio{
  position: relative;
  margin: 0 auto;
  width: 75%;
  padding-bottom: 125px;
}

.content--intro-personaggio .card--character{
  flex: 0 0 90%;
  max-width: 380px;
  margin: 0 auto 0;
}
.personaggio--intro{
  display: flex;
  align-items: flex-start;
  justify-content: space-between
}
.personaggio--intro-col{
  width: 45%;
}
.col-sticky{
  position: sticky;
  top: 50px;
}
.icons--wrap{
  position: relative;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-content: center;
  justify-content: center;
}
.icons--wrap.icons--col{
  position: relative;
  width: 100%;
  flex-flow: column nowrap;
  align-content: center;
  justify-content: space-between;
}
.icons--wrap .icon {
  width: 43%;
  margin: 10px 2% 20px;
  text-align: center;
  position: relative;
}
.icons--wrap.icons--col .icon {
  margin: 10px auto 20px;
}
.icons--wrap .icon img{
  display: block;
  width: 60%;
  margin: 0 auto;
}
.icons--wrap .icon p{
  text-align: center;
  font-size: 16px;
  line-height: 18px;
  white-space: nowrap;
  margin-top: 20px;
}
h1.personaggio-title{
  font-size: 64px;
  line-height: 72px;
  color: #574438;
  padding-bottom: 40px;
}
.personaggio--intro-col p {
  font-size: 24px;
  line-height: 32px;
  text-align: left;
}
.personaggio--intro-col p.forks-title{
  font-weight: 600;
}
.personaggio-forks{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 15px auto 40px;
  
}
.personaggio-forks img{
  width: 18px;
  margin-right: 10px;
}

.quote--wrap{
  position: relative;
  width: 100%;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.quote--wrap h4{
  font-size: 80px;
  line-height: 98px;
  padding: 0 40px 120px;
  font-weight: 300;
  color: #574438;
}
.description--wrap{
  position: relative;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 30px 90px;
}
.description--col{
  width: 45%;
  text-align: left;
}
.description--col p, .description--col h4{
  text-align: left;
  color: #574438;
}
.description--col h4{
  font-size: 40px;
  line-height: 50px;
  padding-bottom: 20px;
}
.description--col p{
  font-size: 24px;
  line-height: 32px;
}
.description--image{
  position: relative;
  width: 90%;
  text-align: center;
  max-width: 1024px;
  margin: 0 auto 150px;
  border-radius: 42px;
  box-sizing: border-box;
  border: 2px solid #000;
  overflow: hidden;
}
.description--image img{
  display: block;
  width: 100%;
}
.content--behind-the-scene{
  position: relative;
  width: 100%;
}
.row--behind-container{
  position: relative;
  padding: 70px 80px 150px;
  text-align: center;
  
}
.row--behind{
  width: 100%;
  height: auto;
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.card--behind{
  flex: 1 0 48%;
  max-width: 48%;
  border-radius: 42px;
  border: 2px solid #000000;
  overflow: hidden;
  margin-bottom: 40px;
}
.card--behind img{
  display: block;
  width: 100%;
}
.content--behind-the-scene .shade{
  bottom: 0;
}
@media screen and (max-width: 1023px){
  .content--intro-personaggio {
    width: 90%;
  }
  .row--behind{
    flex-wrap: nowrap;
  }
  .row--behind-container{
    padding: 30px 0 50px;
    width: 90%;
    margin: 0 auto;
  }
  .behind--bullets-wrap{
    position: relative;
    padding-bottom: 150px;
    margin: 0 auto;
    text-align: center;
    z-index: 3;
  }
}
@media screen and (max-width: 767px){
  header{
    margin-bottom: 0px;
  }
  .back-home{
    display: none;
  }
  .content--intro-personaggio {
    width: 90%;
  }
  .personaggio--intro{
    flex-direction: column;
  }
  .personaggio--intro-col{
    width: 100%;
  }
  .personaggio--intro-col p{
    padding: 0;
  }
  .col-sticky{
    position: relative;
    top: inherit;
    margin-bottom: 50px;
  }
  .content--intro-personaggio{
    padding-bottom: 80px;
  }
  .quote--wrap h4{
    padding: 0 20px 80px;
    font-size: 50px;
    line-height: 58px;
  }
  .description--wrap{
    flex-direction: column;
  }
  .description--col{
    width: 100%;
  }
  .description--col p{
    padding: 0
  }
  .description--col:nth-child(1){
    padding-bottom: 90px;
  }
  .card--behind{
    flex: 1 0 100%;
    max-width: 100%;
    border-radius: 42px;
    border: 2px solid #000000;
    overflow: hidden;
    margin-bottom: 40px;
  }
}
footer{
  width: 100%;
  background-color: #808DF7;
  text-align: center;
  padding: 120px 0;
}
.footer--content{
  position: relative;
  margin: 0 auto;
}
.footer--content a{
  margin: 0 auto;
}
.footer--content img {
  display: block;
  margin: 0 auto;
  width: 190px;
}
.footer--content p {
  color: #FFD300;
  font-size: 18px;
  line-height: 28px;
  margin-top: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
