/******************* VARIABLES ***********************/

@font-face { font-family: caslon; src: url('../fonts/caslon.ttf'); } 

@font-face { font-family: barlow; src: url('../fonts/barlow.ttf'); } 

:root {
  --black: #55586b;
  --medium: #b2b7c4;
  --ff-default: barlow, 'Courier New', Courier, monospace;
  --ff-serif: caslon, Garamond, Palatino, Cambria, Georgia, Baskerville, Cochin,'Times New Roman', Times, serif;
  --margin: 12%;
  --gap-small: 0.5rem;
  --gap-middle: 2.5rem;
  --gap-large: 6rem;
}

/********************** RESET START *************************/
* {
  box-sizing: border-box;
}

body,
div,
section,
nav,
h1,
h2,
h3,
p,
img,
::before,
::after {
  margin: 0;
  padding: 0;
  border: 0;
}

img,
video,
object,
iframe {
  max-width: 100%; /* never scale up to be larger than its original size */
  height: auto;
}

video,
object,
iframe {
  display: block;
}

ul {
  display: inline-block;
}

nav li {
  list-style-type: none; /* no bullet points */
}

/******** RESET END **************/

/*
***
****
*****
******
*******
********
*********
**********
***********
************
/************************* 1. LAYOUT START *************************/

html {
  /* base default for font-size, word-spacing, letter-spacing... */
  color: var(--black);
  font-family: var(--ff-default, monospace);
  font-size: min(5vw, 30px);
  line-height: 0;  /* avoid gap below images */
  scroll-behavior: smooth;
}

p {
  line-height: 1.3;  /* text lines because in body is 0 */
  font-weight: 300;
}

h2 {
  font-family: var(--ff-serif, serif);
  font-size: 6rem;
  letter-spacing: -0.2rem;
  font-weight: 300;
  line-height: .8;
  transform: translateX(-0.6rem);   /* because I don't know why but the h2 are a little to the right */
}

body {
  background-color: white;
  max-width: min(100vw, 600px);
  margin: 0 auto;
  font-size: min(6vw, 38px);
}

body > p, .div-white > p {
  padding-left: var(--gap-small);
  padding-right: var(--gap-small);
}

#page1 {
  background-color: #B2B9C7;
}

#page2 {
  background-color: #EBEDEE;
}

#page3 {
  background-color: #79798A;
}

#page4 {
  background-color: #2C2320;
}

#page5 {
  background-color: #181C23;
}

#page6 {
  background-color: #717179;
}

#page7 {
  background-color: #ECEAEB;
}

#page8 {
  background-color: #F7F7FF;
}

#page8 {
  overflow-x: hidden;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#pag5-overlay {
  background-color: rgb(10, 10, 84);  
  pointer-events: none; 
  opacity: 50%;
  mix-blend-mode:color-dodge
}

.serif {
  font-family: var(--ff-serif, serif);
  font-size: 1.1rem;
  line-height: 1.2;  /* text lines because in body is 0 */
  letter-spacing: 0;
  word-spacing: 0;
}

.hide {
  display: none!important;
}

.no-overflow {
  overflow-x: hidden;
}

.container {
  position: relative;
}

.insert {
padding-top: var(--gap-middle);
padding-bottom: var(--gap-middle);
}

.div-white {
  background-color: white;
}

.white-block {
  min-height: 10rem;
  background-color: white;
}

.mini-white-block {
  min-height: 4rem;
  background-color: white;
}

.dark-block {
  background-color: #70727E;
}

.dark-block > p {
  color: white;
  text-shadow: 0 0 1px black;
}

.beige-block {
  min-height: 3rem;
  background-color: #E0E2E5;
}

.flex-top {
  display: flex;
  align-items: flex-start;
}

.flex-bottom {
  display: flex;
  align-items: flex-end;
}

.flex-left {
  display: flex;
  padding: var(--gap-small);
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-center > * {
  transform: translateX(-0.4rem);   /* because I don't know why but the h2 are a little to the right */
}

.padding {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: var(--gap-small);
  padding-right: var(--gap-small);
}

.abs {
  position: absolute;
}

.top-space {
  padding-top: 1rem;
}

.little-text {
  font-size: 1.2rem;
}

#p-continua {
  text-align: right;
  padding-right: var(--margin);
  margin-top: 10rem;
}

#p-continua-beige {
  text-align: right;
  padding-right: var(--margin);
  padding-top: 10rem;
  background-color: #C9C9C1;
}

#padding-beige {
  background-color: #C9C9C1;
} 

#nav, #nav-text {
  display: flex;
  justify-content: space-evenly;
  min-height: 3rem;
  background-color: white;
}

a {
  text-decoration: none;
}

#nav > a {
  text-align: center;
}

#nav img {
max-width: 60%;
}

#nav-text {
  margin-top: -1.5rem;
}

#nav-text p {
  font-size: .8rem;
}

.next, .home, .index {
  color: var(--black);
  font-size: 8rem;
  font-weight: 800;
  text-decoration: none;
}

#nav-text .next {
  width: 24%;
  text-align: center;
}

.next > p {
  font-weight: 800;
  color: #ff00b7;
}

#nav .home, #nav .index {
  margin-top: 1.6rem;
}

a:hover, a:active, a:focus {
  color: #ff00b7!important;
}

.current {
  color:#4c4c4c;
}

.placeholder {
  width: 100px;
  height: 10px;
}

.dida {
  font-size: .6rem;
  color: #020202;
  text-align: center;
}

.center {
  text-align: center;
}

.white {
  color: white;
  text-shadow: 0 0 1px black;
}

#div-next {
  width: 33%;
  text-align: center;
}

#divMenu {
  text-align: right;
  padding-right: 14%;
  background-color: #70727E;
}

#divMenu > ul {
  list-style: none;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}

#divMenu a {
  color: white;
}

#last-white {
  height: 3rem;
  background-color: white;
}

#div-fine {
  border-top: solid #4c4c4c 6px;
  padding: 5rem 5% 0 2%;
  margin-top: 0;
}

#yuri-fissano {
  margin-bottom: -1rem;
  position: relative;
  z-index: 1;
}

#yuri-fissano2 {
  margin-top: -1.5rem;
  margin-bottom: 4rem;
}

#grazie {
  padding-top: 1rem;
  padding-right: 15%;
text-align: right;
}

#firma {
  max-width: 20%;
  margin-left: 65%;
  margin-top: 2rem;
}

#t6 {
  font-size: 5rem;
}

#t7 {
  padding-top: 2rem;
  font-size: 4rem;
  padding-left: 5%;
}

#t7 > span {
  padding-left: 7%;
}

#t8 {
  margin-top: -1rem;
  font-size: 4rem;
  text-align: center;
  transform: translateX(-0.6rem);
}

#t9 {
  font-size: 4rem;
  padding-right: 1rem;
  text-align: right;
}

#t9-2 {
  padding: .5rem;
  color: white;
  background-color: black;
}

/*------------------ FORM --------------------- */

.contacts-section {
  padding: 1rem var(--margin);
  position: relative;
  background-color: white;
}

input, textarea {
  margin-top: 1vh;
  margin-bottom: 3vh;
  background:#e8e8e8;
  border-width:0px;
  border:none;
}

input {
  font-size: 85%;
  padding: 2% 3% 2% 2%;
}

#p-select {
  margin-top: 2rem;
  margin-bottom: -.5rem;
}

input[type="checkbox"] {
  appearance: none;
  width: 2rem;
  height: 2rem;
  margin-top: 1rem;
  margin-bottom: -.5rem;
  display: inline-block;
}

input[type="checkbox"]:checked + span::before {
  content: '\2713';
  color: black;
  font-size: 2rem;
  margin-left: -1.8rem;
  padding-right: .6rem;
}

textarea {
  font-size: 85%;
  padding: 0.5% 0% 1% 2%;
  color: lightslategray;
  width: 95%
}

#p-textarea {
  margin-top: 2rem;
}

select {
  width: 96%;
  height: 2rem;
  font-size: 1rem;
}

label {
  font-size: 80%;
}
::placeholder { 
  color: lightslategray;
  opacity: 1;  
}  
:-ms-input-placeholder {
  color: lightslategray;
}  
::-ms-input-placeholder {
  color: lightslategray;
}
.buttons-div {    
  display: flex;
  justify-content: center;
  padding: 0 3vw 0 0;
}
button {
  padding-top: 2vw;
  padding-bottom: 1vw;
  font-family: sans-serif;
  font-size: 120%;
  text-transform: uppercase;
}
button[type="submit"]{
  padding-left: 4vw;
  padding-right: 4vw;
  background: white;
  border-color: black;
}

#ajax-div-answer {    
  clear: both;
  text-align: center;
  padding: 20% 10%;
  visibility: hidden;
}
.ajax-div-wait {
  color: blue;
  visibility: visible!important;
  z-index: 1;
  width: 75%;
  background: rgb(255 255 255 / 95%);
  height: 30%!important;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: -2%;
}
.ajax-div-yes {
  color: green;
  visibility: visible!important;
  z-index: 1;
  width: 75%;
  background: rgb(255 255 255 / 95%);
  height: 30%!important;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: -2%;
}

.ajax-div-not {
  color: red;
  visibility: visible!important;
  z-index: 1;
  width: 75%;
  background: rgb(255 255 255 / 95%);
  height: 30%!important;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: -2%;
}

/********************** PAGES START *************************/

#p1-2 {
top: 72%;
left: var(--margin);
}

#p1-4 {
  top: 65%;
  left: 27.5%;
  text-align: right;
}

#p1-5 {
  top: 90%;
  right: var(--margin);
}

#p2-2 {
  top: 40%;
  left: 54%;
}

#p2-3 {
  top: 93%;
  left: 20%;
  z-index: 1;
}

#p2-32 {
  top: 100%;
  left: 22.4%;
  z-index: 1;
}

#p2-4 {
  top: -40%;
  left: var(--margin);
}

#p2-5 {
  top: 8%;
  left: 28%;
}

#p2-5-2 {
  top: 89%;
  left: 34.7%;
}

#p3-3 {
  top: 60%;
  left: 17%;
  color: #35423A;
  text-shadow: 0 0 1px white, 0 0 2px white, 0 0 3px white;
}

#div3-6 {
align-items: flex-end;
height: 10rem;
}

#lizard-ani {
  width: 7vw;
  max-width: 153px;
  top: 142%;
  left: 22%;
}

#div4-2 {
  padding-bottom: 2rem;
}

#p5-1 {
  top: 52%;
  right: var(--margin);
  text-align: right;
  color: white;
}

#div5-2 {
  background-color: white;
}

#p5-2 {
  bottom: 0;
}

#div6-1 > p {
  right: 7%;
}

#div6-2 {
  align-items: flex-start;
  flex-direction: column;
}

#p6-2 {
  top: 27%;
  left: 2%;
}

#p6-3 {
  bottom: 15%;
  right: 9%;
}

#p6-4 {
  text-align: right;
  bottom: 35%;
  left: 2%;
}

#p7-1 {
  bottom: 35%;
  right: 6%;
}

#p7-2 {
  text-align: center;
  top: 64%;
  left: 41%;
}

#p7-3 {
  bottom: 10%;
  right: 9%;
}

#p7-4 {
  text-align: right;
  bottom: 5%;
  left: 19%;
}

#p7-5 {
  top: -3%;
  padding: 0 4%;
}

#p7-6 {
  bottom: 11%;
  padding: 0 0 0 16%;
}

#p8-1 {
  top: 74%;
  left: 4%;
  transform: rotate(-15deg);
  z-index: 1;
}

#p8-2 {
  top: 46%;
  left: 59%;
}

#p8-2-2 {
  top: 70%;
  left: 35%;
}

#p8-2-3 {
  top: 94%;
  left: 13%;
  z-index: 1;
}

#div8-3-3 {
  background-color: #79798A;
}

#p8-3-3 {
  padding-left: 12%;
  padding-top: 0;
  padding-right: 9%;
}

#div9 {
  background-color: #79798A;
  flex-direction: column;
  overflow-x: hidden;
}

#div9 > * {
  color: white;
  padding-bottom: 4rem;
  white-space: nowrap;
}

#p9 {
  padding-top: 1rem;
  padding-bottom: 5rem;
}
#img-9-2 {
  transform: translateX(22%)!important;
}

#img9-4 {
  background-color: #E0E2E5;
  padding-top: 2.2rem;
}

#p9-2 {
  padding-top: .7rem;
  padding-bottom: 2rem;
}

#p9-2-2 {
  padding-top: .7rem;
}

#p9-4 {
  top: 29%;
  left: 11%;
}

#p9-5 {
  text-align: right;
  bottom: 14.5%;
  right: 15%;
}

#p10 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 8%;
  padding-right: 8%;
}

#p11 {
  margin-top: 1.5rem;
  padding-top: 4rem;
  padding-left: 10%;
  padding-right: 8%;
  padding-bottom: 2rem;
  background-color: white;
}

#div12-2 {
  padding-top: 2rem;
}

#img-icona-occhio-dio {
  max-width: 48%;
  transform: translateX(50%);
}

#p11-2 {
  padding-top: 2rem;
  padding-left: 10%;
  padding-right: 13%;
  padding-bottom: 4rem;
}

#img12-1 {
  margin-top: -3rem;
  transform: translateX(0);
  max-width: 80%;
}

#img12-2-1 {
  max-width: 8%;
  transform: translateX(0);
}

#img12-2, #img12-3 {
  display: block;
  max-width: 81%;
  margin: 0 auto;
}

#quadro-12 {
  flex-direction: column;
}

#p12-2 {
  top: 18%;
  right: 11%;
}

#p12-3 {
  bottom: 1%;
  left: 12%;
  text-align: right;
}

#div13 {
  border-bottom: #ff00b7 solid 2px;
}

#p13 {
  padding-top: 5rem;
  padding-bottom: .2rem;
  padding-left: 2%;
  padding-right: 4%;
}

#p13-2 {
  top: 0;
  left: 32%;
}

#p14 {
  top: 27.8%;
  right: 34%;
  text-align: right;
}

#p15 {
  top: 50.5%;
  right: 14%;
}

#p16 {
  bottom: 1.5%;
  left: 25%;
}

#div17 {
  padding-top: 2rem;
}

#p17 {
  bottom: 10rem;
  left: 2.8%;
}

#p17-1 {
  bottom: -1rem;
  left: 31%;
}

#p17-2 {
  padding-top: 5rem;
  text-align: right;
  padding-right: 10%;
}

#p-rosa2 {
  top: 7%;
  left: 18%;
}

#p-rosa2-2 {
  top: 32%;
  left: 37%;
}

#p-rosa2-3 {
  bottom: -.2rem;
  left: 37%;
  z-index: 1;
}

#p-rosa3 {
  top: 7%;
  left: 3%;
}

#dark-rectangle1 {
  height: 3rem;
  width: 73%;
  background-color: #2C2320;
}

#p-rosa4 {
  top: 11%;
  left: 3%;
}

#p-rosa4-2 {
  padding-top: 2rem;
  text-align: justify;
  padding-bottom: 1rem;
}

#div-rosa5 {
  flex-direction: column;
  background-color: #2C2320;
  color: white;
  margin-top: 2rem;
  padding-bottom: 1rem;
}

#p-rosa5 {
padding: 1rem;
text-align: center;
}

#img-rosa5 {
  margin-top: -3rem;
}

#p-rosa6 {
  top: 1.6%;
  right: 34%;
  color: white;
  left: 3%;
}

#p-rosa6-1 {
  top: 68%;
  left: 2%;
}

#p-rosa6-2 {
  top: 9%;
  left: 35%;
  right: 3%;
  color: white;
  text-align: right;
}

#p-rosa6-2-2 {
  top: 65%;
  text-align: center;
  left: 11%;
}

#p-rosa6-3 {
  top: 19%;
  left: 21%;
  right: 21%;
  text-align: right;
}

#p-rosa6-4 {
  color: white;
  text-align: right;
  top: -2%;
  left: 28%;
  right: 7%;
}

#p-rosa6-4-2 {
  bottom: 5%;
  left: 6%;
  right: 11%;
  text-align: center;
}

#p-rosa6-5 {
  top: 53%;
  padding-left: var(--gap-small);
  padding-right: var(--gap-small);
}

#img-rosa-cassettone {
  margin-top: 4rem;
}

#div-casco {
  display: flex;
  align-items: center;
  margin-top: -2px;
}

#pattern-vert {
  width: 10%;
  background: rgb(12,8,7);
  background: linear-gradient(180deg, rgba(12,8,7,1) 30%, rgba(47,45,46,1) 70%);
  min-height: 12rem;
}

#p-casco {
  padding-left: 1rem;
  max-width: 85%;
}

#img-rosa-terrazza {
  padding-left: 0;
  padding-right: 0;
}

#img-giorgio-campana {
  margin-top: -2px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 3rem;
}


#div-radiosa {
  padding-top: 3rem;
}

#img-rosa-glass {
  padding-top: 0;
}

#img-rosa-glass2 {
  padding-top: 1rem;
}

#p-glass {
  margin-top: -3rem;
}

#p-radiosa {
  background-color: #020202;
  color: white;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 3%;
  padding-right: 6%;
  text-align: right;
}

#div-deco {
  border: 0;
  padding-top: 0;
  margin-top: 0;
}

#deco-flowers-up {
  border: 0;
  padding-top: 0;
  margin-top: 0;
  transform: rotate(180deg);
}

#p-barbie1 {
  top: 19%;
  left: 12%;
  max-width: 80%;
  color: white;
}

#p-barbie2 {
  top: 32%;
  left: 4%;
  right: 4%;
  color: #ABBBD3;
}

#p-stomaco1, #p-stomaco1-2, #p-stomaco3-dida {
  padding-bottom: 2rem;
}

#p-barbie4 {
  bottom: 10%;
  right: var(--margin);
  text-align: right;
}

#p-barbie5 {
  padding-top: 0;
  padding-bottom: 1rem;
}

#img-barbie6 {
  max-width: 70%;
}

#p-barbie6 {
  bottom: -2%;
  z-index: 1;
  right: var(--margin);
  text-align: right;
}

#p-barbie7 {
  padding-bottom: 2rem;
}

#p-barbie8 {
  bottom: 5%;
  z-index: 1;
  left: 2%;
}

#p-barbie8-0 {
  top: 2%;
  z-index: 1;
  left: 48%;
}

#p-barbie8-1 {
  padding-top: 1rem;
}

#img-barbie9 {
  padding-top: 5rem;
}

#p-barbie9 {
text-align: right;
width: 72%;
right: 4%;
top: 10%;
}

#p-barbie9-1 {
padding-top: 1rem;
}

#p-barbie9-2 {
  top: 0;
  left: 2.5%;
  width: 80%;
}

#div-barbie9-3 {
margin-top: 2rem;
}

#img-barbie9-3 {
  padding-top: 2rem;
  }
  
#p-barbie9-3 {
  top: 0;
  right: 2.5%;
  width: 80%;
  text-align: right;
}

#div-barbie10 {
  margin-top: 2rem;
}

#img-barbie10 {
  padding-top: 5rem;
}

#p-barbie10 {
  top: 4%;
  left: 3%;
}

#p-barbie10-2 {
  bottom: 0;
  right: 3%;
  text-align: right;
  width: 80%;
}

#p-barbie11 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}

#p-barbie12 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  text-align: center;
}

#div-scarf-cell {
  display: flex;
  justify-content: space-around;
  padding: 2%;
  max-height: 12rem;
}

#img-barbie-terrazza {
  padding-left: 3%;
  padding-right: 3%;
}

#div-scarf-cell > img {
  max-height: 200px;
}
 
#img-cell {
  max-width: 37.5%;
}

#img-scarf {
  max-width: 36%;
}

#p-barbie13 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  text-align: center;
}

#p-barbie14 {
  padding-top: 3.5rem;
  padding-bottom: 3rem;
  text-align: center;
  transform: translateX(-.5rem);
}

#img-sorpresa1 {
  max-width: 54%;
  padding-left:  6%;
}

#img-sorpresa2 {
  max-width: 54%;
  padding-left:  2%;
  margin-top: -5rem;
}

#div-cell-mano {
  display: flex;
  justify-content: right;
  max-height: 6rem;
}

#p-barbie16 {
  padding-top: 3rem;
  text-align: right;
  padding-right: 4%;
}

#img-ciabatta-rovesciata {
  padding-left: 31%;
}

#img-cell-pixel {
  width: 50%;
  height: 10px;
}

#img-cell-mano {
  max-width: 45%;
  padding-right: 20%;
  height: 100%;
  height: auto;
}

#p-barbie18, #p-barbie19, #p-barbie20 {
  padding-top: 5rem;
  padding-bottom: 1rem;
}

#p-barbie21 {
  margin-top: -3rem;
  margin-bottom: 2rem;
}

#p-aia1 {
  top: 3%;
  right: 16%;
}

#p-aia2 {
  top: 61%;
  left: 3%;
  right: 3%;
}

#p-aia3 {
  bottom: 1%;
  left: 3%;
  z-index: 1;
}

#img-rain {
  margin-top: -6rem;
}

#p-barbie22 {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
}

#div-rain {
  text-align: right;
}

#div-rain-upside-down {
  margin-top: 4rem;
}

#p-rain-upside-down {
  top: 0;
  right: 5%;
  text-align: right;
}

#p-rain-upside-down-2 {
  text-align: center;
  bottom: 2%;
  left: 16%;
}

#p-barbie-23 {
  padding-right: 1rem;
  z-index: 1;
  position: relative;
  margin-bottom: -3rem;
}

#p-barbie-giorgio {
  top: 15%;
  left: 4%;
}

#p-barbie-giorgio-2 {
  top: 45%;
  right: 6%;
  text-align: right;
}

#p-barbie-giorgio-3 {
  bottom: 16%;
  left: 6%;
}

#p-barbie-giorgio-4 {
  bottom: 4%;
  left: 6%;
  color: white;
}

#p-barbie-24 {
  padding-top: 5rem;
}

#div-barbie-guarda-fuori {
  margin-top: 4rem;
}

#p-barbie-guarda-fuori {
  top: 0;
  left: 17%;
}

#p-barbie-guarda-fuori-2 {
  bottom: 4.2%;
  left: 22%;
  color: white;
}

#p-barbie-guarda-fuori-3 {
  top: 37%;
  left: 33%;
  transform: rotate(-62deg);
  width: 76%;
}

#p-barbie-25, #p-barbie-26, #p-barbie-27 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#img-barbie-bella-primo-piano {
  max-width: 50%;
  margin-left: 54%;
}

#div-barbie-28 {
  margin-top: 3rem;
}

#p-barbie-28 {
  left: 3%;
  top: 12%;
}

#div-leggendo {
  background-color: #717179;
  padding: 1rem;
  min-height: 15rem;
  color: white;
}

#img-leggendo {
  width: 37%;
  bottom: 0;
  right: 0;
}

#p-leggendo {
  top: 3.4rem;
  left: 1.4rem;
  right: 4.4rem;
  z-index: 1;
}

#div-bella3, #div-bella5 {
  background-color: #717179;
  padding: 1rem;
  margin-top: 3rem;
  color: white;
  margin-bottom: 4rem;
}

#div-bella1 {
  margin-top: 2rem;
}

#img-bella1 {
  position: relative;
  z-index: 1;
}
#p-bella1 {
  top: -6%;
  left: 2%;
  z-index: 2;
}

#p-bella2 {
  top: 10.5%;
  right: 2%;
  max-width: 70%;
  text-align: right;
  z-index: 2;
}

#p-bella3 {
  bottom: 44%;
  left: 5%;
  color: white;
  z-index: 2;
}

#p-bella4 {
  bottom: 23%;
  right: 7%;
  color: white;
  text-align: right;
  z-index: 2;
}

#p-bella5 {
  position: relative;
  margin-left: 2%;
  margin-right: 2%;
  text-align: right;
  z-index: 1;
}

#img-bella5 {
  margin-top: -3rem;
}

#div-bella-sketch {
  margin-top: 6rem;
}

#p-bella-sketch {
  top: -1rem;
  right: 3%;
  text-align: right;
}

#div-bella6 {
  background-color: #717179;
  padding: 1rem;
  color: white;
  margin-top: -2rem;
  padding-top: 5rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
}

#div-bella-sketch2, #div-bella-sketch3 {
  margin-top: 3rem;
}

#p-bella7 {
  top: 45%;
  left: 5%;
}

#p-bella7-1 {
  top: -2rem;
  left: 26%;
  z-index: 1;
}

#p-bella7-1-2 {
  bottom: -2rem;
  right: 3%;
  text-align: right;
  z-index: 1;
}

#div-bella-sketch4 {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

#p-bella-sketch3 {
  top: 23%;
  right: 3%;
  text-align: right;
}

#p-bella-sketch3-2 {
  bottom: 13%;
  left: 4%;
}

#div-bella-square2 {
  padding-top: 6rem;
}

#p-bella-square1 {
  top: 2%;
  left: 36%;
  right: 5%;
}

#img-bella-square1 {
  padding-left: 2px;
}

#p-bella-square2 {
  bottom: 5%;
  left: 4%;
  right: 37%;
  text-align: right;
}

#img-bella-square2 {
  padding-right: 4px;
}

#p-bella8 {
  margin-top: 5rem;
  text-align: center;
  margin-bottom: .8rem;
}

#p-bella8-2 {
  margin-top: 5rem;
  text-align: center;
  margin-bottom: 1rem;
}

#div-bella9 {
  background-color: #717179;
  padding: 1rem;
  color: white;
  margin-top: 4rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

#p-bella-rect1, #p-bella-rect2, #p-bella-rect3, #p-bella-rect4, #p-bella-rect5, #p-bella-rect6, #p-bella-primo-piano {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

#p-bella-giorgio-ricorda {
  background-color: #717179;
  padding: 1rem;
  color: white;
  margin-top: 4rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

#p-bella-20 {
  padding-top: 5rem;
}

#p-bella-light, #p-bella-light1, #p-bella-light2, #p-bella-light3, #p-bella-light4  {
  padding-top: 5rem;
  padding-bottom: 1rem;
}

#p-bella-light2 {
  background-color: #1d1b12;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: white;
}

#p-bella-light4 {
  padding-top: 1rem;
  text-align: center;
}

#div-piccolo {
  margin-top: 4rem;
}

#p-piccolo0 {
  top: -3%;
  right: 13%;
  text-align: right;
}

#p-piccolo1, #p-piccolo2 {
  padding-top: 4rem;
  padding-left: 3%;
  padding-right: 4%;
  z-index: 1;
  position: relative;
}

#p-piccolo {
  padding-top: 3rem;
  padding-left: 3%;
  padding-right: 12%;
}

#img-piccolo1 {
  margin-top: -2rem;
}

#p-piccolo1-2 {
  padding-top: 7rem;
  position: relative;
}

#p-piccolo1-4 {
  padding-top: 1rem;
  z-index: 1;
  position: relative;
}

#p-piccolo1-4-1 {
  bottom: 60%;
  left: 3%;
}

#p-piccolo1-4-2 {
  margin-top: 1rem;
  padding-bottom: 2rem;
  position: relative;
}

#img-piccolo2 {
  margin-top: -.7rem;
}

#img-piccolo1-2 {
  margin-top: -1rem;
}

#img-piccolo1-4 {
  margin-top: -8rem;
}

#img-piccolo1-3 {
  margin-top: -19rem;
  margin-bottom: 4rem;
}

#p-piccolo2 {
padding-bottom: 1rem;
}

#p-piccolo4 {
  padding-top: 2rem;
  text-align: center;
}

#p-piccolo5 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  text-align: center;
}

#p-piccolo6 {
  padding-top: 4rem;
  padding-left: 3%;
  padding-right: 7%;
  padding-bottom: 4rem;
  text-align: center;
}

#p-giorgio-tutti {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
}

#p-giorgio-tondi1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#img-giorgio-tondi1 {
  margin-top: 1rem;
}

#p-giorgio-giano {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

#p-giorgio-ball {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

#p-giorgio-mani {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

#p-giorgio-mani2 {
  margin-top: -11.5rem;
  margin-bottom: 9rem;
  margin-left: 20.5%;
}

#p-giorgio-coppia {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

#p-giorgio-doloroso {
  padding-top: 4rem;
  padding-bottom: 0rem;
}

#img-giorgio-eye {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

#p9-p-1 {
  padding-left: 14%;
  padding-top: 2.5rem;
  margin-bottom: 0rem;
  position: relative;
  z-index: 1;
}

#p9-p-3, #p9-p-4, #p9-p-6, #p9-p-7, #p9-p-8 {
  padding-top: 2.5rem;
}

#p9-p-5 {
  bottom: 4.5%;
  left: 9%;
  right: 12%;
}

#p-tutti-soffio {
  top: 10%;
  left: 30%;
  right: 3%;
}

#p-tutti-soffio2 {
  top: -12%;
  left: 3%;
  right: 4%;
  text-align: right;
}

#p-tutti-soffio3 {
  top: -3.5%;
  left: 20%;
  right: 4%;
  text-align: right;
}

#div-tutti-soffio, #div-tutti-soffio2 {
  margin-top: 2rem;
}

#div-tutti-soffio3 {
  margin-top: 3rem;
}

#div-tutti-antonio {
  overflow-x: hidden;
}

#p9-p-3-2 {
  margin-top: -1rem;
  margin-bottom: 3rem;
}

#p9-p-3-3 {
  margin-top: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  padding-left: 0;
  text-align: center;
  margin-left: -15px;
}

#img-tutti-bella {
margin-top: -3rem;
}

#p9-p-2 {
  top: 13%;
  left: 10%;
  right: 12%;
  text-shadow: 0 0 3px white;
}

#p9-p-2-2 {
  top: 5%;
  right: 6%;
  text-align: right;
  color: white;
}

#div-tutti2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: black;
}

#div-tutti {
  padding-bottom: 3rem;
  background-color: black;
}

#p9-p-2-2-2 {
  top: 82%;
  left: 36%;
  color: white;
  padding-bottom: 3rem;
}

#p9-p-2-2-3 {
  top: -27%;
  left: 3%;
  color: white;
  right: 5%;
  text-align: right;
}

#div-tutti3 {
  padding-top: 2rem;
  background-color: black;
}

#p9-p-2-3 {
  position: relative;
  z-index: 1;
  margin-top: -0rem;
  color: white;
  background-color: black;
}

#p9-p-2-4 {
  color: white;
  background-color: black;
  margin-left: -10px;
  padding-top: 1rem;
  padding-left: 0;
  text-align: center;
}

#p9-p-6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#div-scarf {
  margin-top: 3rem;
  padding-top: 10rem;
  color: white;
  background-color: black;
}

#img-scarf3 {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

#p9-p-7 {
  top: 1%;
  left: 3%;
  right: 6%;
  text-align: right;
}

#p9-p-7-2 {
  top: 39%;
  left: 3%;
  right: 8%;
  text-align: right;
}

#p9-p-8 {
  top: 60%;
  right: 13%;
}
  
#p9-p-8-2 {
padding-top: 3rem;
padding-bottom: 3rem;
}

#p9-p-8-3 {
  bottom: 10%;
  left: 6%;
}

#div-stranezza {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

#img-scarf1 {
  padding-top: 2rem;
}
