
body {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.007em;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: var(--color-primary);
  background-color: var(--color-background);
  position: relative;
  margin: 0;
  transition: overflow 0.3s ease;
}

a {
  text-decoration: none !important;
  border: none !important;
  border: 0px !important;
  color: var(--color-primary);
}

a:hover {
  text-decoration: none;
  border: none;
  border: 0px;
  color: var(--color-primary-hover);
}

b,
strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
  -webkit-margin: 0;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

img {
  border: 0px;
}

button {
  border: 0;
}


/* FONT */

.didot-20{
  font-family: linotype-didot, serif;
  font-size: 20px;
  line-height: 26px;
}

.didot-26{
  font-family: linotype-didot, serif;
  font-size: 26px;
  line-height: 30px;
}

.didot-30{
  font-family: linotype-didot, serif;
  font-size: 30px;
  line-height: 36px;
}

.didot-60{
  font-family: linotype-didot, serif;
  font-size: 60px;
  line-height: 66px;
}

.open-12{
  font-size: 12px;
  line-height: 16px;
}

.open-14{
  font-size: 14px;
  line-height: 18px;
}

.open-22{
  font-size: 22px;
  line-height: 26px;
}

.open-32{
  font-size: 32px;
  line-height: 36px;
}

/* ---------------------- */
/* ---------------------- */
/* ---------------------- */



/* HEADER */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background-color: #000000db;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  z-index: 2000;
  backdrop-filter: blur(10px);
}

.logo {
  height: 12px;
  width: auto;
}

/* Burger menu */
.burger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 3000;
}

.burger span {
  display: block;
  height: 1px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Burger attivo (X) */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -9px);
}

/* Wrapper per sfocatura */
.menu-wrapper {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: height 0.6s ease;
  z-index: 1500;
  display: flex;
  align-items: center;
}

/* Dropdown */
.dropdown {
  width: 100%;
  color: white;
  padding: 20px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.dropdown ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.dropdown li {
  margin: 30px;
}

.dropdown a {
  color: white;
  text-decoration: none;
  position: relative;
}

.dropdown a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: white;
  transition: width 0.3s;
}

.dropdown a:hover::after {
  width: 100%;
}

/* Stato aperto */
.menu-wrapper.open {
  height: 150px;
}

.menu-wrapper.open .dropdown {
  opacity: 1;
  transform: translateY(0);
}



/* ---------------------- */
/* ---------------------- */
/* ---------------------- */

.loghi-aziende{
  align-items: center;
  margin: auto;
  position: relative;
  display: block;
  margin-top: 80px;
}

.logo-az{
  height: 50px;
  width: auto;
  margin: 0 30px;
}

.logo-az.luce{
  height: 85px;
  width: auto;
}

.logo-az.hyle{
  height: 60px;
  width: auto;
}


/* SECTION SOCIETA */

.section-societa{
  width: 100%;
  padding: 140px 0;
  position: relative;
  margin-bottom: 50px;
  height: 900px;
}

.section-societa .box-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.section-societa .title{
  text-align: center;
  color: white;
}

.logoL5{
  width: auto;
  height: 180px;
  margin-bottom: 50px;
}

.box-luce5-sedi{
  margin-top: 30px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.sede-luce5{
  width: 100%;
  height: 140px;
  margin: 15px;
  background-color: #363636;
  padding: 20px;
  color: white;
  display: flex;
  flex-direction: column;
}

address{
  margin-bottom: 0;
}

address a:hover{
  opacity: 0.7;
}

.button-sito{
  width: 300px;
  height: 60px;
  border-radius: 50px;
  background-color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  position: relative;
  z-index: 2;
  font-weight: 600;
  margin-top: 50px;
}

.button-sito a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button-sito:hover{
  opacity: 0.8;
}

.section-societa .backgroundL5{
  width: 100%;
  height: 900px;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.section-societa .backgroundIN{
  width: 100%;
  height: 900px;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.simpleParallax{
  height: 900px !important;
}

.section-societa .mask{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom,  rgba(0,0,0,0.4) 0%,rgba(0,0,0,1) 100%);
}

.section-societa.beg .mask{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom,  rgba(255, 255, 255, 0.4) 0%,rgb(255, 255, 255) 100%);
}

.section-societa.hyletech{
  background-color: #E6E7E6;
  padding-bottom: 0;
}

.logo-hyletech{
  width: 300px;
  height: auto;
  margin-bottom: 20px;
}

.section-societa.hyletech address{
  text-align: center;
  margin-bottom: 50px;
}

.section-societa.hyletech .title{
  color: black;
  font-weight: 200;
}

.section-societa.hyletech .button-sito{
  background-color: black;
  color: white;
}

.lastra{
  width: 1600px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 35px;
  opacity: 0;
  transition: opacity 1s ease;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.logo-inopera{
  width: 300px;
  height: auto;
  margin-bottom: 20px;
}

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

.section-societa.inopera .text{
  color: white;
  text-align: center;
}

.section-societa.inopera .title{
  margin-bottom: 20px;
  font-weight: 200;
}

.section-societa.inopera address{
  color: white;
  text-align: center;
  margin-bottom: 50px;
}

.section-societa.beg{
  padding-bottom: 0;
}

.section-societa.beg{
  position: relative;
  height: 900px;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-image: url("../images/Immagine-beg.png");
}

.section-societa.beg .container{
  background-color: white;
  position: absolute;
  z-index: 2;
  padding: 50px 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.section-societa.beg .address{
  text-align: center;
  color: #E40235;
  margin-bottom: 50px;
}

.section-societa.beg .title{
  color: #E40235;
}

.section-societa.beg .button-sito{
  background-color: #E40235;
  color: white;
}

.separatore{
  position: absolute;
  top: -44px;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}




/* -- FOOTER -- */

.footer{
  width: 100%;
  height: auto;
  background-color: black;
  padding: 50px 0;
  color: white;
}

.logo-footer{
  width: 300px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
}

.box-footer{
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}

.box-footer .SX{
  flex-shrink: 0;
}

.footer .linguage{
  display: flex;
}

.footer .ita{
  padding-right: 15px;
}

.footer .eng{
  padding-left: 15px;
}

.footer .linguage .border-linguage{
  border-right: 1px solid var(--color-primary);
}

.footer .linguage .active{
  font-weight: 800;
}

.footer .cookie{
  width: 110px;
  height: 40px;
  border-radius: 40px;
  background-color: #585858;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0;
  color: white;
}

.footer .cookie:hover{
  background-color: #8a8a8a;
}

.cookie-img{
  width: 20px;
  height: auto;
  margin-right: 10px;
}

.footer ul{
  display: flex;
  align-items: center;
  justify-self: start;
  list-style-type: none;
  margin-bottom: 15px;
  padding-left: 0;
}

.footer li{
  padding-right: 15px;
  border-right: 1px solid white;
  margin-right: 15px;
  font-size: 12px;
  position: relative;
}

.footer li:hover{
  opacity: 0.7;
}

.footer li a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer li.noBorder {
  border-right: 0;
}

.footer address{
  text-align: right;
}

.footer .box-social{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer .social-img{
  width: 25px;
  height: auto;
  margin-left: 15px;
}

.footer .social-img:hover{
  opacity: 0.7;
}




/* -- INTRODUCTIONS -- */

.introdutions{
  padding: 250px 0 200px 0;
  text-align: center;
  background: linear-gradient(to bottom,  rgba(242,242,242,1) 0%,rgba(255,255,255,1) 100%);
}

.introdutions .title{
  margin-bottom: 20px;
}

.titlo-aziende{
  text-align: center;
  margin-bottom: 30px;
}