.link-underline {
  border-bottom-width: 0;
  background-image: linear-gradient(transparent, transparent), linear-gradient(#fff, #fff);
  background-size: 0 3px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .3s ease-in-out;
}

.link-underline-color {
  background-image: linear-gradient(transparent, transparent), linear-gradient(rgb(0, 179, 75), rgb(0, 124, 19))
}

.link-underline:hover {
  background-size: 100% 3px;
  background-position: 0 100%
}

.fadeout {
  background: linear-gradient(to top,  rgba(255,255,255,1) 0%,rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
}

.text-appDarkGray {
  color: #343836
}
.text-appGreen {
  color: #1e815c
}
.text-appDarkGreen {
  color: #0e5a3f
}

.bg-appDarkGray {
  background-color: #343836 !important
}
.bg-appGreen {
  background-color: #1e815c !important
}
.bg-appGreen:hover {
  background-color: #0e5a3f !important
}
.bg-appDarkGreen {
  background-color: #0e5a3f !important
}

.divider-sm {
  width: 60%;
  margin: auto;
  border-width: 2px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.disabled-bg {
  pointer-events: none;
  cursor: default;
  background-color: rgb(179, 179, 179) !important;
  border-color: rgb(179, 179, 179) !important;
}

.disabled-fg {
  pointer-events: none;
  cursor: default;
  color: rgb(114, 114, 114) !important;
}

.disabled-fg-border {
  pointer-events: none;
  cursor: default;
  color: rgb(114, 114, 114) !important;
  border-color: rgb(179, 179, 179) !important;
}

.disabled-item {
  pointer-events: none;
  cursor: default;
}

.formatted-number::after {
  content: '\00a0';
}

.preventMobile {
  display: block;
}

/* Desktops and laptops ----------- */
@media only screen 
and (min-width : 1280px)/*, (min-height : 550px)*/ {
  .preventMobile {
    display: none !important;
  }
}

/* Desktops and laptops ----------- */
@media only screen 
and (max-width : 1280px)/*, (max-height: 550px)*/ {
  main {
    /*display: none !important;*/
  }
  body {
    overflow: hidden;
  }

  main.mobileCompatible {
    display: block !important;
  }
}

.dynamicText {
  max-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pacifico-regular {
  font-family: "Pacifico", serif;
  font-weight: 400;
  font-style: normal;
}

.pacifico {
  font-family: "Pacifico", serif;
}

.bebas-neue {
  font-family: "Bebas Neue", sans-serif;
}

.urbanist {
  font-family: "Urbanist", serif;
  font-optical-sizing: auto;
}

.menu-enter {
  transform: scale(0.95);
  opacity: 0;
  height: 0;
  visibility: hidden;
}
.menu-active {
  transform: scale(1);
  opacity: 1;
  height: auto;
  transition: transform 0.3s ease, opacity 0.3s ease, height 0.3s ease;
  visibility: visible;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:wght@100..1000&display=swap');

.variable-text {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 4rem;
  display: inline-block;
}
.char {
  display: inline-block;
  transition: font-weight 0.3s;
}
.char.space {
  width: 0.2em; /* Külön stílus a szóközre, hogy ne tűnjön el */
}
#companyMenu {
  z-index: 20;
}

#projectMenu {
  z-index: 10;
}

#pageContainer {
  transition: filter 1s ease-in-out;
}

#pageContainer.blurred {
  /*filter: blur(5px) brightness(0.5) grayscale(100%);*/
}

.patterned-div {
  width: 100%;
  height: 400px; /* Állítsd be a kívánt méretet */
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="%23ededf7" class="mx-auto mt-1 h-[80px] w-auto mb-10"%3E%3Cpath stroke-linecap="round" stroke-linejoin="round" d="M4.098 19.902a3.75 3.75 0 0 0 5.304 0l6.401-6.402M6.75 21A3.75 3.75 0 0 1 3 17.25V4.125C3 3.504 3.504 3 4.125 3h5.25c.621 0 1.125.504 1.125 1.125v4.072M6.75 21a3.75 3.75 0 0 0 3.75-3.75V8.197M6.75 21h13.125c.621 0 1.125-.504 1.125-1.125v-5.25c0-.621-.504-1.125-1.125-1.125h-4.072M10.5 8.197l2.88-2.88c.438-.439 1.15-.439 1.59 0l3.712 3.713c.44.44.44 1.152 0 1.59l-2.879 2.88M6.75 17.25h.008v.008H6.75v-.008Z"%3E%3C/path%3E%3C/svg%3E');
  background-size: 100px 100px;
  background-repeat: repeat;
  background-color: #f3f4f6;
  background-position: center;
  transform: rotate(0deg); /* Elforgatás 45 fokkal */
  
  /* Animáció beállítása */
  animation: move-background 10s linear infinite;
}

@keyframes move-background {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px -100px; /* Felfelé és jobbra 45 fokos irányban mozgatás */
  }
}
