@charset "utf-8";
/* CSS Document */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* General */
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  background-color: #fafafa !important;
}
body {
  overflow: hidden;
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
a {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
span,
p,
ul,
li {
  margin: 0;
  padding: 0;
}
img {
  -webkit-user-drag: none;
}
.container-fluid {
  width: 100%;
  padding-right: 0px;
  padding-left: 0px;
  margin-right: auto;
  margin-left: auto;
}
.griglia {
  position: fixed;
  display: none;
  z-index: -1;
}
.colonna_griglia {
  background-color: rgba(242, 242, 242, 0.4);
  height: 100vh;
  z-index: 1;
}
.contenitore_primario {
  margin: 0 auto;
  width: 96%;
}
.section_prodotti_2 {
  margin-left: 3%;
}
.no_padding {
  padding: 0;
}
.no_margin {
  margin: 0;
}
.visibilita_desktop {
  display: block;
}
.visibilita_smartphone {
  display: none;
}
.no-pointer-events {
  pointer-events: none;
}
.si-pointer-events {
  pointer-events: auto;
}

/** Menu desktop **/
.sezione_menu_desktop {
  position: fixed;
  height: 100px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 999;
  width: 100%;
}
.navbar_vpvision {
  padding-top: 0px;
  padding-bottom: 0px;
}
.menu_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  z-index: -2;
}
.menu_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(250, 250, 250, 0.01) 0%,
    rgba(10, 10, 10, 0.22) 60.5%,
    rgba(250, 250, 250, 0.01) 100%
  );
  mix-blend-mode: overlay;
  z-index: -1;
  opacity: 0.25;
}
.menu_wrapper {
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo_menu {
  width: clamp(100px, 6.25vw, 120px);
  height: auto;
  cursor: pointer;
}
.sezione_menu_desktop .nav-link {
  font-size: clamp(14px, 0.938vw, 16px);
  text-transform: uppercase;
  color: #576b63;
  padding: 0px 0px !important;
  padding-left: clamp(40px, 4.167vw, 80px) !important;
}
.navbar-nav .nav-link.active,
.navbar-nav .show > .nav-link {
  color: #576b63;
}

/* .sezione_menu_desktop {
  transform: translateY(-100%); animation: menu_up 0.75s 0.75s forwards ease-in-out;
}
@keyframes menu_up {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
} */
/** Menu desktop **/

/** Menu mobile **/
.box_mobile_03 .nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sezione_menu_mobile {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(10px);
  height: 80px;
  display: none;
  z-index: 999;
}
.sezione_menu_mobile.estesa {
  animation-name: divEsteso;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}
@keyframes divEsteso {
  from {
    height: 100px;
  }
  to {
    height: 100vh;
  }
}
.sezione_menu_mobile.raccolta {
  animation-name: divRaccolto;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}
@keyframes divRaccolto {
  from {
    height: 100vh;
  }
  to {
    height: 100px;
  }
}
.logo_menu_mobile {
  width: clamp(75px, 6.25vw, 120px);
  height: auto;
}
.box_mobile_01 {
  text-align: start;
  padding-top: 15px;
}
.box_mobile_02 {
  text-align: end;
  padding-top: 36px;
}
.box_mobile_03 {
  text-align: center;
  text-transform: uppercase;
  visibility: hidden;
}
.box_mobile_03.aperto {
  text-align: center;
  text-transform: uppercase;
  visibility: visible;
}
.box_mobile_03.chiuso {
  text-align: center;
  text-transform: uppercase;
  visibility: hidden;
}
.box_mobile_03 .navbar-nav {
  padding-top: 130px;
}
.box_mobile_03 .nav-item {
  font-size: 24px;
  line-height: 44px;
  color: #576b63;
}
.nav-icon {
  width: 35px;
  height: 30px;
  margin: 0px 0px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.nav-icon span {
  background-color: #576b63;
  position: absolute;
  border-radius: 2px;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 4px;
}
.nav-icon span:nth-child(1) {
  top: 2px;
  left: 0px;
}
.nav-icon span:nth-child(2) {
  top: 13px;
  left: 0px;
}
.nav-icon span:nth-child(3) {
  bottom: 2px;
  left: 0px;
}
@media (min-width: 450px) {
  .nav-icon:not(.open):hover span:nth-child(1) {
    transform: scaleX(0.8);
  }
  .nav-icon:not(.open):hover span:nth-child(2) {
    transform: scaleX(0.5);
  }
  .nav-icon:not(.open):hover span:nth-child(3) {
    transform: scaleX(0.8);
  }
}
.nav-icon.open span:nth-child(1) {
  top: 13px;
}
.nav-icon.open span:nth-child(2) {
  top: 13px;
}
.nav-icon.open span:nth-child(3) {
  top: 13px;
}
/** Menu mobile **/

/** One page **/
.sezione_01 {
  background-image: url("../img/VPVISION-sea.webp");
  height: 100lvh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: clamp(40px, 5.208vw, 100px);
  overflow: hidden;
  border-radius: 0px 0px 16px 16px;
  position: relative;
}
.cp_01 {
  position: relative;
}
.col_sezione_01_A {
  flex: 1;
  color: white;
  max-width: 100%;
}
.col_sezione_01_A {
  left: 5%;
}
.col_sezione_01_A > h3 {
  font-size: clamp(40px, 5.729vw, 110px);
  line-height: 110%;
  color: #fff;
  text-transform: uppercase;
  padding-right: 0%;
  opacity: 0;
  transform: translateY(100px);
  animation: slideUp 1s forwards;
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0); /* Torna alla posizione originale */
  }
}
.overlay_01 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0);
  z-index: 998;
  height: 100lvh;
}
/** One page **/

/** Footer **/
.sezione_footer {
  margin-top: clamp(60px, 6.667vw, 128px);
  padding-top: clamp(80px, 9.375vw, 180px);
  padding-bottom: 30px;
  background-color: #849a90;
  overflow: hidden;
  border-radius: 16px 16px 0px 0px;
}
.row_footer_A {
  padding-bottom: clamp(80px, 17.188vw, 330px);
}
.logo_footer {
  width: clamp(175px, 14.323vw, 275px);
  height: auto;
  cursor: pointer;
}
.col_footer_B > h4 {
  font-size: clamp(14px, 1.667vw, 32px);
  line-height: 137.5%;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
  text-transform: uppercase;
}
.col_footer_B > p {
  font-size: clamp(14px, 1.667vw, 32px);
  line-height: 137.5%;
  color: #fff;
  padding-bottom: 20px;
}
.col_footer_B > p > a {
  color: #fff;
}
.col_footer_01 > p {
  font-size: clamp(14px, 1.25vw, 24px);
  line-height: 150%;
  color: #fff;
}
.col_footer_02 > p {
  text-transform: unset;
}
.col_footer_02 > p > a {
  font-size: clamp(14px, 1.25vw, 24px);
  line-height: 150%;
  color: #fff;
  margin-right: clamp(10px, 3.125vw, 60px);
}
/** Footer **/

.separatore {
  width: 100%;
  height: 200px;
  background-color: #fff;
}
.privacy_01 {
  background-color: #fff;
}
.col_privacy_01 {
  margin-bottom: 100px;
  background-color: #fff;
}

.first-parag {
  font-size: clamp(50px, 13.021vw, 250px);
  color: #576b63;
  line-height: 0.9;
  margin-top: 100px;
  height: calc(100% - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.first-parag > div:nth-child(2) {
  text-align: center;
}
.first-parag > div:nth-child(3) {
  text-align: right;
}

.immagine-1 {
  background-image: url("../img/VPVISION-who-we-are.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  margin-top: clamp(60px, 6.667vw, 128px);
  border-radius: 16px;
}
.default-1 {
  display: flex;
  color: #576b63;
  padding-top: 10px;
  border-top: #576b63 solid 2px;
}
.default-1 > div:nth-child(1) {
  width: 50%;
  font-size: clamp(24px, 1.667vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  padding-right: 50px;
}
.default-1 > div:nth-child(2) {
  font-size: clamp(20px, 1.771vw, 34px);

  width: 50%;
}

.default-2 {
  color: #00a1e2;
  border-top: #00a1e2 solid 2px;
  display: block;
  padding-top: 10px;
}
.default-2 > div:nth-child(1) {
  font-size: clamp(24px, 1.667vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
}
.default-2 > div:nth-child(2) {
  padding: 50px 0px;
  display: flex;
}
.default-2 > div:nth-child(2) > div {
  width: 50%;
  font-size: clamp(20px, 1.667vw, 32px);
  padding: clamp(20px, 1.667vw, 32px);
  padding-left: 0px;
}

.default-2 > div:nth-child(2) > div:nth-child(1) {
  display: flex;
  justify-content: center;
}
.default-2 > div:nth-child(2) > div:nth-child(1) svg {
  width: clamp(200px, 14.583vw, 280px);
}
.default-2 > div:nth-child(2) {
  display: flex;
  align-items: center;
}
.default-2 > div:nth-child(2) > div:nth-child(2) {
  height: max-content;
}

#who-we-are,
#vision,
#experience,
#products,
#partners,
#services {
  padding-top: clamp(60px, 6.667vw, 128px);
}

.over-default {
  position: sticky;
  height: calc(100vh - 100px);
  top: 100px;
  left: 0px;
  background-color: #00a1e2;
  color: #fafafa;
  font-size: clamp(60px, 6.667vw, 128px);
  border-radius: 16px 16px 0px 0px;
}
.over-default .title {
  line-height: 1.06;
  font-weight: 600;
  padding-top: 15px;
}
.over-default.green {
  background-color: #576b63;
}
.over-default > div {
  display: flex;
}
.over-default > div > div {
  width: 50%;
}
.over-default .right {
  padding-top: clamp(60px, 6.667vw, 128px);
  font-size: clamp(16px, 1.25vw, 24px) !important;
}
.over-default .right ul {
  margin-top: 50px;
  margin-left: 20px;
}
.image-animation-1 {
  height: 100%;
  width: 100%;
  background-image: url("../img/animation_1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 16px 16px 0px 0px;
}
.image-animation-2 {
  height: 100%;
  width: 100%;
  background-image: url("../img/VPVISION-product-glazing.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 16px 16px 0px 0px;
}
.image-animation-3 {
  height: 100%;
  width: 100%;
  background-image: url("../img/VPVISION-Glazing.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 16px;
}
.space {
  margin-bottom: clamp(60px, 6.667vw, 128px);
}
.immagine-2 {
  background-image: url("../img/VPVISION-experience.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  margin-top: clamp(60px, 6.667vw, 128px);
  border-radius: 16px;
}

.blur-grid {
  position: relative;
  display: flex;
  width: 100%;
  height: calc(100vh - 100px);
  bottom: 0px;
  left: 0px;
  transform: translateY(125%);
}
@-moz-document url-prefix() {
  .blur-grid {
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }
}
.blur-grid-boxes {
  width: 12.5%;
  height: 100%;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.05);
}
.blur-grid-boxes:nth-child(2) {
  margin-top: clamp(20px, 2.083vw, 40px);
}
.blur-grid-boxes:nth-child(3) {
  margin-top: clamp(40px, 4.167vw, 80px);
}
.blur-grid-boxes:nth-child(4) {
  margin-top: clamp(60px, 6.25vw, 120px);
}
.blur-grid-boxes:nth-child(5) {
  margin-top: clamp(80px, 8.333vw, 160px);
}
.blur-grid-boxes:nth-child(6) {
  margin-top: clamp(100px, 10.417vw, 200px);
}
.blur-grid-boxes:nth-child(7) {
  margin-top: clamp(120px, 12.5vw, 240px);
}
.blur-grid-boxes:nth-child(8) {
  margin-top: clamp(140px, 14.583vw, 280px);
}
#services {
  width: 100%;
  overflow: hidden;
}
.services-boxes {
  width: 100%;
  height: max-content;
  cursor: grab;
  /* padding: 30px;
  display: inline-flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch; */
  /* transform: translateX(-40%); */
}
.services-boxes:active {
  cursor: grabbing;
}
.splide {
  margin-top: 30px;
  /* margin-bottom: clamp(60px, 6.667vw, 128px); */
  margin-bottom: 60px;
}
.service-box {
  padding: clamp(20px, 2.083vw, 40px);
  margin-right: 30px;
  width: 40vw;
  height: 100%;
  border-radius: 16px;
  pointer-events: none;
}
.first .service-box {
  margin-left: 2vw !important;
}
.last .service-box {
  margin-right: 2vw !important;
}
.service-box.light {
  background-color: #5cd1ff;
}
.service-box.medium {
  background-color: #1fbfff;
}
.services-title {
  font-size: clamp(30px, 3.333vw, 64px);
  font-weight: 500;
  line-height: 1.06;
  color: #fafafa;
  margin-bottom: clamp(30px, 3.333vw, 64px);
}
.services-parag {
  font-size: clamp(20px, 1.771vw, 34px);
  line-height: 1.29;
  color: #fafafa;
}
.service-box.dark {
  background-color: #00a1e2;
}
.splide__arrow,
.splide__pagination {
  display: none !important;
}

.blur-grid.mobile {
  height: calc(100vh - 80px);
  display: none;
}

.blur-grid.mobile .blur-grid-boxes {
  width: 25%;
  height: 100%;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.blur-grid.mobile .blur-grid-boxes:nth-child(2) {
  margin-top: clamp(20px, 2.083vw, 40px);
}
.blur-grid.mobile .blur-grid-boxes:nth-child(3) {
  margin-top: clamp(40px, 4.167vw, 80px);
}
.blur-grid.mobile .blur-grid-boxes:nth-child(4) {
  margin-top: clamp(60px, 6.25vw, 120px);
}

#contacts {
  background-color: #849a90;
  border-radius: 16px 16px 0px 0px;
  padding-top: clamp(50px, 4.167vw, 80px);
  margin-top: clamp(60px, 6.667vw, 128px);
  padding-bottom: 60px;
  color: #fafafa;
}
#contacts a {
  color: #fafafa;
}
footer {
  display: flex;
}
.footer-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-logo {
  width: 34%;
}
.footer-info {
  width: 66%;
  font-size: clamp(14px, 1.25vw, 24px);
  line-height: 150%;
}
.footer-info-text {
  display: flex;
  padding-top: 50px;
}
.footer-info-text > div {
  width: 50%;
}
.footer-last {
  margin-top: clamp(128px, 13.333vw, 256px);
  display: flex;
  justify-content: space-between;
  font-size: clamp(10px, 0.729vw, 14px);
}
.footer-last-links {
  display: flex;
  justify-content: space-between;
  width: 33%;
}
.nmm-container {
  display: none;
}
.new-menu-mobile {
  z-index: 999;
  position: fixed;
  top: 0px;
  left: 0px;
  height: 60px;
  width: 100%;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nmm {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nmm-logo {
  width: 50px;
  cursor: pointer;
}

.nmm-hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.nmm-bar {
  width: 23px;
  height: 2px;
  background-color: #00a1e2;
}
.nmm-arrow {
  cursor: pointer;
}

.nmm-open {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0px;
  left: 0px;
  background-color: #849a90;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity ease-in-out 0.3s;
  display: none;
}
.nmm-open.open {
  opacity: 100;
  pointer-events: auto;
}
.nmm-list a {
  color: #fafafa;
}
.nmm-list ul {
  list-style-type: none;
  font-size: 32px;
}
.nmm-list li {
  padding: 0px;
  margin: 0px;
  margin-top: 30px;
}
.nmm-list {
  margin-top: 100px;
}
.container-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  transition: opacity 0.5s ease-in-out;
  z-index: 999999;
}
#canvas {
  width: 100vw !important;
  height: 100vh !important;
  object-fit: cover;
  object-position: left;
}
.helper-animation {
  width: 100vw;
  height: 100vh;
  background-color: #e9f1e7;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999998;
}
.immagine-3 {
  background-image: url("../img/VPVISION-experience.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  margin-top: clamp(60px, 6.667vw, 128px);
  border-radius: 16px;
}
.white-bg {
  background-color: #fafafa;
}
.button-1 {
  display: block;
  width: 100%;
  padding: clamp(15px, 1.302vw, 25px);
  border-radius: 8px;
  background-color: #1fbfff;
  color: #fafafa;
  font-size: clamp(20px, 1.771vw, 34px);
  text-transform: uppercase;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.button-1:hover {
  background-color: #00a1e2;
  border-radius: 16px;
}
.cont-button {
  margin-top: 50px;
}
.button-1.type2 {
  border: 1px solid #1fbfff;
  background-color: #fafafa;
  color: #1fbfff;
  max-width: 900px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.button-1.type2:hover {
  border: 1px solid #00a1e2;
  background-color: #00a1e2;
  color: #fafafa;
}

.button-1.type3 {
  border: 1px solid #576b63;
  background-color: #fafafa;
  color: #576b63;
}
.button-1.type3:hover {
  border: 1px solid #576b63;
  background-color: #576b63;
  color: #fafafa;
}
.logo_partner {
  padding: 2vw 4vw 0vw 4vw;
}
.logo_partner img {
  width: 100%; height: auto;
}