@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.mainlogo{
  height: 60px;
}
.center{
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 70px;
  
  background-color: #fff;
}

/* p{
  font-size: 1em;
} */

ul{
  margin-left: 3%;
}

ul ul{
  margin-left: 5%;
  list-style: '-';
}

body{
  background: #000;
  
  /* min-height: 200vh; */
  background: url(../img/background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;  
  background-position-y: 70px;
}

header{
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center ; /*space-between*/
  align-items: center;
  transition: 0.6s;
  padding: 1% 10% 1% 1%;
  z-index: 100000;
  background-color: #fff;
  
}

header.sticky{
  top: 0;
  height: 70px;
  /*padding: 5px 40px; */
  background: #fff;
  text-align: center;
}

header .logo{
  position: relative;
  font-weight: 700;
  color: #010101;
  text-decoration: none;
  font-size: 2em;
  /* text-transform: uppercase; */
  letter-spacing: 2px;
  transition: 0.6s;
}

header ul{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

header ul li{
  position: relative;
  list-style: none;
}

header ul li a:hover{
  color: #555;
}

header ul li a{
  position: relative;
  margin: 0 15px;
  text-decoration: none;
  color: #010101;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: small;
  transition: 0.6s;
  white-space: nowrap;
}

.empty{
  position: relative;
  height: 100vh;

}

.section{
  position: relative;
  width: 100%;
  margin-top: 2%;
  margin-bottom: 13%;
  
  height: fit-content;

  display: flex;
  align-items: center;
  justify-content: center;
  
}

.box{
  
  margin-top: 70px;
  padding: 2% 7% 4% 7%;
  
  color: white;
  width: 100%;
  /* height: fit-content; */
  height: 80%;
  /*border: 2px solid white;*/
  background-color: #454545;
  font-weight: 300;
  font-size: 1.0em;
  letter-spacing: 2px;
  line-height: 1.8;
  /* box-shadow: 1rem 1rem 1rem black;  */
}

.szerviz{
  display: flex;
 
}
.left{
  width: 80%;
   
  padding: 2% 17% 2% 0%;
}
.imgszerv{
  width: 120%;
  border: #fff 1px solid;
}

.right{
  padding-right: 50px;
  width: 30%;
} 
.sh200{
  padding-top: 0px;
  height: 600px;
}
.margex{
  margin: 0 0 60% 0;
}
 

.referenciak{
  position: relative;
  width: 100%;
  height: 100vh;
  color: #37196a;
}

header.sticky .logo{
  color: #000;
}

header.sticky ul li a{
  color: #000;
}

/* #kapcsolat{
  margin-bottom: 5%;
} */


.galleryterm {
  padding: 50px 100px 20px 150px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.galleryterm img {
  width: 200px;
  height: auto;
  border: 1px solid #fff;
  cursor: pointer;
}

/* Lightbox overlay */
/* body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f3f3f3;
} */

/* Termék rész bal oldalra */
.product-description {
  width: 40%;
  padding: 20px;
  background-color: #150492;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: white;
}

.product-description h2 {
  margin-top: 0;
}

.product-description ul {
  padding-left: 20px;
  margin-top: 10px;
}

.product-description ul li {
  list-style: disc;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  height: fit-content;
  background-color: #454545;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.lightbox-description {
  width: 40%;
  padding: 20px;
  overflow-y: auto;
  color: #fff;
}

.lightbox-images {
  width: 50%;
  padding: 20px;
  overflow-y: auto;  
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.main-image {
  max-width: 100%; /* Az állókép méretezése a lightbox-hoz */
  max-height: 100%; /* Az állókép méretezése a lightbox-hoz */
  margin-bottom: 10px;
}



.thumbnail-image {
  width: 20%;
  height: fit-content;
  margin: 5px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  
}

.thumbnail-image:hover {
  transform: scale(1.1);
}

.close-button {
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  color: #fff;
}
