@keyframes rot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes change {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
* {
  margin: 0;
  padding: 0;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

body {
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

body.hidden {
  overflow: hidden;
}

div {
  display: block;
}

canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.video-closer {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
}

.video-closer.show {
  display: block;
}

.header_img {
  position: absolute;
  height: 100%;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
}
.header_img::-webkit-scrollbar {
  width: 0px;
  background: rgba(255, 255, 255, 0);
}
.header_img img {
  height: 100%;
  display: block;
  margin: auto;
}

.model {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.model::-webkit-scrollbar {
  width: 0px;
  background: rgba(255, 255, 255, 0);
}

.cursor2.show {
  opacity: 1;
}

.hover {
  background-color: red;
  opacity: 0.5;
}

.cursorinnerhover {
  width: 50px;
  height: 50px;
  opacity: 0.5;
}

header {
  height: 100vh;
  padding: 0 50px;
  background-image: url(../media/headr.svg);
  background-size: cover;
  position: relative;
  color: white;
  position: relative;
}

.header_logo {
  position: relative;
  height: 50px;
}

.top {
  padding-top: 0px !important;
  padding-left: 0px !important;
}

.logo {
  position: absolute;
  top: 0;
  left: 10px;
}

.logo-light {
  opacity: 0;
  transition: all 0.3s ease-in;
}

.logo-dark {
  opacity: 0;
  transition: all 0.3s ease-in;
}

.logo-light.visible {
  opacity: 1;
}

.logo-dark.visible {
  opacity: 1;
}

section {
  position: relative;
  z-index: 1;
  background: white;
  height: 100vh;
  padding: 100px 185px 0;
}

.fixed-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url(../media/plp_lion_home.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fixed-bg-container {
  display: none;
}

.ios .fixed-bg {
  background-attachment: initial;
}

#canvas-container {
  position: relative; /* Keeps the content above the background */
}

.section_scroll {
  height: -moz-fit-content;
  height: fit-content;
  scroll-snap-align: start;
}

.video-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  z-index: 1;
  padding-bottom: 80px;
}

.video-section.fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.vjs-control-bar {
  display: none !important;
  display: none !important;
}

.vjs-big-play-button {
  display: none !important;
}

.video {
  height: -moz-fit-content;
  height: fit-content;
  width: 100vw;
  margin: auto;
  transition: height 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-dimensions {
  width: 100% !important;
  height: 100% !important;
  display: flex;
}

.video-iframe {
  display: flex;
  min-width: 100%;
  min-height: -moz-fit-content;
  min-height: fit-content;
  transform: scale3d(0.8, 0.8, 0.8);
  transition: all 0.5s ease-in;
  z-index: 10;
  padding: 0;
  margin: 0;
}
.video-iframe video {
  width: 100%;
  margin: auto;
  transform: scale3d(1, 1, 1) !important;
}

.video.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: contain;
     object-fit: contain;
}

nav {
  height: 100px;
  position: fixed;
  top: 0;
  width: calc(100% - 100px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  cursor: pointer;
  z-index: 10;
}

nav.active {
  left: 0px;
  padding: 0 50px;
  padding-bottom: 50px;
}

button[data-faciliti-popin] .background-circle {
  fill: white;
}

button[data-faciliti-popin] path,
button[data-faciliti-popin] .iris {
  fill: black;
}

button[data-faciliti-popin] .pupil {
  fill: white;
}

.header_menu {
  display: flex;
  align-items: center;
  -moz-column-gap: 35px;
       column-gap: 35px;
  font-size: 14px;
  font-weight: 900;
  line-height: 120%;
  text-transform: uppercase;
  opacity: 1;
  transition: all 0.3s ease-in;
}

.header_menu.hidden {
  display: none;
}

.header_menu.black {
  color: black;
}

.header_view {
  position: relative;
  z-index: 1;
}
.header_view svg defs clipPath rect {
  fill: black;
}

.header_menu_burg {
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: white;
  font-weight: 900;
  display: none;
  cursor: pointer;
  transition: all 0.3s ease-in;
}

.header_menu_burg.show {
  display: block;
  pointer-events: all;
}

.mobile-menu {
  position: fixed;
  width: calc(100vw - 120px);
  height: 100vh;
  z-index: 1000;
  top: 100%;
  left: 0%;
  padding: 30px 60px 50px;
  background-image: url(../media/headr.svg);
  background-size: cover;
  background-repeat: no-repeat;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu .header_logo {
  height: 50px;
}
.mobile-menu .header_logo img {
  position: relative;
}
.mobile-menu img {
  position: absolute;
  opacity: 1;
  right: 0;
  height: 100%;
  width: initial;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-menu .bottom {
  font-family: "AvenirNext";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 50px;
}
.mobile-menu .bottom .column {
  position: relative;
  z-index: 10;
  font-family: "AvenirNext";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin: 10px 0 30px;
  display: flex;
  justify-content: space-between;
}
.mobile-menu .bottom .column .right {
  display: flex;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.mobile-menu .bottom .column a {
  color: white;
  margin-right: 20px;
}
.mobile-menu .bottom p {
  margin-bottom: 20px;
}
.mobile-menu nav {
  position: relative;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%;
  text-transform: uppercase;
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu .header_item {
  display: block;
  margin: 5px 0px;
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  cursor: pointer;
  position: relative;
  z-index: 1000;
  padding-top: 20px;
  text-transform: uppercase;
}

.header_content {
  position: relative;
  left: calc(50% - 625px);
  height: calc(100% - 200px);
  max-width: 1250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.animated-element {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.5s, transform 0.5s;
}

.header_text-wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.header_text {
  width: 100%;
  position: relative;
  overflow: hidden;
  font-size: 110px;
  text-transform: uppercase;
  z-index: 1;
}
.header_text .main-text {
  width: -moz-fit-content;
  width: fit-content;
}

.header_text.right {
  display: flex;
  justify-content: flex-end;
}

.between {
  display: flex;
  justify-content: space-between;
}

.italic {
  font-style: italic;
}

.bold {
  font-weight: 900;
}

.sfirst {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: -moz-fit-content;
  height: fit-content;
  padding: 200px 185px 80px;
}

.sfirst_content {
  max-width: 1200px;
}
.sfirst_content h1 {
  font-weight: 900;
  font-size: 110px;
  line-height: 110%;
}

.sfirst_text_wrap {
  display: flex;
  justify-content: space-between;
}
.sfirst_text_wrap h1 {
  background: linear-gradient(90deg, #FB8006 2.07%, #FA6402 14.55%, #FB033D 47%, #F127AF 72.47%, #ED35CD 86.45%, #FB68FB 97.93%), linear-gradient(0deg, #000000, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sfirst_text_wrap_right {
  margin-top: 15px;
  margin-left: 50px;
}
.sfirst_text_wrap_right p {
  font-size: 40px;
  width: 450px;
}
.sfirst_text_wrap_right .bottom-text {
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-top: 35px;
  text-transform: uppercase;
}
.sfirst_text_wrap_right .bottom-text a {
  text-decoration: none;
  color: black;
}
.sfirst_text_wrap_right img {
  margin-right: 10px;
}
.sfirst_text_wrap_right span {
  margin-top: 0px;
}

.ssecond {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-height {
  height: 100px;
}

.sthird {
  padding: 0;
  height: -moz-fit-content;
  height: fit-content;
}
.sthird img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sfourth {
  padding-top: 200px;
  height: -moz-fit-content;
  height: fit-content;
  background: white;
  padding-bottom: 200px;
}
.sfourth .item {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sfourth .item .button {
  width: 180px;
  height: 50px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 35px;
  left: calc(100% - 215px);
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  background: #FFFFFF;
  border-radius: 4px;
  z-index: 1;
}
.sfourth .item .button img {
  margin-right: 10px;
}
.sfourth .item .button span {
  margin-top: 3px;
  font-weight: 900;
}
.sfourth .item:after {
  content: "";
  width: 100%;
  height: 65%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}
.sfourth .item .item-img, .sfourth .item video.item-video {
  width: 100%;
  height: 110%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0%;
  left: 0%;
}
.sfourth .item h2 {
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
  text-transform: uppercase;
}
.sfourth .item h1 {
  font-size: 40px;
  line-height: 120%;
  font-weight: 700;
  margin-top: 40px;
}
.sfourth .item h3 {
  font-size: 18px;
  line-height: 120%;
  margin-top: 40px;
  font-weight: 400;
}
.sfourth .text-wrap {
  position: absolute;
  left: 100px;
  bottom: 100px;
  color: white;
  z-index: 1;
}

.video.hidden {
  display: none;
}

.footer-cover {
  min-height: 500px;
  width: 100%;
  z-index: -2;
  transition: all 1s ease-in-out;
}

.footer_desktop .fixed-wrap {
  position: fixed;
  bottom: 0;
  height: 500px;
  margin-top: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: url(../media/headr.svg);
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
}

footer {
  position: fixed;
  bottom: 0;
  height: 500px;
  margin-top: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: url(../media/headr.svg);
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
}
footer img {
  position: absolute;
  right: 0;
  height: 100%;
  opacity: 0.6;
}
footer p {
  font-size: 14px;
  line-height: 170%;
  margin-top: 14px;
}
footer a {
  color: white;
}
footer .lang {
  margin-top: -15px;
  display: flex;
  -moz-column-gap: 5px;
       column-gap: 5px;
  align-items: center;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
}
footer::-webkit-scrollbar {
  width: 0px;
  background: rgba(255, 255, 255, 0);
}

.footer_mobile {
  display: none;
}

.column_one {
  width: 45%;
  margin-left: 90px;
  z-index: 1;
}
.column_one h1 {
  font-size: 60px;
  line-height: 120%;
  font-weight: 900;
}

.column_two {
  width: 220px;
  z-index: 1;
  margin-left: 90px;
  margin-right: 50px;
}
.column_two a {
  display: block;
  margin-top: 20px;
  font-size: 14px;
}

.column_three {
  width: 200px;
  z-index: 1;
  margin-right: 25px;
}
.column_three a {
  display: block;
  font-size: 14px;
  line-height: 100%;
  margin-bottom: 10px;
}
.column_three a:first-child {
  margin-bottom: 16px;
  margin-top: 14px;
}
.column_three a.ot-sdk-show-settings#ot-sdk-btn.ot-sdk-show-settings {
  color: white;
  border: 0px solid transparent;
  padding: 0;
  text-transform: uppercase;
  margin-top: 0px;
  font-size: 14px;
  margin-top: -7px;
  margin-bottom: 9px;
}
.column_three a.ot-sdk-show-settings#ot-sdk-btn.ot-sdk-show-settings:hover {
  color: white;
  background-color: transparent;
}
.column_three a.bold {
  line-height: 100%;
}
.column_three p {
  margin: 0;
}

.header_menu_burg.black {
  color: black;
}

.mobile-menu.active {
  top: 0%;
  overflow: hidden;
}
.mobile-menu.active .logo {
  top: -5px;
  left: -1px;
}

@media (max-height: 690px) {
  .mobile-menu.active {
    overflow: scroll;
  }
  .mobile-menu.active .mobile-menu.active .logo {
    top: 6px;
    left: 26px;
  }
}
.less1600 {
  display: block;
}

.more1600 {
  display: none;
}

.fixed-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: black;
  z-index: 100;
  display: none;
}
.fixed-video #autoplay-video {
  display: block;
  width: 100%;
  margin: auto;
}

.sound {
  padding: 10px;
  border-radius: 50px;
  background: white;
  position: absolute;
  top: 50px;
  right: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.project-link {
  display: flex;
  text-transform: uppercase;
  color: black;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0 !important;
  padding: 4px 0px;
  transition: 1s;
  cursor: pointer;
  margin: auto;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.project-link:before {
  content: "";
  background-color: black;
  background-image: linear-gradient(90deg, #FB8006 0%, #FA6402 13.02%, #FB033D 46.88%, #F127AF 73.44%, #ED35CD 88.02%, #FB68FB 100%);
  position: absolute;
  top: 0;
  left: -10px;
  right: -10px;
  height: 100%;
  z-index: -1;
  transition: 0.5s;
  transform: scaleX(0);
}
.project-link:hover {
  color: black;
}
.project-link:hover:before {
  transform: scaleX(1);
}

@media screen and (min-width: 1600px) {
  .less1600 {
    display: none;
  }
  .more1600 {
    display: block;
  }
  .sfirst_content {
    margin: auto;
  }
  .sfourth .item {
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 1250px) {
  section {
    padding: 0 135px;
  }
  .sfirst_content h1 {
    font-size: 90px;
  }
  .header_content {
    left: 0;
  }
}
@media screen and (max-width: 1050px) {
  .sfirst_text_wrap_right p {
    font-size: 20px;
    width: auto;
  }
  .sfirst_text_wrap_right .bottom-text {
    margin-top: 20px;
  }
  .sfirst_content h1 {
    font-size: 60px;
  }
  section {
    padding: 0 100px;
  }
  .ssecond iframe {
    height: 450px;
  }
  .column_one h1 {
    font-size: 40px;
  }
  .model {
    transform: scale(1);
  }
  .header_content {
    left: 0;
  }
}
@media screen and (max-width: 900px) {
  .fixed-bg {
    background-size: 250%;
  }
  .footer-cover {
    height: 170vw;
    width: 100%;
    z-index: 2;
    transition: all 1s ease-in-out;
  }
  footer {
    margin-top: 80px;
  }
  footer .lang {
    margin-top: 0px;
  }
  footer img {
    height: 500px;
  }
  section {
    height: -moz-fit-content;
    height: fit-content;
    padding: 35px 25px;
  }
  .desktop {
    display: none;
  }
  header {
    padding: 0 25px;
  }
  .sfourth {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 60px;
  }
  .sfourth .item h2 {
    font-size: 14px;
    font-weight: 400;
  }
  .sfourth .item h1 {
    margin-top: 5px;
    font-size: 20px;
  }
  .sfourth .item h3 {
    display: none;
  }
  .sfourth .text-wrap {
    left: 20px;
    bottom: 20px;
  }
  nav {
    width: calc(100% - 50px);
    align-items: self-end;
    height: 35px;
    padding: 0;
    padding-top: 10px !important;
  }
  .mobile-menu {
    width: calc(100% - 40px);
    padding: 0px 20px 70px;
  }
  .mobile-menu img {
    width: 60%;
    z-index: -1;
  }
  .mobile-menu nav .header_logo {
    height: 25px;
    margin-bottom: 0px;
    margin-left: -10px;
    top: 10px;
    left: 26px;
  }
  .mobile-menu .header_item {
    margin: 15px 0px;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    cursor: pointer;
  }
  nav.active {
    padding: 0 10px;
    width: calc(100% - 35px);
  }
  nav.active .header_logo {
    margin-left: 15px;
  }
  .sfirst {
    height: -moz-fit-content;
    height: fit-content;
    padding: 60px 15px;
  }
  .sfirst_text_wrap {
    flex-direction: column;
  }
  .sfirst_content h1 {
    font-size: 40px;
  }
  .header_text.right {
    max-width: 300px;
  }
  .ssecond {
    height: -moz-fit-content;
    height: fit-content;
  }
  .video-iframe {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    transform: scale3d(1, 1, 1);
  }
  .sfirst_text_wrap_right {
    margin-left: 30%;
    line-height: 140%;
    margin-top: 20px;
  }
  .header_menu {
    display: none;
  }
  .header_menu_burg {
    display: block;
    bottom: 0px !important;
    right: 0px !important;
  }
  .header_logo {
    width: 150px;
    height: 25px;
  }
  .header_logo img {
    width: 100%;
  }
  .sthird {
    padding: 50px 0;
  }
  .header_content {
    left: auto;
    max-width: 100%;
  }
  .header_img {
    height: 80%;
    top: 10%;
  }
  .header_img img {
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
  }
  .header_text {
    width: 100%;
    font-size: 40px;
    text-align: center;
  }
  .footer_desktop {
    display: none;
  }
  .footer_mobile {
    display: block;
    height: -moz-fit-content;
    height: fit-content;
    padding: 50px 20px;
  }
  .footer_mobile .string {
    display: flex;
    justify-content: space-between;
  }
  .footer_mobile .column {
    width: 50%;
  }
  .footer_mobile h1 {
    font-size: 30px;
    margin-bottom: 40px;
    font-weight: 900;
    margin-right: 25px;
    line-height: 36px;
    position: relative;
    display: block;
    z-index: 1;
  }
  .footer_mobile p {
    position: relative;
    display: block;
    z-index: 1;
    margin-top: 0px;
  }
  .footer_mobile a {
    position: relative;
    display: block;
    z-index: 1;
    margin-top: 0px;
  }
  .footer_mobile .col-link a {
    font-size: 14px;
    margin-top: 3px !important;
    margin-bottom: 0px;
  }
  .footer_mobile .ot-sdk-show-settings#ot-sdk-btn.ot-sdk-show-settings {
    color: white;
    border: 0px solid transparent;
    padding: 0;
    text-transform: uppercase;
    margin-top: 0px;
    font-size: 14px;
  }
  .footer_mobile .ot-sdk-show-settings#ot-sdk-btn.ot-sdk-show-settings:hover {
    color: white;
    background-color: transparent;
  }
}
@media screen and (max-width: 450px) {
  .sfourth .item {
    margin-bottom: 10px;
  }
  .sfourth .item .button {
    width: 120px;
    height: 33px;
    font-size: 10px;
    top: 20px;
    left: calc(100% - 140px);
  }
  header {
    padding: 0 25px;
    background-image: url(../media/headr.svg);
  }
}