@import url(https://fonts.googleapis.com/css2?family=Bodoni+Moda&display=swap);
.mainGrid {
  transform-origin: 50% 0%;
  /*margin-top: 10vh;*/
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

#scrollDown {
  opacity: 0;
  display: flex;
  position: fixed;
  bottom: 0;
  gap: 10px;
  right: 20px;
  /* height: 150 px ; */
  width: 10px;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: space-evenly;
  align-items: flex-start;
}

#scrollDownLine {
  height: 100px;
  margin-left: -50%;
  bottom: 0;
  border-left: 1px solid white;
}

#scrollDownText {
  writing-mode: vertical-lr;
  text-align: right;
  /* transform: rotateZ(180deg); */
  margin-left: -10px;
  margin-top: -160px;
  color: white;
  font-family: DINRegular, sans-serif;
  font-size: 14px;
}

@font-face {
  font-family: DINRegular;
  src: url(../fonts/DIN-Regular.295d1e.woff);
}
@font-face {
  font-family: DINBold;
  src: url(../fonts/DIN-Bold.1a91f8.woff);
}
.logo {
  pointer-events: none;
  height: 100px;
  margin-bottom: 30vh;
  position: fixed;
  height: 100%;
  width: 100%;
  display: grid;
  z-index: 10000;
}

.cursor {
  position: fixed;
  height: 20px;
  pointer-events: none;
}

.cursor__ball--big {
  position: fixed;
  top: -15px;
  left: -15px;
  mix-blend-mode: blend;
  z-index: 1000;
  transform-origin: center;
  fill: white;
  display: flex;
}

:root {
  --shopContent: "CIAO";
}

#cursorText {
  pointer-events: none;
  position: relative;
  font-size: 12px;
  text-align: center;
  vertical-align: middle;
  width: 60px;
  left: -15px;
  top: 7.5px;
  height: 60px;
  font-family: DINBold, sans-serif;
  opacity: 0;
  text-align: center;
  z-index: 80000;
  white-space: nowrap;
  color: #890000;
}

.hoverCursor::after {
  top: 20px;
  left: 13px;
  text-align: center;
  position: absolute;
  font-family: DINBold, sans-serif;
  color: #890000;
  font-size: 10pt;
  transform: scale(0.5);
  animation: opacityAnim 0.1s linear;
}

#scroll-down {
  display: block;
  position: relative;
  padding-top: 79px;
  text-align: center;
}

#scroll-down::before {
  -webkit-animation: elasticus 2s cubic-bezier(1, 0, 0, 1) infinite;
  /* Safari 4+ */
  -moz-animation: elasticus 2s cubic-bezier(1, 0, 0, 1) infinite;
  /* Fx 5+ */
  -o-animation: elasticus 2s cubic-bezier(1, 0, 0, 1) infinite;
  /* Opera 12+ */
  animation: elasticus 2s cubic-bezier(1, 0, 0, 1) infinite;
  /* IE 10+, Fx 29+ */
  position: absolute;
  top: 0px;
  left: 50%;
  margin-left: -1px;
  width: 1px;
  height: 90px;
  background: white;
  content: " ";
}

@-webkit-keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}
@-moz-keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}
@-o-keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}
@keyframes elasticus {
  0% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50.1% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform-origin: 0% 100%;
    -ms-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    -o-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
}
#paschka {
  display: block;
  color: white;
  font-family: helvetica neue, helvetica, arial;
  font-size: 32px;
  text-decoration: none;
  position: fixed;
  bottom: 0px;
  right: 0px;
  padding: 0px;
  transition: all 0.1s ease;
  background: #000;
  height: 40px;
  line-height: 30px;
  vertical-align: middle;
  width: 40px;
  text-align: center;
  border-radius: 5%;
  bottom: 20px;
  right: 20px;
}

#paschka:hover {
  background: #232323;
  transition: all 0.1s ease;
  color: #f0f0f0;
}

.cursor__ball--small {
  position: fixed;
  transform-origin: center;
  top: -5px;
  left: -5px;
  mix-blend-mode: blend;
  z-index: 1000;
  fill: white;
}

.cursor__ball circle {
  fill: #ffffff;
}

.cursor__ball--big circle {
  fill: #ffffff50;
}

.logoRotatingOutside {
  margin-left: auto;
  margin-right: auto;
  animation: spin 3s infinite linear;
  animation-fill-mode: forwards;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  grid-row-start: 3;
  grid-column-start: 1;
  grid-row-end: 1;
}

.pulsating-circle {
  z-index: 10000000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 12px;
  height: 12px;
}

.spacer {
  width: 100%;
  height: 500px;
}

.valentinoHotspot {
  position: absolute;
  width: 30px;
  z-index: 999999;
  height: 24px;
  padding-top: 6px;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: fader 2s ease infinite;
  transition: all 0.2s;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-family: DINRegular;
  color: #555;
}

.pulsating-circle:before {
  content: "";
  position: relative;
  display: block;
  width: 300%;
  height: 300%;
  box-sizing: border-box;
  margin-left: -100%;
  margin-top: -100%;
  border-radius: 45px;
  background-color: #00000000;
  stroke-color: #ff9999;
  border: 2px solid white;
  -webkit-animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.pulsating-circle:hover {
  animation-play-state: paused;
}

.pulsating-circle:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

@-webkit-keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%, 100% {
    opacity: 0;
  }
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%, 100% {
    opacity: 0;
  }
}
@-webkit-keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
.imgContainer {
  width: 100%;
  overflow: hidden;
  height: 100%;
}

.logoFixedInside {
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  z-index: 1000;
  margin-bottom: auto;
  grid-row-start: 3;
  grid-column-start: 1;
  grid-row-end: 1;
}

.customCursor {
  pointer-events: none;
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 1vw;
  font-size: 14pt;
  font-family: DINBold, sans-serif;
  height: 1vw;
}

a .mobileOnly {
  display: block;
}

.desktopOnly {
  display: none;
}

.imageMovement {
  animation: imageMovementAnim 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.zoomIn {
  /*-webkit-transform: scale(1.2) translateY(150px);*/
  /*transform: scale(1.2) translateY(150px);
  transform-origin: 50% 0;*/
  opacity: 0;
}

@keyframes imageMovementAnim {
  100% {
    opacity: 1;
    /*transform: scale(1)  translateY(0px);*/
  }
}
.introAnim {
  animation: introAnim 1.5s cubic-bezier(0.6, 0, 0.2, 1);
  transform-origin: 50% 0;
  animation-fill-mode: forwards;
  animation-delay: 0.1s;
}

.introAnimFooter {
  animation: introAnim 1.5s cubic-bezier(0.6, 0, 0.2, 1) forwards, opacityAnim 1.5s cubic-bezier(0.6, 0, 0.2, 1);
}

.pause-play-img {
  width: 40px !important;
  bottom: 16px !important;
  left: 16px !important;
}

.specialRow {
  width: 100%;
  margin-left: 0%;
  margin-right: 0%;
}

@media (min-width: 800px) {
  .specialRow {
    width: 200% !important;
    margin-left: -50% !important;
    margin-right: -50% !important;
  }

  .parallax {
    transition: all 0.1s;
    /*animation-fill-mode: forwards;*/
  }

  .customCursor {
    display: block !important;
  }

  .valentinoTextAnimated {
    font-size: 130pt !important;
    line-height: 1.2;
  }

  .footingCTA {
    width: 140px;
    transition: 0.5s all;
  }

  .footingCTA:hover {
    /*	transform:scale(0.9);*/
  }

  .pause-play-img {
    width: 40px !important;
    bottom: 36px !important;
    left: 36px !important;
  }

  .valentinoCTA {
    width: auto !important;
  }

  .valentinoRow {
    margin-bottom: 160px !important;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: inherit;
    position: relative;
  }

  .zoomIn:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  .valentinoTextTitle {
    font-size: 65pt !important;
    line-height: 55pt !important;
  }

  body::-webkit-scrollbar {
    display: none;
  }

  body {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
  }

  #gridContainer {
    max-width: 1920px;
    opacity: 0;
    transform: translateY(500);
  }

  .footer {
    gap: 20px;
    opacity: 0;
    width: auto !important;
    margin-left: auto !important;
    height: auto !important;
  }

  .valentinoNumber {
    font-size: 75pt !important;
  }

  .valentinoNumberLeft {
    font-size: 75pt !important;
  }

  .valentinoText {
    font-size: 44pt !important;
  }

  .valentinoTextLeft {
    font-size: 44pt !important;
  }

  .valentinoItem {
    position: absolute !important;
    overflow: hidden;
  }

  .video-parent-class {
    position: relative;
  }

  * {
    cursor: none;
  }

  #cursor {
    pointer-events: none;
    /*width: 35px;
    height: 35px;
    position: absolute;
    top: 0;
    left: 0;
    background: blue;
    border-radius: 2px;
    z-index: 999999999999999;
    transition: linear height 0.2s, linear width 0.2s;
    background-color: rgb(255, 255, 255, 0.1);
    border-radius: 50%;*/
  }

  #cursor::after {
    /*border-radius: 2px;
    z-index: 999999999999999;
    transition: linear height 0.2s, linear width 0.2s;
    background-color: rgb(255, 0, 0, 1);
    border-radius: 50%;*/
  }

  .hoveredCursor {
    width: 50px !important;
    height: 50px !important;
  }

  .valentinoImg {
    /* width: 100%; */
    height: 100% !important;
    object-fit: contain;
    z-index: 100000;
  }

  .mainGrid {
    grid-auto-rows: 0.5fr;
    margin-top: 20vh;
    height: max-content;
    width: 100%;
    grid-auto-rows: 0.5fr;
    margin-bottom: 5%;
    margin-top: 0%;
    margin-left: auto;
    margin-right: auto;
  }

  .mobileOnly {
    display: none;
  }

  .desktopOnly {
    display: block;
    width: 100%;
  }

  .valentinoNumber {
    font-size: 80pt !important;
  }

  .valentinoNumberLeft {
    font-size: 80pt !important;
  }

  .starContainer {
    width: 25% !important;
    margin-left: 37.5% !important;
  }

  @-webkit-keyframes leftStarAnimation

	/* Safari and Chrome */ {
    from {
      -webkit-transform: translateX(0px);
      -o-transform: translateX(0px);
      transform: translateX(0px);
    }
    to {
      -webkit-transform: translateX(150%);
      -o-transform: translateX(150%);
      transform: translateX(150%);
    }
  }
  @keyframes leftStarAnimation {
    from {
      -ms-transform: translateX(0px);
      -moz-transform: translateX(0px);
      -webkit-transform: translateX(0px);
      -o-transform: translateX(0px);
      transform: translateX(0px);
    }
    to {
      -ms-transform: translateX(150%);
      -moz-transform: translateX(150%);
      -webkit-transform: translateX(150%);
      -o-transform: translateX(150%);
      transform: translateX(150%);
    }
  }
  @-webkit-keyframes rightStarAnimation

	/* Safari and Chrome */ {
    from {
      -webkit-transform: translateX(0px);
      -o-transform: translateX(0px);
      transform: translateX(0px);
    }
    to {
      -webkit-transform: translateX(-150%);
      -o-transform: translateX(-150%);
      transform: translateX(-150%);
    }
  }
  @keyframes rightStarAnimation {
    from {
      -ms-transform: translateX(0px);
      -moz-transform: translateX(0px);
      -webkit-transform: translateX(0px);
      -o-transform: translateX(0px);
      transform: translateX(0px);
    }
    to {
      -ms-transform: translateX(-150%);
      -moz-transform: translateX(-150%);
      -webkit-transform: translateX(-150%);
      -o-transform: translateX(-150%);
      transform: translateX(-150%);
    }
  }
}
.svgStar {
  margin-left: 5vw;
  margin-right: 5vw;
  margin-top: -2vw;
  vertical-align: middle;
}

.pause-play-img {
  position: absolute;
  /*top: 50%;*/
  z-index: 99;
  /*margin-top: -50px;*/
  margin-right: auto;
  display: block;
  opacity: 1;
  width: 5vh;
}

.backgroundContainer {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.valentinoTextAnimated {
  font-size: 70pt;
  color: white;
  white-space: nowrap;
  width: 200%;
  font-family: "Bodoni Moda", serif;
  text-align: center;
}

.hideButtons {
  visibility: hidden;
}

.valentinoRow {
  width: 100%;
  margin-bottom: 8vh;
}

@-webkit-keyframes leftStarAnimation

/* Safari and Chrome */ {
  from {
    -webkit-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
  to {
    -webkit-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes leftStarAnimation {
  from {
    -ms-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
  to {
    -ms-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@-webkit-keyframes rightStarAnimation

/* Safari and Chrome */ {
  from {
    -webkit-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
  to {
    -webkit-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes rightStarAnimation {
  from {
    -ms-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
  to {
    -ms-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes rotating

/* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}

.starContainer {
  display: flex;
  margin-top: 3vh;
  justify-content: space-between;
  flex-direction: row;
  align-content: center;
  width: 70%;
  margin-left: 15%;
  align-items: center;
}

.leftStar {
  -webkit-animation: leftStarAnimation 2s alternate infinite ease-in-out;
}

.rightStar {
  -webkit-animation: rightStarAnimation 2s alternate infinite ease-in-out;
}

.leftStar svg,
.rightStar svg {
  height: 10px;
}

.centerStar svg {
  height: 17px;
}

.centerStar {
  -webkit-animation: rotating 5s linear infinite;
  -moz-animation: rotating 5s linear infinite;
  -ms-animation: rotating 5s linear infinite;
  -o-animation: rotating 5s linear infinite;
  animation: rotating 5s linear infinite;
}

.fakeheader {
  position: fixed;
  width: 100%;
  z-index: 10000;
  top: 0;
}

video {
  /* override other styles to make responsive */
  width: 100% !important;
  height: auto !important;
  background-size: cover;
}

.bottomItem {
  transform: translateY(50%);
}

.topItem {
  transform: translateY(-50%);
}

.valentinoItem {
  display: inline-block;
  position: absolute;
  transform-origin: 0% 0%;
  position: relative;
  overflow: hidden;
  display: flex;
  overflow: visible;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.marker {
  width: 20px;
  height: 20px;
  display: inline-block;
  /*background: orange;
  margin: 0 auto;
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  position: relative;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes introAnim {
  0% {
    /*	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
    transform: translateY(500px);
    opacity: 0;
  }
  100% {
    /*	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
    transform: translateY(0px);
    opacity: 1;
  }
}
@-o-keyframes introAnim {
  0% {
    /*	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
    transform: translateY(500px);
    opacity: 0;
  }
  100% {
    /*	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes introAnim {
  0% {
    /*	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
    transform: translateY(500px);
    opacity: 0;
  }
  100% {
    /*	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
    transform: translateY(0px);
    opacity: 1;
  }
}
@-webkit-keyframes float {
  0% {
    /*	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
    transform: translatey(0px) rotate(-3deg);
  }
  50% {
    /*box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);*/
    transform: translatey(-20px) rotate(0deg);
  }
  100% {
    /*	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
    transform: translatey(0px) rotate(3deg);
  }
}
@-moz-keyframes float {
  0% {
    /*	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
    transform: translatey(0px) rotate(-3deg);
  }
  50% {
    /*box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);*/
    transform: translatey(-20px) rotate(0deg);
  }
  100% {
    /*	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
    transform: translatey(0px) rotate(3deg);
  }
}
@-o-keyframes float {
  0% {
    /*	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
    transform: translatey(0px) rotate(-3deg);
  }
  50% {
    /*box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);*/
    transform: translatey(-20px) rotate(0deg);
  }
  100% {
    /*	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
    transform: translatey(0px) rotate(3deg);
  }
}
@keyframes float {
  0% {
    /*	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
    transform: translatey(0px) rotate(-3deg);
  }
  50% {
    /*box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);*/
    transform: translatey(-20px) rotate(0deg);
  }
  100% {
    /*	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
    transform: translatey(0px) rotate(3deg);
  }
}
.floatingAnim {
  animation: float 4s ease-in-out infinite alternate;
}

.scaleEnter {
  transform: scale(1.5);
}

.opacityEnter {
  opacity: 0;
}

.valentinoImg {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top left;
  left: 0;
  display: block;
}

hotspot:hover {
  border-color: lightseagreen !important;
  animation-play-state: paused;
  color: #fff;
}

.hotspot:hover::after {
  background-color: lightseagreen;
}

@keyframes fader {
  50% {
    border-color: rgba(255, 255, 255, 0);
    transform: scale(0);
  }
  99% {
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1);
  }
  100% {
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(0);
  }
}
.valentinoScreenWrapper {
  position: relative;
  height: 100%;
}

.valentinoSpecialRow {
  height: 100vh;
  width: 100%;
}

.valentinoFixed {
  height: 100vh;
  width: 100%;
  position: fixed;
}

.special {
  position: absolute;
}

.valentinoText {
  width: 100%;
  font-size: 25pt;
  font-family: "Bodoni Moda";
  text-align: center;
  color: white;
  /*height: 100%;*/
  object-fit: contain;
}

.valentinoTextLeft {
  width: 100%;
  font-size: 25pt;
  font-family: "Bodoni Moda";
  text-align: left;
  color: white;
  /*height: 100%;*/
  object-fit: contain;
}

.valentinoNumber {
  width: 100%;
  font-size: 35pt;
  font-family: "Bodoni Moda";
  text-align: center;
  color: white;
  /*height: 100%;*/
  object-fit: contain;
}

.valentinoNumberLeft {
  width: 100%;
  font-size: 35pt;
  font-family: "Bodoni Moda";
  text-align: left;
  color: white;
  /*height: 100%;*/
  object-fit: contain;
}

.parallax {
  transform-origin: 50% 0%;
  /*animation-fill-mode: forwards;*/
}

.valentinoTextTitle {
  text-align: right;
  font-size: 31pt;
  position: relative;
  line-height: 27pt;
  color: white;
  z-index: 100000;
  font-family: "Bodoni Moda";
  animation: opacityAnim 1.2s ease-in forwards;
}

.valentinoCTATitle {
  padding: 12px;
  width: 80px;
  /* padding-left: 15%; */
  /* padding-right: 15%; */
  background: white;
  margin-top: 5%;
  margin-left: auto;
  font-size: 10pt;
  font-family: DINBold, sans-serif;
  text-align: center;
  color: #890000;
}

@keyframes opacityAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.opacityContrary {
  animation: opacityAnimContrary 1s cubic-bezier(0.6, 0, 0.2, 1);
  animation-fill-mode: forwards;
}

@keyframes opacityAnimContrary {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.loaderContainer {
  pointer-events: none;
  display: block;
}

.loader {
  position: fixed;
  pointer-events: none;
  top: 50%;
  left: 50%;
  z-index: 10000;
  fill: white;
  transform: translate(-50%, -50%);
  animation: rotation 4.5s linear;
  -webkit-animation: rotation 4.5s linear;
  animation-fill-mode: forwards;
}

@keyframes rotation {
  from {
    transform: translate(-50%, -50%) rotate(0) scale(1);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) scale(5);
    opacity: 0;
    display: none;
  }
}
@-webkit-keyframes rotation {
  from {
    transform: translate(-50%, -50%) rotate(0) scale(1);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) scale(5);
    opacity: 0;
    display: none;
  }
}
.loaderCounter {
  position: fixed;
  content: counter(count);
  top: 50%;
  z-index: 10000;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: counter 5s linear infinite alternate;
  counter-reset: count 0;
  font-size: 55px;
  font-family: "Bodoni Moda", serif;
  color: white;
}

.loader img {
  width: 100%;
  height: 100%;
  fill: white !important;
  color: white !important;
}

.alternativeFontSize {
  font-size: 10px !important;
}

.valentinoCTA {
  min-width: 80px;
  padding: 14px;
  /* padding-left: 15%; */
  /* padding-right: 15%; */
  background: white;
  line-height: 0.8;
  letter-spacing: 0.4px;
  margin-top: 10%;
  margin-left: auto;
  letter-spacing: 0.4px;
  margin-right: auto;
  white-space: nowrap;
  font-size: 12px;
  font-family: DINBold, sans-serif;
  text-align: center;
  color: #890000;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: inherit;
}

.footer {
  gap: 20px;
  display: flex;
  position: fixed;
  bottom: 0;
  width: 50%;
  margin-left: 25%;
  height: 10vh;
  opacity: 0;
  margin-bottom: 32px;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.footingCTA {
  padding: 16px;
  /* padding-left: 15%; */
  /* padding-right: 15%; */
  background: white;
  line-height: 0.8;
  letter-spacing: 0.4px;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  font-size: 14px;
  font-family: DINBold, sans-serif;
  text-align: center;
  color: #890000;
  margin-top: 10%;
}

.footingCTA:hover {
  color: #890000;
}

.footingCTA:visited {
  color: #890000;
}

.valentinoVideo {
  backface-visibility: hidden;
  object-fit: cover;
  transform-origin: 50% 0%;
}

.marginated {
  margin: 10px;
}

.rounded {
  border-radius: 20px;
}

.scroller {
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
}

.background {
  width: 100%;
  position: fixed;
  height: 100%;
  margin: 0;
}

.background img {
  object-fit: fill;
  width: 100%;
  height: 100%;
}

body,
html {
  overflow-x: clip;
  width: 100%;
  height: 100%;
  margin: 0;
}

@media all and (device-width: 768px) and (device-height: 1024px) {
  .customCursor {
    display: none;
  }
}
@media all and (device-width: 1024px) and (device-height: 1366px) {
  .customCursor {
    display: none;
  }
}
.th-top {
  display: none !important;
}

.th-hd-button {
  display: none !important;
}

.th-speed-button {
  display: none !important;
}

.th-loader {
  display: none !important;
}

.th-text-active-color * {
  color: #890000 !important;
}

.th-components-bg-color {
  stroke: #890000 !important;
  background-color: #890000 !important;
}

.th-clickable-overlay:hover .th-button-color:not(.th-hover-disabled):not(.th-button-disabled) {
  fill: #890000 !important;
  color: #890000 !important;
}

.th-button-color:not(.th-hover-disabled):not(.th-button-disabled):hover {
  fill: #890000 !important;
  color: #890000 !important;
}

.th-button-color-active {
  fill: #890000 !important;
  color: #890000 !important;
}
