@charset "UTF-8";
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f4f4f4;
}

::-webkit-scrollbar-thumb {
  background-color: #7286c0;
  border-radius: 10px;
  border: 3px solid #f4f4f4;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #79c7c1 #f4f4f4;
}

body {
  overflow-x: hidden;
}

#scrollToTopButton {
  max-width: 100%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #019788;
  box-shadow: 0px 4px 10px rgba(73, 45, 22, 0.801);
  color: #fff;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  display: none;
  z-index: 999;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}
#scrollToTopButton svg {
  width: 25px;
  height: 25px;
}

#scrollToTopButton.show {
  display: block;
}

.section-1 .section-1-div {
  margin-top: 5vh;
}
.section-1 .section-1-div .container {
  width: 70%;
  max-width: 1280px;
  height: auto;
  overflow: hidden;
  position: relative;
  align-items: center;
  margin: auto;
}
.section-1 .section-1-div .container img {
  width: 100%;
  padding: 20px;
  flex-shrink: 0;
}
.section-1 .section-1-div .container .wrapper {
  width: 100%;
  display: flex;
  animation: slide 40s infinite;
}
@keyframes slide {
  0%, 10% {
    transform: translateX(0%);
  }
  14.3%, 24.3% {
    transform: translateX(-100%);
  }
  28.6%, 38.6% {
    transform: translateX(-200%);
  }
  42.9%, 52.9% {
    transform: translateX(-300%);
  }
  57.2%, 67.2% {
    transform: translateX(-400%);
  }
  71.5%, 81.5% {
    transform: translateX(-500%);
  }
  85.8%, 94.8% {
    transform: translateX(-600%);
  }
  95%, 100% {
    transform: translateX(-600%);
  }
}

.section-2 {
  background: linear-gradient(to right, #019788, #7286c0);
  height: auto;
  position: relative;
}
.section-2 .section-2-div {
  max-width: 1920px;
  align-items: center;
  margin: auto;
}
.section-2 .section-2-div .row {
  display: flex;
  position: relative;
  margin: auto;
  width: 80%;
}
.section-2 .section-2-div .row .column_left {
  flex: 20%;
  width: 40%;
}
.section-2 .section-2-div .row .column_left img {
  width: 100%;
  height: auto;
}
.section-2 .section-2-div .row .column_right {
  flex: 80%;
  width: 60%;
  color: #fff;
  text-align: center;
  padding-top: 5vh;
  padding-bottom: 5vh;
}
@media only screen and (max-width: 720px) {
  .section-2 .section-2-div .row .column_right {
    width: 90%;
    text-align: justify;
  }
  .section-2 .section-2-div .row .column_right h1 {
    text-align: center;
    margin-bottom: 25px;
  }
}
.section-2 .section-2-div .row #services {
  flex: 80%;
  width: 60%;
  color: #fff;
  text-align: center;
  padding-top: 5vh;
  padding-bottom: 5vh;
}
.section-2 .section-2-div .row #services h4, .section-2 .section-2-div .row #services h5 {
  text-align: left;
  padding-left: 10px;
  font-weight: normal;
}
@media only screen and (max-width: 720px) {
  .section-2 .section-2-div .row #services h4, .section-2 .section-2-div .row #services h5 {
    text-align: center;
  }
}
@media only screen and (max-width: 720px) {
  .section-2 .section-2-div .row {
    display: flex; /* Maradjon flexbox */
    flex-direction: column; /* Oszlop elrendezés */
    justify-content: center; /* Középre igazítás függőlegesen */
    align-items: center; /* Középre igazítás vízszintesen */
    margin: auto;
    width: 100%; /* Szélesség kicsit rugalmasabbá tétele */
  }
}
.section-2 .section-2-div .row:after {
  content: "";
  display: table;
  clear: both;
}

.notes .background-notes {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.notes .note {
  position: absolute;
  font-size: 24px;
  color: #b659dc;
  opacity: 0;
  animation: fall linear infinite;
}
@keyframes fall {
  0% {
    transform: translateY(-10%) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}

/*# sourceMappingURL=global.css.map */
