/* Start Global Rules */
* {
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  background-color: #f2f5f7;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
/* Small */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
/* Medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
/* Large */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/* End Global Rules */

/* Start Landing Page */
.landing-page header {
  min-height: 80px;
  display: flex;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Árnyék hozzáadása */
}
@media (max-width: 767px) {
  .landing-page header {
    min-height: auto;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Árnyék hozzáadása */
    position: sticky; /* Opcionális: a fejléc "ragadós" legyen */
    top: 0; /* Opcionális: a fejléc a lap tetején maradjon */
    z-index: 1000; /* Opcionális: a fejléc mindig legyen felül */
  }
}
.landing-page header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .landing-page header .container {
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    padding-bottom: 0.5em;
  }
}
.landing-page header .logo {
  color: #1e3a8a;
  font-style: italic;
  text-transform: uppercase;
  font-size: 25px;
}
.landing-page header .companyLogo {
  height: 25px; /* Beállíthatod a kívánt magasságot */
  width: auto; /* A magassághoz igazítva automatikusan beállítja a szélességet */
}

@media (max-width: 767px) {
  .landing-page header .logo {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.landing-page header .links {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .landing-page header .links {
    text-align: center;
    gap: 10px;
  }
}
.landing-page header .links li {
  margin-left: 30px;
  color: #5d5d5d;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .landing-page header .links li {
    margin-left: auto;
  }
}
.landing-page header .links li:last-child {
  border-radius: 20px;
  font-weight: 500 !important;
  font-size: 0.9375rem;
  padding: 9px 30px 8px;
  color: #fff;
  background-color: #0056f0;
  transition: background-color 0.3s ease;
}
.landing-page header .links li:last-child:hover {
  background-color: #0e91ff;
}
.landing-page header .links li:not(:last-child):hover {
  color: #6c63ff;
}
.landing-page .content .container {
  margin-top: 3em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .landing-page .content .container {
    gap: 0;
    min-height: calc(100vh - 200px);
    justify-content: center;
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .landing-page .content .info {
    text-align: center;
  }
}
.landing-page .content .info h1 {
  color: ##33405e; /* Szürke-szürke szín */
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.landing-page .content .info p {
  font-weight: 350;
  font-family: var(--fAlt);
  line-height: 2em;
  color: #4a5568; /* Szürke szín */
}
.blue-highlight {
  color: #1e3a8a;
  font-weight: bold;
}

.landing-page .content .imageRightSide img {
  max-width: 600px;
  max-height: 400px;
  padding-left: 50px;
  padding-right: 0px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.landing-page .content .imageRightSide img:hover {
  transform: translateY(-10px) scale(1.025); /* Feljebb mozgatás és kicsi nagyítás */
}

@media (max-width: 767px) {
  .landing-page .content .imageRightSide img {
    max-width: 360px;
    align: left;
    padding: 0px;
    vertical-align: middle;
  }
}

.landing-page .content .imageLeftSide img {
  max-width: 600px;
  max-height: 400px;
  padding-left: 0px;
  padding-right: 50px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.landing-page .content .imageLeftSide img:hover {
  transform: translateY(-10px) scale(1.025); /* Feljebb mozgatás és kicsi nagyítás */
}

@media (max-width: 767px) {
  .landing-page .content .imageLeftSide img {
    max-width: 360px;
    align: left;
    padding: 0px;
    margin-top: 1.5rem; /* 24px */
    margin-bottom: 0.75rem; /* 12px */
    vertical-align: middle;
  }
}

@media (max-width: 767px) {
  .landing-page .content .imageRightSide img:hover {
    transform: none; /* Effektus letiltása kisebb képernyőkön */
  }

  .landing-page .content .imageLeftSide img:hover {
    transform: none; /* Effektus letiltása kisebb képernyőkön */
  }
}

/* End of open source Landing Page */
footer {
  text-align: center;
  padding: 20px;
  color: #fff;
  background-color: #1e1e1e;
  margin-top: 50px;
}
.contentSeparator {
  width: 5%; /* Teljes szélesség */
  height: 2px; /* Vonal vastagsága */
  background-color: #ccc; /* Vonal színe */
  margin: 5em auto; /* Felső és alsó margó */
}

@media (max-width: 767px) {
  .contentSeparator {
    width: 10%; /* Teljes szélesség */
    margin: 0.5em auto; /* Felső és alsó margó */
  }
}
