/* ----------------------------------------------------------- */
/* Magic Living ---------------------------------------------- */
/* ----------------------------------------------------------- */
html {
  height: 100%;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}

#magic-living {
  margin-top: 100px;
  line-height: 0;
}
#magic-living .flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
#magic-living .bgGrey {
  background-color: #EAEAEB;
}
#magic-living .bgBlack {
  background-color: #000;
}
#magic-living section {
  padding: 50px 0;
  position: relative;
}
#magic-living .presentation {
  text-align: left;
  font-size: clamp(16px, 2vw, 18px);
  line-height: clamp(20px, 2vw, 26px);
}
#magic-living .presentation p {
  font-size: clamp(16px, 2vw, 18px);
  line-height: clamp(20px, 2vw, 26px);
}
#magic-living .presentation h1 {
  text-align: center;
  border-bottom: 0;
  color: #000;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 120%;
}
#magic-living .presentation h2, #magic-living .presentation h3 {
  text-align: center;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 34px);
  margin-bottom: 20px;
  margin-top: 40px;
  line-height: 150%;
}
#magic-living .presentation h2 span, #magic-living .presentation h3 span {
  color: #D6001C;
}
#magic-living .presentation h3 {
  font-size: clamp(20px, 3vw, 28px);
  margin: 0 0 40px 0;
  padding: 0;
}
#magic-living .presentation h4 {
  text-align: center;
  font-size: clamp(20px, 3vw, 26px);
  margin: 50px 0;
  line-height: 120%;
}
#magic-living .presentation.img-container {
  padding: 0 !important;
  height: calc(100vh - 100px);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-end;
  line-height: 0;
}
#magic-living .presentation.img-container .container-small {
  height: auto;
  padding: clamp(15px, 2vw, 30px);
  text-align: center;
  margin-left: 60%;
}
#magic-living .presentation.img-container .container-small img {
  width: auto;
  margin-bottom: clamp(10px, 2vw, 20px);
}
#magic-living .presentation .txt-magic-living p {
  column-count: 2;
  margin: clamp(10px, 2vw, 20px) 0;
}
#magic-living .presentation .steps img {
  margin: 0 25px 50px 25px;
}
#magic-living .presentation .hashtag {
  text-align: center;
}
#magic-living .presentation .hashtag ul {
  list-style: none;
  margin: 50px 0 0 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
#magic-living .presentation .hashtag ul li {
  position: relative;
  float: left;
  background-color: #000;
  color: #FFFFFF;
  padding: 10px 10px 10px 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: normal;
}
#magic-living .presentation .hashtag ul li::before {
  position: absolute;
  top: 10px;
  left: 10px;
  content: "#";
}
#magic-living .presentation .btn-download {
  line-height: normal;
}
#magic-living .logo-mobile {
  display: none;
}

/* ---------------------------------------------------------------------------------------------------- */
/* ANIMAZIONI ----------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
.toAnimate {
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
  will-change: transform;
  -webkit-transition: all 0.7s ease 0.2s;
  -moz-transition: all 0.7s ease 0.2s;
  -ms-transition: all 0.7s ease 0.2s;
  -o-transition: all 0.7s ease 0.2s;
  transition: all 0.7s ease 0.2s;
  opacity: 0;
}
.toAnimate.in {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  will-change: transform;
  opacity: 1;
}

.toAnimateLeft {
  -webkit-transform: translateX(-100px);
  -moz-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  -o-transform: translateX(-100px);
  transform: translateX(-100px);
  will-change: transform;
  -webkit-transition: all 0.7s ease 0.2s;
  -moz-transition: all 0.7s ease 0.2s;
  -ms-transition: all 0.7s ease 0.2s;
  -o-transition: all 0.7s ease 0.2s;
  transition: all 0.7s ease 0.2s;
  opacity: 0;
}
.toAnimateLeft.in {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
  will-change: transform;
  opacity: 1;
}

.toAnimateRight {
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -ms-transform: translateX(100px);
  -o-transform: translateX(100px);
  transform: translateX(100px);
  will-change: transform;
  -webkit-transition: all 0.7s ease 0.2s;
  -moz-transition: all 0.7s ease 0.2s;
  -ms-transition: all 0.7s ease 0.2s;
  -o-transition: all 0.7s ease 0.2s;
  transition: all 0.7s ease 0.2s;
  opacity: 0;
}
.toAnimateRight.in {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
  will-change: transform;
  opacity: 1;
}

/* ---------------------------------------------------------------------------------------------------- */
/* MEDIA QUERY ---------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  #magic-living a.scrollDown {
    left: calc(50% - 20px);
    right: inherit;
  }
  #magic-living .presentation .steps img {
    margin: 0 15px 30px 15px;
  }
}
@media all and (max-width: 1023px) {
  #magic-living {
    margin-top: 66px;
  }
  #magic-living .presentation.img-container {
    height: calc(100vh - 66px);
  }
  #magic-living .presentation .hashtag ul {
    padding: 0;
    flex-direction: column;
  }
}
@media all and (max-width: 768px) {
  #magic-living .presentation.img-container .container-small {
    margin-left: 50%;
  }
  #magic-living .steps {
    flex-direction: column;
  }
  #magic-living .steps img {
    margin: 25px auto;
    width: 80%;
  }
  #magic-living a.scrollDown {
    bottom: 30px;
  }
}
@media all and (max-width: 767px) {
  #magic-living section {
    padding: 30px 0;
  }
  #magic-living .logo-mobile {
    display: block;
    margin: 0 auto;
    margin-bottom: clamp(10px, 2vw, 20px);
    width: 190px !important;
  }
  #magic-living .logo-desktop {
    display: none;
  }
  #magic-living .presentation.img-container {
    justify-content: center;
  }
  #magic-living .presentation.img-container .container-small {
    margin: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 70vw;
    height: 70vw;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  #magic-living .presentation h1 {
    color: #FFF;
  }
  #magic-living .presentation h2 {
    margin-bottom: 10px;
    margin-top: 20px;
    padding: 0;
  }
  #magic-living .presentation h3 {
    margin-bottom: 15px;
    margin-top: 0;
  }
  #magic-living .presentation .txt-magic-living p {
    column-count: 1;
  }
  #magic-living a.scrollDown {
    display: none;
  }
  #magic-living .container-small {
    margin-left: 10px;
    margin-right: 10px;
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
}

/*# sourceMappingURL=magic-living.css.map */
