body {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  overflow-x: hidden;
  color: #707172;
  background-color: #fff;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden !important;
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.tm-section-wrap,
.tm-section {
  overflow-x: hidden !important;
  /* Biztosítja, hogy semmi ne lógjon ki */
}

p {
  line-height: 2;
}

a {
  transition: all 0.3s ease;
}

.language-switcher {
  display: flex;
  /* Flexbox engedélyezése */
  justify-content: center;
  /* Vízszintes középre igazítás */
  align-items: center;
  /* Függőleges középre igazítás */
  margin-top: 20px;
  /* Távolság a többi elemtől (opcionális) */
}

.language-switcher a {
  margin: 0 10px;
  /* Távolság az ikonok között */
}

.language-switcher img {
  width: 55px;
  /* Zászlók méretének beállítása (opcionális) */
  height: auto;
}

/* Hover effektus eltávolítása csak a zászlók linkjeiről */
.language-switcher a:hover {
  border: none !important;
  padding: 0;
}

@media (max-width: 767px) {
  .language-switcher {
    justify-content: center;
  }

  .language-switcher img {
    width: 40px;
    /* Kisebb méret mobilon */
  }
}

/* DIV animáció */
/* Alapállapot: elemek elrejtve */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Animációs osztályok */
.slide-in-left {
  transform: translateX(-50px);
}

.slide-in-right {
  transform: translateX(50px);
}

.slide-in-top {
  transform: translateY(-50px);
}

.slide-in-bottom {
  transform: translateY(50px);
}

/* Aktív állapot, amikor az elem láthatóvá válik */
.animate-on-scroll.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* Opcionális: animáció sebessége */
.animate-on-scroll.fast {
  transition-duration: 0.4s;
}

.animate-on-scroll.slow {
  transition-duration: 1s;
}


/* Animated HR */
.animated-divider-wrapper {
  width: 100%;
  overflow: hidden;
  margin: 50px 0;
}

.animated-divider {
  width: 0;
  height: 4px;
  background-color: #455e7b;
  transform-origin: left center;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animáció aktiváláskor */
.animated-divider.active {
  width: 100%;
}


.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}


.small {
  font-size: 0.95rem;
}

.tm-color-primary {
  color: #069;
}

.tm-color-gray {
  color: #E9DFC3;
  text-transform: uppercase;
}

.tm-bg-black-transparent {
  background-color: rgba(0, 0, 0, 0.3);
}

.tm-bg-white-transparent {
  background-color: rgba(24, 22, 22, 0.541);
  border: 3px solid white;
  border-radius: 25px;
}

.tm-intro {
  max-width: 1000px;
  width: 100%;
  padding: 45px;
  margin-right: 0;
  margin-left: auto;
}

.tm-intro .tm-section-title {
  font-size: 4.2rem;
  font-weight: 800;
  background: #07B35F;
  background: linear-gradient(126deg, rgba(7, 179, 95, 1) 10%, rgba(255, 255, 255, 1) 50%, rgba(38, 135, 109, 1) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.4px #ECDFCC;

}

.parallax-window {
  min-height: 662px;
  background: transparent;
}

.parallax-window p {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}

.parallax-window span {
  font-size: 32px;
  color: #fff;
  -webkit-text-stroke: 1.5px #F75A5A;
  font-weight: 900;
}

/* Alapértelmezés szerint rejtve */
.responsive-logo {
  display: none;
  max-width: 100%;
  /* Reszponzív méret */
  height: auto;
  /* Arányok megtartása */
  margin-bottom: 20px;
  /* Térköz a h2 előtt */
}

/* Csak mobil és táblagép nézetben jelenjen meg */
@media (max-width: 1620px) {
  #intro .responsive-logo {
    display: block;
    background-color: rgba(255, 255, 255, 0.8);
    /* Fehér 70%-ban átlátszó */
    padding: 10px;
    /* Hely a háttér és kép között */
    border-radius: 50%;
    /* Enyhe kerekítés */
    margin: 0 auto 20px;
    /* Középre igazítás és térköz alul */
  }

  .tm-intro {
    max-width: 100%; /* Teljes szélesség mobilon */
    padding: 20px; /* Belülről térköz */
    text-align: center; /* Szöveg középre igazítása */
  }

  .parallax-window {
    display: flex; /* Flexbox használata */
    flex-direction: column; /* Elemek egymás alatt */
    align-items: center; /* Vízszintes középre igazítás */
    justify-content: center; /* Függőleges középre igazítás */
    text-align: center; /* Szöveg középre igazítása */
    width: 100%; /* Teljes szélesség */
    padding: 0; /* Belülről térköz eltávolítása */
    margin: 0 auto; /* Középre igazítás */
  }

  .tm-section-wrap {
    width: 100%; /* Teljes szélesség mobil nézetben */
    margin-left: 0 !important; /* Margó eltávolítása mobil nézetben */
  }

  .parallax-window h2 {
    font-size: 42px !important;
    text-align: center;
  }

  .parallax-window p {
    font-size: 14px !important;
    text-align: center;
    font-weight: 500;
  }

  .parallax-window span {
    font-size: 26px;
    color: #fff;
    -webkit-text-stroke: 1.5px #F75A5A;
    font-weight: 900;
  }

  .tm-section-title {
    text-align: center;
  }

  .tm-w-100 h2 span {
    font-size: 36px !important;
  }

  .tm-w-100 h2 {
    font-size: 26px !important;
  }

  .container,
  .container-fluid {
    padding-left: 5px;
    padding-right: 5px;
  }
}


.tm-section {
  display: flex;
  align-items: center;
  height: auto;
  max-width: 1575px;
  padding: 66px 60px;
}

#intro {
  min-height: 100vh;
  max-width: none;
  z-index: 1;
}

.tm-brand {
  font-size: 2.6rem;
}

.tm-brand-box {
  box-sizing: content-box;
  width: 100%;
  max-width: 230px;
  min-height: 160px;
  color: white;
  text-align: center;
  margin: 55px auto 30px !important;
}

.tm-double-border-1,
.tm-double-border-2 {
  border: 2px solid #fff;
  position: relative;
}

.tm-double-border-2 {
  top: 10px;
  left: 10px;
}

.tm-border-gray {
  border-color: #26876d;
}

.tm-box-pad {
  padding: 50px 55px;
}

.tm-brand {
  padding: 30px;
}

.tm-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding-left: 30px;
  padding-right: 30px;
  width: 400px;
  /* Alapértelmezett szélesség */
}

/* Hide scrollbar */
.tm-sidebar {
  overflow-y: scroll;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.tm-sidebar::-webkit-scrollbar {
  /* WebKit */
  width: 0;
  height: 0;
}

.tm-sidebar-sticky {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Custom toggler stílusok */
.custom-toggler {
  position: fixed;
  left: 0px;
  top: 5px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background-color: rgba(69, 94, 123, 0.95);
  color: white !important;
  display: none;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom: 2px solid #fff;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  cursor: pointer;
  transition: all 0.3s;
}


.toggler-icon i {
  font-size: 2rem;
}

@media (max-width: 1200px) {
  .tm-sidebar {
    width: 300px;
    /* Kisebb szélesség nagyobb tableteken */
  }
}

@media (max-width: 1620px) {
  .custom-toggler {
    display: flex !important;
    /* Mobilnézetben látszik */
    animation: slideIn 0.5s ease-out;
  }

  .tm-sidebar {
    width: 250px;
    /* Tovább csökkentett szélesség kisebb tableteken */
    left: -250px;
    /* Alapértelmezett elrejtés mobil nézetben */
    transition: all 0.3s ease-in-out;
  }

  .tm-sidebar.show {
    left: 0;
    /* Megjelenítés toggler ikonra kattintva */
  }
}


@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}



.tm-brand-logo {
  max-width: 100%;
  height: auto;
  display: block;
}

.tm-section-wrap {
  width: calc(100% - 400px);
  margin-left: 400px;
  margin-right: 0;
}

.tm-section-wid {
  margin-left: 385px !important;
}

.tm-main-nav>li>a {
  color: white;
}

.tm-main-nav {
  margin-bottom: 60px !important;
}

.tm-white-rect {
  display: block;
  width: 15px;
  height: 15px;
  background-color: white;
}

.nav-link {
  font-size: 1.25rem;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-link .tm-white-rect {
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-link.current .tm-white-rect,
.nav-link:hover .tm-white-rect {
  opacity: 1;
}

.tm-main-nav .nav-link:hover {
  animation-name: blinker;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes blinker {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.1;
  }

  100% {
    opacity: 1;
  }
}

.tm-social-links {
  margin-bottom: 27px;
}

.tm-social-link {
  width: 40px;
  height: 40px;
  color: black;
  background-color: white;
  margin: 8px;
  border-radius: 5px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tm-social-link:hover,
.tm-social-link:focus {
  background-color: #069;
  color: white;
}

.tm-footer-link {
  color: #EA7300;
}

.tm-footer-link:hover {
  color: #F93;
  text-decoration: none;
}

.tm-section-half {
  padding: 0px !important;
  text-align: justify;
  text-align: justify;
  /* Igazított szöveg */
  hyphens: auto;
  /* Automatikus elválasztás */
  text-justify: inter-word;
  /* Szóközök finomhangolása */
  overflow-wrap: break-word;
  /* Hosszú szavak törése */
  hyphenate-limit-chars: 10;
  /* Minimum karakterek száma az elválasztáshoz */
}

.tm-section-icon {
  color: #369;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-dots {
  bottom: -50px;
}

.slick-dots li button:before {
  font-size: 16px;
  opacity: 0.2;
}

.slick-dots li.slick-active button:before {
  color: #98999a;
  opacity: 1;
}

/*Banner*/
.overlay-banner {
  background-color: rgba(69, 94, 123, 0.7); /* #455e7b szín 70%-ban átlátszó */
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
}


/* About */
.about {
  padding: 0px 60px 0px 60px !important;
}

.about h2 {
  font-size: 48px;
  font-weight: 700;
  color: #445d7a;
}


@media (max-width: 950px){
  .about {
    padding: 0px 40px 0px 40px !important;
  }
}

@media (max-width: 750px){
  .about {
    padding: 0px 5px 0px 5px !important;
  }
}

/* Products */
#products {
  border: none;
}

.products h2 {
  font-size: 48px;
  font-weight: 700;
  color: #445d7a;
  margin-top: 50px !important;
}

.product-cards .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 40px 0;
  row-gap: 35px;
}

.product-cards .container .card {
  position: relative;
  flex: 1 1 calc(25% - 20px);
  /* Négy kártya egy sorban */
  min-width: 200px;
  height: auto;
  /* Automatikus magasság */
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  border-radius: 15px;
  margin: 10px;
}

.product-cards .container .card .box {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  background: #445d7a;
  border-radius: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* Kép és szöveg egymás alatt */
  padding: 20px;
  height: 300px;
  transition: transform 0.5s ease;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.product-cards .container .card img {
  border-radius: 10px;
  width: auto
}

.product-cards .container .card .box:hover {
  transform: translateY(-50px);
}

.product-cards .container .card .box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
}

.product-cards .container .card .box .content {
  padding: 20px;
  text-align: center;
}

.product-cards .container .card .box .content h2 {
  position: absolute;
  top: -5px;
  right: 10px;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.1);
}

.product-cards .container .card .box .content h3 {
  font-size: 1.2rem;
  color: #fff;
  z-index: 1;
  transition: 0.5s;
  margin-bottom: 15px;
}

.product-cards .container .card .box .content p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  z-index: 1;
  transition: 0.5s;
}

.product-cards .container .card .box .content a {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  background: black;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  margin-top: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}

.product-cards .container .card .box .content a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  background: #fff;
  color: #000;
}

@media (max-width: 1601px){
  .products h2 {
    margin-top: -30px;
    padding-bottom: 1vh !important;
  }
}

@media (max-width: 768px) {
  .products h2 {
    font-size: 32px !important;
  }
}

/* Gallery */
.gallery h2 {
  font-size: 48px;
  font-weight: 700;
  color: #445d7a;
  margin-top: 5vh;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  /* Több sorba törés */
  justify-content: center;
  /* Középre igazítás */
  gap: 16px;
  /* Távolság a képek között */
  background-color: #ffffff;
  /* Fehér háttér */
  padding: 20px;
  /* Belülről távolság */
  border-radius: 8px;
  /* Lekerekített sarkok (opcionális) */
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;  
}

/* Egyedi stílus a galéria képekre */
.gallery a {
  display: block;
  flex: 0 1 calc(25% - 16px);
  max-width: 200px;
  height: 150px;
  /* Fix magasság a dobozhoz */
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.gallery a:hover {
  transform: scale(1.05);
  /* Kicsi nagyítás hover esetén */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.12);
  /* Erősebb árnyék hover esetén */
}

.gallery .venobox {
  border: 2px solid #fff;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

/* A képek stílusa */
.gallery img {
  width: 100%;
  height: 100%;
  /* Kitöltés teljesen */
  object-fit: cover;
  /* Arány megtartása, vágással */
  border-radius: inherit;
}

/* Reszponzív beállítások (mobil eszközökre) */
@media (max-width: 1024px) {
  .gallery a {
    flex: 0 1 calc(33.33% - 16px);
    /* Három kép egy sorban tableten */
  }
}

@media (max-width: 768px) {
  .gallery h2 {
    font-size: 48px;
    font-weight: 700;
    color: #445d7a;
    margin-top: 16vh;
  }

  .gallery-container {
    padding: 10px;
    /* Kisebb belső margó mobilon */
  }

  .gallery a {
    flex: 0 1 100%;
    /* Egy kép teljes szélességben */
    max-width: 100%;
    /* Teljes szélesség kihasználása */
    height: auto;
    /* Magasság automatikusan igazodik */
  }

  .gallery img {
    width: 100%;
    /* Kép teljes szélességben */
    height: auto;
    /* Automatikus magasság */
    object-fit: cover;
    /* A kép arányainak megtartása */
  }
}

@media (max-width: 480px) {
  .gallery-container {
    padding: 5px;
    /* Még kisebb margó kis kijelzőkön */
  }

  .gallery a {
    flex: 0 1 100%;
    /* Egy kép teljes szélességben */
    max-width: 100%;
    /* Teljes szélesség kihasználása */
    height: auto;
    /* Magasság automatikusan igazodik */
    margin-bottom: 10px;
    /* Távolság az egyes képek között */
  }

  .gallery img {
    width: 100%;
    /* Kép teljes szélességben */
    height: auto;
    /* Automatikus magasság */
    object-fit: cover;
    /* A kép arányainak megtartása */
    border-radius: 8px;
    /* Lekerekített sarkok (opcionális) */
  }

  .gallery a {
    flex: 0 1 calc(100% - 16px);
    /* Egy kép egy sorban kis kijelzőn */
  }
}

.vbox-container {
  max-width: 100vw !important;
  max-height: 100vh !important;
  overflow: hidden !important;
}

.vbox-content {
  max-width: 100% !important;
  max-height: 100% !important;
  box-sizing: border-box;
}

.vbox-inline,
.vbox-iframe,
.vbox-vid,
.vbox-img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
}

/* Nyilak stílusa és pozicionálása */
.vbox-next,
.vbox-prev {
  z-index: 10000 !important;
  top: 50% !important;
  transform: translateY(-50%);
  font-size: 32px !important;
  color: white !important;
  opacity: 0.8;
}

.vbox-next {
  right: 10px !important;
}

.vbox-prev {
  left: 10px !important;
}

/* Bezáró gomb pozíció fixelése */
.vbox-close {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  z-index: 10000 !important;
  font-size: 32px !important;
  color: white !important;
  opacity: 0.8;
}

.vbox-overlay {
  z-index: 9999 !important;
}

@media (max-width: 480px) {
  .vbox-close {
    font-size: 36px !important;
    top: 10vh !important;
  }

  .vbox-next,
  .vbox-prev {
    display: none;
  }
}

/* Clients */

.carousel-container {
  perspective: 1000px;
  height: 300px;
  overflow: visible;
  position: relative;
  margin-bottom: 100px;
  margin-top: -40px;
}

.tm-clients-images {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%);
  animation: rotate 20s linear infinite;
}

.tm-img-wrap {
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 0.5s ease-in-out;
}

.tm-client-img {
  max-width: 120px;
  height: auto;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotateY(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotateY(360deg);
  }
}

.tm-section-pad {
  padding-left: 0px;
  padding-right: 0px;
}

.tm-clients-images {
  max-width: 1040px;
}

.tm-client-img {
  max-width: 100px;
}

.clients h2 {
  font-size: 3vh;
  font-weight: 800;
  color: #445d7a;
}

.clients span {
  color: #07b35f;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #376e75;
  font-size: 4vh;
}

@media (max-width: 1559px) {
  .clients h2 {
    font-size: 40px;
    margin-top: 0px !important;
    text-align: center;
  }

  .carousel-container {
    perspective: 1400px;
    height: 200px;
    overflow: visible;
    position: relative;
    margin-top: -50px !important;
    margin-bottom: 80px !important;
  }
}

.tm-w-100 {
  max-width: 100%;
}

.tm-flex-item-left {
  align-self: flex-start;
}

.tm-img-wrap {
  padding: 10px;
  margin: 10px;
}

.tm-img-wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 15px;
  width: 240px;
  height: 120px;
}

/* Customers */

.customers .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30vh;
  gap: 3rem;
  flex-flow: column;
  position: relative;
}

.customers .carousel {
  max-width: 80%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

.customers .carousel .item {
  width: 150px;
  /* Négyzetes méret */
  height: 150px;
  /* Négyzetes méret */
  margin: 10px;
  /* Távolság a kártyák között */
  transition: transform 0.5s, filter 0.5s;
  /* Simább animáció */
  object-fit: cover;
  /* A kép kitöltése négyzetesen */
  border-radius: 30px;
  /* Lekerekített sarkok */
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  /* Árnyék hozzáadása */
}

.customers .carousel .item:hover {
  filter: brightness(1.2);
  /* Kiemelés hoverre */
  transform: translateZ(170px);
  /* Hoverre kiemelkedik */
}

.customers .carousel .item:hover+* {
  filter: brightness(0.8);
  transform: translateZ(120px) rotateY(25deg);
}

.customers .carousel .item:hover+*+* {
  filter: brightness(0.6);
  transform: translateZ(50px) rotateY(15deg);
}

.customers .carousel .item:has(+ *:hover) {
  filter: brightness(0.8);
  transform: translateZ(120px) rotateY(-25deg);
}

.customers .carousel .item:has(+ * + *:hover) {
  filter: brightness(0.6);
  transform: translateZ(50px) rotateY(-15deg);
}

@media (max-width: 1601px){
  .customers h2 {
    margin-top: -20px;
    padding-bottom: 1vh !important;
  }
}

@media (max-width: 768px) {
  .customers {
    margin-top: -2vh;
    padding-bottom: 15vh !important;
  }

  .customers h2 {
    padding-bottom: 8vh !important;
  }

  .customers .carousel {
    flex-wrap: wrap;
    /* Kártyák több sorba rendezése */
    justify-content: center;
    /* Középre igazítás */
    padding-top: 10vh;
    padding-bottom: 10vh;
  }

  .customers .carousel .item {
    width: 80px;
    /* Kisebb méret mobilon */
    height: 80px;
    /* Kisebb méret mobilon */
  }

  .customers .carousel .item:nth-child(1),
  .customers .carousel .item:nth-child(2),
  .customers .carousel .item:nth-child(3) {
    order: 1;
    /* Első sor */
  }

  .customers .carousel .item:nth-child(4),
  .customers .carousel .item:nth-child(5) {
    order: 2;
    /* Második sor */
  }
}

/* Contact */

.overlay {
  background-image: linear-gradient(to right, rgba(21, 158, 101, 0.9), rgba(21, 158, 101, 0.7));
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
  padding: 110px 0;
}

.section-bg {
  background-size: cover;
  position: relative;
  background-position: left;
  z-index: 0;
  padding: 0;
  min-height: auto;
  overflow: hidden;
}

.contact-info {
  padding: 0;
}

h2.contact-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

.contact-info p {
  color: #ececec;
}

ul.contact-info {
  margin-top: 30px;
}

ul.contact-info li {
  display: flex;
  width: 500px;
  margin-bottom: 22px;
}

ul.contact-info li a {
  text-decoration: none;
}

ul.contact-info span {
  font-size: 20px;
  line-height: 26px;
}

.info-left {
  width: 10%;
}

.info-left i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 30px;
  color: #ffffff;
}

.info-right h4 {
  color: #fff;
  font-size: 18px;
}

.contact-page .info-left i {
  color: #FE846F;
}

.google-maps {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 képarány */
  height: 0;
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
  margin: 5px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media only screen and (max-width: 767px) {

  h2.contact-title {
    font-size: 38px;
  }

  .info-right h4 {
    font-size: 14px;
    margin-top: 5px;
  }

  .contact-info {
    padding: 10px !important;
  }

  .cont-biz {
    font-size: 16px !important;
  }

}

@media (max-width: 1600px) {
  .tm-sidebar {
    width: 30%;
    max-width: none;
    padding-left: 30px;
    padding-right: 30px;
  }

  .tm-social-link {
    margin: 5px;
  }

  .tm-section-wrap {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .tm-img-wrap a {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 1620px) {
  .tm-bg-black-transparent {
    background-color: rgba(69, 94, 123, 0.95);
  }

  .tm-brand-box {
    margin-top: 30px;
    margin-bottom: 30px;
    max-width: 200px;
    min-height: 100px;
  }

  .tm-brand {
    padding: 20px 30px;
  }

  .tm-main-nav {
    margin-bottom: 30px !important;
  }

  .tm-social-links {
    margin-bottom: 30px;
  }

  footer p {
    line-height: 1.5;
    font-size: 12px;
  }

  .tm-sidebar {
    width: 250px;
    left: -250px;
    padding: 15px;
    transition: all 0.3s ease;
  }

  #tmSidebar {
    position: fixed;
    z-index: 9998;
  }

  .tm-sidebar.show {
    left: 0;
  }

  main[role="main"] {
    margin-left: 0 !important;
    width: 100vw;
    padding: 0 15px;
    overflow-x: hidden;
  }

  .tm-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .tm-section-wrap {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  figure.effect-bubba h2 {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  .tm-gallery-item figure p {
    font-size: 63%;
    padding: 0;
    line-height: 1.5;
  }
}

@media (max-width: 767px) {
  .tm-section {
    padding: 30px;
  }

  .tm-section-wrap {
    margin-left: 0;
    /* Mobil nézetben nincs margó */
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 554px) {
  .tm-section {
    padding: 15px;
  }
}

@media (max-width: 383px) {
  .slick-dots {
    bottom: -40px;
  }

  .tm-box-pad {
    padding: 50px 30px;
  }
}

/* 
---------------------------------------------
Adatvédelem
--------------------------------------------- 
*/
.dataprotection {
  margin-top: 0px;
  background-color: #445d7a;
  height: 240vh !important;
}

.dataprotection .container {
  width: 95%;
}

.dataprotection .shadow {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset !important;
}

.dataprotection h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

.dataprotection h4 {
  margin-bottom: 20px;
  color: #BDDDE4 !important;
}

.dataprotection .text-muted {
  color: #F5ECE0 !important;
}

.list-styled {
  color: #F38C79;
  text-align: justify;
  hyphens: auto;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
}

.list-styled li {
  padding-left: 5px;
  margin: 10px 0px 10px 0px;
}

@media (max-width: 767px) {
  .dataprotection {
    padding-top: 25vw !important;
    height: 200vh;
  }

  .dataprotection h2 {
    font-size: 24px;
  }

  .dataprotection h4 {
    font-size: 16px;
  }

  .dataprotection .text-muted {
    font-size: 14px;
  }

  .list-styled li {
    margin-left: -45px;
    font-size: 14px;
  }
}

/* 
---------------------------------------------
Impressum
--------------------------------------------- 
*/

.impressum {
  margin-top: 0px;
  background-color: #EAEAEA;
  height: 150vh;
}

.impressum h2 {
  font-size: 52px;
  font-weight: 700;
  color: #26876d;
  text-transform: uppercase;
}

.impressum .shadow {
  background-color: #FFF1D5;
  border-radius: 15px;
  border: 1px solid #A6D6D6;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.impressum .text-muted {
  font-weight: 600;
}

.impressum h4 {
  font-weight: 600;
  color: #26876d !important;
}

@media (max-width: 767px) {
  .impressum {
    padding-top: 25vw !important;
    height: 200vh;
  }

  .impressum h2 {
    font-size: 38px;
  }

  .impressum h4 {
    font-size: 18px;
  }

  .impressum .shadow {
    margin: 0px 10px 0px 10px;
  }
}