* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

.responsivelogo{
  display: none;
}

.logodiv{
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.headercontactleft{
  width: 33%;
  padding-left: 30px;
  align-self: center;
}

.headercontactright{
  display: flex;
  text-align: right;
  font-size: 14px;
  align-items: center;
  justify-content: space-between;
  width: 50%;
  padding-right: 30px;
}

.logo {
  display: flex;
    justify-content: left;
    padding-left: 30px;
    align-items: center;
}

.logo img{
  max-width: 50%;
}

/*NAVBAR*/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;  
  background-color: #3C3C3C;
  color: #DFDFDF;
}

.menu {
  display: flex;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  flex-wrap: wrap;
}

.menu li {
  position: relative;
  margin-right: 10px;
  padding: 0 10px;
  list-style-type: none;
}

.menu li:hover {
  background-color: #E75B00;
}

.menu a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: #fff;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  background-color: #333;
  width: 200px;
  padding: 10px;
}

.submenu li {
  margin: 0;
}

.submenu a {
  color: #fff;
}

.icon {
  color: #E75B00; /* change the icon color */
  font-size: 16px; /* change the icon size */
  margin-right: 5px; /* add some spacing to the right of the icon */
}

/* Hover styles */
.menu li:hover > .submenu {
  display: block;
}

/* Hamburger styles */
.hamburger {
  display: none;
  cursor: pointer;
}

.line {
  height: 3px;
  width: 25px;
  background-color: #fff;
  margin: 5px 0;
}




nav a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

nav a:hover:before {
  transform: scaleX(1);
}

nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.8s ease;
}

nav a:hover:after {
  transform: scaleX(1);
}




/*hero szakasz*/


 /* Style the container for the slides */
 .slider {
  max-width: 100%;
  position: relative;
  margin: auto;
  width: 100%;
  height: 400px;
  overflow: hidden; 
}

/* Style the images */
.slider img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
 
}

/* Show the first image by default */
.slider img:first-child {
  opacity: 1;
}

/* Style the text on the slides */
.slider .text {
  position: absolute;
  bottom: 50%;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,0.5);
  color: white;
  padding: 20px 200px;
  font-size: 5REM;
  text-align: LEFT;
  transform: translate(0, 50%);
  
}

/* Style the buttons */
.slider .prev, .slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  font-weight: bold;
  padding: 10px;
  color: white;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
  cursor: pointer;
  transition: 0.6s ease;
}

.slider .prev {
  left: 0;
}

.slider .next {
  right: 0;
}




.product-hero {
  background-image: url(../img/introduceHerodark.jpg);
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  text-align: center;
}


.product-hero-container{
  max-width: 1200px;
  margin: 0 auto;
}

.product-hero-text{
  margin-bottom: 40px;
}

.product-hero-text h1{
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px #000;
}

.hero-image-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-image-wrapper{
  margin: 20px;
}

.hero-image-wrapper img{
  display: block;
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.full-size-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.75);
}

.full-size-container img{
  width: 700px;
  position: relative;
}

.close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  cursor: pointer;
  color: white;
  font-size: 5rem;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .full-size-container img{
   width: inherit;
  }
}


/*narancs infoblokk a header alatt*/
.orange-info-div {
  width: 100%;
  background-color: #A39594;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.orange-info-div h4 {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
 

  .orange-info-div h4 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  

  .orange-info-div h4 {
    font-size: 1rem;
  }
}


/* a három kártya szakasza*/

.card-container {
  display: flex;
  justify-content: space-between;
  margin: 50px;
  flex-direction: column;
  align-items: center;
}

.card-container-index {
  display: flex;
  justify-content: space-between;
  margin: 50px;
  align-items: center;
}

.card-index{
  position: relative;
  width: 30%;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 2px rgba(0,0,0,.1);
  margin-bottom: 20px;
  padding-bottom: 50px;
  text-align: center;
}

.card {display: flex;
  position: relative;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 2px rgba(0,0,0,.1);
  margin-bottom: 20px;
  text-align: center;
  width: 70%;
}

.card img{
  max-width: 300px;
}

.cardtext{
  padding: 10px 40px;
}

.cardtext h3{
margin: 20px 0;
text-align: left;
}

.cardtext p{
  text-align: left;
  }

  .product-container-1card-roletta{
    padding: 50px 50px 40px;
    width: 50%;
    margin: 0 auto;
  }

  .roletta-list{
    list-style-type: disc;
    text-align: left;
    padding-left: 10px;
    padding-bottom: 20px;
  }

.card:hover h2{
    color: #E75B00;
}

.card-container-roletta{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px auto;
  max-width: 80%;
}

.card-roletta{
  width: 28%;
  background-color: #ffffff;
  margin-bottom: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.card-roletta::before {
  content: '';
  height: 3px;
  width: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #ff4800;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  
}

.card-roletta:hover::before {
  width: 100%;
  height: 4px;
}

.circle {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #eee;
  border: 1px solid #ddd;
 
}


.circle img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  margin: 0;
  padding: 0;
}

.card-body {
  padding: 10px;
}




/*article*/
  .container {
	max-width: 950px;
	margin: 0 auto;
	padding: 20px;
  overflow-x: auto;
}

.container h2{
  margin-bottom: 20px;
}

article {
	margin-bottom: 40px;
}

article h2 {
	font-size: 24px;
	margin-bottom: 10px;
}

article p {
	line-height: 1.5;
	margin-bottom: 20px;
}

.tablecontainer{
  margin-bottom: 40px;
    overflow: inherit;
    width: 100%;
}

table {
	border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
  margin-bottom: 50px;
  margin: 0 auto !important;
}

th, td {
	padding: 10px;
	text-align: left;
	border-bottom: 1px solid #ddd;
}



th {
	background-color: #f5f5f5;
}





/*fooooooter*/

footer {
  padding: 20px 0;
  background-color: #A39594;
  width: 100%;
}
.logo-footer {
  display: flex;
    justify-content: left;
    padding-left: 30px;
    align-items: center;
}

.logo-footer img{
  max-width: 50%;
}

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

.footercontactright{
  display: flex;
  text-align: right;
  font-size: 14px;
  align-items: center;
  justify-content: space-between;
  width: 50%;
  padding-right: 30px;
}

.headercontactright{
  display: flex;
  text-align: right;
  font-size: 14px;
  align-items: center;
  justify-content: space-between;
  width: 50%;
  padding-right: 30px;
}

.contact {
  flex-basis: 30%;
  text-align: center;
  align-self: center;
  font-size: 1.2rem;
  color: white;
}

.map {
  width: 400px;
  height: 200px;
  margin: 30px;
}

iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {

  
  .contact {
    flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }

  .card-container-index{
    flex-direction: column;
    width: 100%;
    margin: 20px auto;
  }

  .card-index{
    width: 70%;
    margin-bottom: 60px;
  }
  
}



/*LISTA*/

.my-list li {
  list-style: none;
  position: relative;
  padding-left: 30px;
  padding-bottom: 20px;
}

.my-list li:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('../img/check.png');
  background-size: contain;
  position: absolute;
  left: 0;  
}




/*KAPCSOLAT*/
.contact-section {
	display: flex;
  flex-direction: column;
	justify-content: center;
	align-items: center;
  margin: 30px auto;
}

.contact-info {
	background-color: #fff;
	padding: 30px;
	border-radius: 5px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.contact-info div {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
  width: 100%;
}

.contact-info div:last-child {
	margin-bottom: 0;
}

.contact-info i {
	color: #ff4800;
	font-size: 24px;
	margin-right: 15px;
}

.contact-info span {
	font-size: 18px;
	color: #555;
	line-height: 1.5;
}

@media screen and (max-width: 768px) {
	.contact-info {
		padding: 20px;
	}
}



/*PARTNEREK*/

.partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.partners h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.partnerimg-container {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}

.partnerimg {
  max-width: 50%;
  height: 50px;
  margin: 20px;
}

.partnerimg:hover {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}

.partnerimg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}

.partnerimg:hover:before {
  transform: scale(1);
}

@media (max-width: 768px) {
  .partners {
    flex-direction: column;
  }
  
  .partnerimg {
    max-width: 50%;
    height: auto;
  }

  .partnerimg-container {
    flex-direction: column;
  }
}



/*cookie conset*/

#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: #fff;
  padding: 10px;
  text-align: center;
}

#accept-cookies {
  background-color: #fff;
  color: #333;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px;
}
  


  .product-container {
    max-width: 1200px;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
   place-content: center;
  }
  
  
  .product-image-wrapper {
    flex-basis: 40%;
    max-width: 40%;
    text-align: center;
  }
  
  .product-image-wrapper img {
    max-width: 100%;
  }
  
  .product-text-wrapper {
    max-width: 55%;
    padding: 50px;
   
  }
  
  .product-text-wrapper h2 {
    margin-top: 0;
  }
  
  .product-text-wrapper p {
    margin-bottom: 20px;
  }


/*two product card*/
.product-container-2card {
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }

  .product-card{
    width: 30%;
    padding: 20px;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #666; 
    justify-content: center;
    align-items: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .product-card::before {
    content: '';
    height: 3px;
    width: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #ff4800;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    
  }
  
  .product-card:hover::before {
    width: 100%;
    height: 4px;
  }
  
 

  @media screen and (max-width: 768px) {
    .product-card {
      width: 100%;
      text-align: center;
    }
  }

  /*one product card*/
  .product-container-1card{
       
        justify-content: center;
        align-items: center;
       padding: 30px;
      }
      
.product-container-1card p,h3 {
        text-align: center;
        font-size: 24px;
        line-height: 1.5;
        color: #666;
      }
  

/* Media queries */
@media (max-width: 900px) {

  .product-hero {
    background-image: url(../img/introduceHerodark.jpg);
    background-size: inherit;
    background-position: center;
    padding: 30px 0px;
    text-align: center;
}
  
  .responsivelogo{
    display: block;
    text-align: center;
  }

  .responsivelogo img{
    width: 70%;
    padding: 10px 0;
  }
  
    .logodiv{
      display: none;
    }
    .menu {
      display: none;
      flex-direction: column;
      margin-top: 10px;
      width: 100%;
    }

    .navbar{
      display: flex;
      flex-direction: column-reverse;
    }
    .show{
      display: block;
    }
    
    .menu li {
      margin: 0;
      width: 100%;
      list-style-type: none;
      
    }
    
    .menu li a {
      padding: 15px 20px;
    }

    .menu li a.focus {
      background-color: red;
      /* add any other styles for the active item here */
      /* for example, you might want to change the text color as well */
      color: white;
    }
    
    .menu li:hover > .submenu {
      opacity: 1;
      visibility: visible;
      position: static;
      width: 100%;
    }
    
    .submenu {
      position: static;
      opacity: 1;
      visibility: visible;
      margin-top: 10px;
      border: none;
      box-shadow: none;
    }
    
    .submenu li a {
      font-size: 16px;
    }
    
    .hamburger {
      display: block;
    }

    .product-container{
      flex-direction: column;
    }

    .product-text-wrapper {
      max-width: 100%;
      padding: 15px;
  }

  .product-image-wrapper{
    max-width: 100%;
  }

  .product-container-2card {
flex-direction: column;}


  
    .slider {
      height: 300px;
      }
      
      .slider .text {
      padding: 20px;
      font-size: 3rem;
      text-align: center;
      }
      
      .slider .prev, .slider .next {
      font-size: 20px;
      padding: 5px;
      }

      .card-container {
        display: block;
        margin: 20px;
    }

    .card{
      width: 100%;
      margin-bottom: 20px;
      flex-direction: column;
    }

    .cardtext{
      padding: 0;
    }

    .cardtext h3{
      text-align: center;
    }

    .cardtext p{
      padding-bottom: 10px;
      text-align: center;
    }

   

    .card img {
      max-width: initial;
  }


  .product-container-1card-roletta{
    width: 100%;
    padding: 20px;
  }

  .card-roletta {
    width: 100%;
  }

  .roletta-list{
    margin: 20px;
  }

    .logo-footer{
      justify-content: center;
      padding: 0;
    }
    .logodiv-footer{
      display: flex;
      flex-direction: column;
    }

    .footercontactright{
      width: 100%;
    display: block;
    text-align: -webkit-center;
    padding: 0;
    }
    
  }