.has-fade {
  visibility: hidden;
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
.fade-in {
  animation: fade-in 250ms ease-in-out forwards;
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
.fade-out {
  animation: fade-out 250ms ease-in-out forwards;
}

html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
}
body.no-scroll {
  overflow: hidden;
}

a, a:visited, a:hover {
  text-decoration: none;
}

h1 {
  font-size: 2rem;
}

.container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.header.open .header__toggle > span:first-child {
  transform: rotate(45deg);
}
.header.open .header__toggle > span:nth-child(2) {
  opacity: 0;
}
.header.open .header__toggle > span:last-child {
  transform: rotate(-45deg);
}
.header .overlay {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(#2b2b2b, transparent);
}
.header nav {
  position: relative;
  background-color: #000000;
  padding-top: 1.0625rem;
  padding-bottom: 1.0625rem;
}
@media (max-width: 63.9375em) {
  .header__logo {
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }
}
.header__toggle > span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #ffffff;
  transition: all 300ms ease-in-out;
  transform-origin: 3px 1px;
}
.header__toggle > span:not(:last-child) {
  margin-bottom: 5px;
}
.header__menu {
  position: absolute;
  width: calc(100% - 3rem);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  margin-top: 1.5rem;
  padding: 1.625rem;
  border-radius: 5px;
}
.header__menu a {
  display: block;
  padding: 0.625rem;
  text-align: center;
  color: #000000;
}
.header__links {
  margin: auto;
}
.header__links a {
  font-size: 1rem;
  color: #ffffff;
}
.header__links a:not(:last-child) {
  margin-right: 32px;
}
.header__links a:hover {
  color: #608b3b;
  transition: 0.3s;
}

.rolunk {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 6rem 4rem 6rem 4rem;
}
@media (min-width: 64em) {
  .rolunk {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 64em) {
  .rolunk__text {
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }
}
.rolunk__text h1 {
  text-align: center;
}
.rolunk__text p {
  text-align: justify;
  margin-bottom: 2rem;
}
.rolunk__image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.3rem;
}

.splide__slide img {
  width: 100%;
  height: auto;
}

.szemuvegek-slide {
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: #e4e4e4;
}

.slide-content {
  margin: 0 3rem;
}

.card {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  width: 30rem;
  background-color: white;
  border-radius: 2rem;
}

.card-image {
  padding: 0.1875rem;
  margin: 2rem;
}

.card-image .card-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
}

.more {
  margin: 1rem;
  padding: 0.5rem 1rem;
  background-color: #608b3b;
  color: white;
  border: none;
  font-size: 0.9rem;
  border-radius: 0.5rem;
  text-decoration: none;
  cursor: pointer;
}

.more:hover {
  background-color: #47682d;
  transition: 0.3s;
}

iframe {
  margin: 5rem 0 5rem 0;
  min-width: 100%;
}

.szemvizsgalat {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: white;
  padding: 3rem 1rem;
  overflow: hidden;
}
.szemvizsgalat::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/app/images/szemvizsgalat_tomor.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}
.szemvizsgalat .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
}

.szemvizsgalat-text {
  text-align: center;
  margin-bottom: 3rem;
}
.szemvizsgalat-text .szemvizsgalat-text {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}
.szemvizsgalat-text .szemvizsgalat-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  word-wrap: break-word;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .szemvizsgalat-text .szemvizsgalat-text h1 {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }
}
@media (max-width: 320px) {
  .szemvizsgalat-text .szemvizsgalat-text h1 {
    font-size: 1.4rem;
  }
}
.szemvizsgalat-text .szemvizsgalat-text .subtitle {
  font-size: 1rem;
}
@media (max-width: 480px) {
  .szemvizsgalat-text .szemvizsgalat-text .subtitle {
    font-size: 0.9rem;
  }
}
.szemvizsgalat-text .subtitle {
  color: #5c813b;
  font-weight: 300;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.info-card h2 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #5c813b;
  border-bottom: 1px solid rgba(92, 129, 59, 0.3);
  padding-bottom: 0.5rem;
}
.info-card p {
  margin: 0.8rem 0;
}

.contact-link {
  display: block;
  color: white;
  text-decoration: none;
  margin: 1rem 0;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.contact-link span {
  display: block;
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 0.2rem;
}
.contact-link strong {
  font-size: 1.1rem;
}
.contact-link:hover {
  background: rgba(92, 129, 59, 0.1);
  color: #5c813b;
  transform: translateY(-2px);
}

.site-footer {
  background-color: black;
  color: #ffffff;
  padding: 2rem 1rem;
}
.site-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.site-footer .footer-content .footer-logo img {
  max-width: 150px;
  height: auto;
  display: block;
}
.site-footer .footer-content .footer-contact {
  text-align: right;
}
.site-footer .footer-content .footer-contact h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
}
.site-footer .footer-content .footer-contact p {
  margin: 0.2rem 0;
  font-size: 0.95rem;
}
.site-footer .footer-content .footer-contact a {
  color: #999999;
}
.site-footer .footer-content .footer-contact a:hover {
  color: #608b3b;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .site-footer .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .site-footer .footer-content .footer-contact {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */