* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Play", sans-serif;
}

body {
  height: 100vh;
  background-color: #ddd;
  background-image: linear-gradient(to right,
      rgb(255, 255, 255),
      rgb(157, 187, 235));
}

a:hover {
  text-decoration: none;
}

a {
  text-decoration: none;
  color: rgb(26, 37, 67);
}



/* ----------- Fejléc --------------- */
header {
  position: relative;
  padding: 0 2rem;
  border-bottom: 1px solid currentColor;
  position: sticky;
  top: 0;
  z-index: 100;
  background-image: linear-gradient(to right,
      rgb(255, 255, 255),
      rgb(157, 187, 235));
}

li {
  list-style: none;
}

.navbar a,
.dropdown_menu a {
  text-decoration: none;
  color: rgb(26, 37, 67);
  font-size: 1rem;
}

a:hover {
  color: #2ca6d2;
}

.navbar {
  width: 100%;
  height: 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  text-transform: uppercase;
}

.navbar .logo a {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar .links {
  display: flex;
  /* gap: 2rem;*/
}

.navbar .link {
  border-right: 1px solid currentColor;
  padding: 10px 2rem;
}

.navbar .utolsolink {
  padding: 8px 2rem;
}

.navbar .toggle_btn {
  color: rgb(26, 37, 67);
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

.action_btn {
  background-color: none;
  padding: 0.5rem 1rem;
  border: 1px solid rgb(26, 37, 67);
  outline: none;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  transition-duration: 0.8s;
  transition-property: background-color, color;
}

.action_btn:hover {
  color: #fff;
  background-color: rgb(26, 37, 67);
  transition-duration: 0.8s;
  transition-property: background-color, color;
}

.action_btn:active {
  scale: 0.95;
}


/* ----------------------- Dropdown mwnu --------------------------------------- */
.dropdown_menu {
  z-index: 2;
  display: none;
  position: absolute;
  right: 2rem;
  top: 60px;
  height: 0;
  width: 300px;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  border-radius: 10px;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.175, 0.88, 0.32, 1.275);
}

.dropdown_menu.open {
  height: 250px;
}

.dropdown_menu li {
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown_menu .action_btn {
  width: 90%;
  display: flex;
  justify-content: center;
}

/* ---------------------- Széchenyi 2020 ------- */
#szechenyi2020 {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1;
}

#szechenyi2020 img {
  height: 150px;
}

/* ----------------------- Regisztráció --------------------------------------- */
.regisztracio {
  background-color: lightcoral;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.regisztracio h3 {
  margin: 0;
  padding: 15px;
}

.regisztracio a {
  margin: 0 30px;
  padding: 10px 30px;
font-size: 1rem;
}

/* ----------------------- VIDEO Háttér ---------------------------------------- */
#background-video {
  position: relative;
}

#background-video video {
  width: 100%;
  height: auto;
}

#background-video-content {
  position: absolute;
  top: -15px;
  left: 0;
  z-index: 1;
  width: 95%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  text-align: left;
  color: rgb(26, 37, 67);
  margin-left: 10px;
}

#background-video-content h1 {
  font-size: 5.5em;
  margin-bottom: 0.5em;
  text-shadow: 1px 1px 2px grey;
}

#background-video-content h3 {
  font-size: 1.5em;
  margin-bottom: 1em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

#background-video-content p {
  font-size: 1.3em;
  font-weight: 500;
  margin-bottom: 50px;
}

#background-video-content * {
  position: relative;
  z-index: 1;
}

/* ----------------------- Main theme ---------------------------------- */

.main-headline {
  padding: 100px 10rem;
  text-align: center;
  background-color: white;
}

.main-headline h2 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
}

.main-headline h3 {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.main-headline_btn {
  background-color: none;
  padding: 1.5rem 2.2rem;
  border: 1px solid rgb(26, 37, 67);
  color: rgb(26, 37, 67);
  outline: none;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  transition-duration: 0.8s;
  transition-property: background-color, color;
}


.main-headline_btn:active,
.main-kapcsolat_btn:active,
.main-uzenet_btn:active {
  scale: 0.95;
}

.main-kapcsolat_btn {
  background-color: none;
  padding: 3rem 3rem;
  width: 100%;
  border: 1px solid rgb(26, 37, 67);
  color: rgb(26, 37, 67);
  outline: none;
  text-decoration: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition-duration: 0.8s;
  transition-property: background-color, color;
  letter-spacing: 3px;
}

.main-uzenet_btn {
  background-color: none;
  padding: 5px;
  width: 50%;
  border: 1px solid rgb(26, 37, 67);
  color: rgb(26, 37, 67);
  outline: none;
  text-decoration: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition-duration: 0.8s;
  transition-property: background-color, color;
  letter-spacing: 3px;
}

.main-uzenet_btn:hover {
  color: #fff;
  background-color: rgb(26, 37, 67);
  /* border: 1px solid rgb(255, 255, 255);*/
  transition-duration: 0.8s;
  transition-property: background-color, color, border;
  text-decoration: none;
}

.main-uzenet {
  background-color: none;
  padding: 3rem 3rem;
  width: 70%;
  border: 1px solid rgb(26, 37, 67);
  color: rgb(26, 37, 67);
  outline: none;
  text-decoration: none;
  font-size: 1.5rem;
  letter-spacing: 3px;
  box-shadow: 0 0 0 rgb(26, 37, 67);
  transition-duration: 0.8s;
  transition-property: box-shadow;
}

.main-uzenet:hover {
  transition-duration: 0.8s;
  box-shadow: 0 0 60px rgb(26, 37, 67);
}

.error {
  background-color: rgb(237, 48, 48);
  padding: 10px;
  text-align: center;
  color: whitesmoke;
  font-size: large;
}


.piros {
  color: rgb(206, 32, 2);
}

.kek {
  color: #0e21c5;
}

.zold {
  color: rgb(1, 84, 26);
}


.input {
  width: 94%;
  font-size: medium;
}

.input_kicsi {
  width: 40%;
}

.submit {
  text-align: center;
  font-size: 0.8rem;
}

.urlap {
  text-align: left;
  margin-left: 3%;
  letter-spacing: 0;
  width: 100%;
}


#frmlogin label {
  margin-bottom: 0;

}

#frmlogin p {
  margin-bottom: 6px;
  font-size: medium;
}

.main-headline_btn:hover,
.main-kapcsolat_btn:hover {
  color: #fff;
  background-color: rgb(26, 37, 67);
  transition-duration: 0.8s;
  transition-property: background-color, color;
  text-decoration: none;
}

.main-kapcsolat_btn:hover h3 {
  text-decoration: none;
}


.main-kapcsolat_btn:hover a {
  text-decoration: none;
}



.main-headline_btn:active {
  scale: 0.95;
}

.main-thema {
  padding: 50px 25px;
}

.szakertelem img {
  width: 63px;
}

.rolunk {
  text-align: justify;
}

.main-termekcim2 {
  padding: 90px 5rem;
  text-align: justify;
  background-color: white;
}

.main-termekcim2 h2 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}

.main-termekcim2 h3 {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.main-termekcim2 h4 {
  font-size: 1.4rem;
  font-weight: 400;
}

.main-termekek {
  padding: 90px 5rem;
  text-align: center;
  background-color: white;
}

.termekek {
  text-align: center;
}

.main-app h2,
.termekek h2 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}

.main-termek h2 {
  font-size: 5rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}

.main-termek h3 {
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: uppercase;
}

.main-termekek h3 {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.main-termekek p {
  font-size: 1.2rem;
  font-weight: 200;
  text-transform: uppercase;
}

.card-footer {
  border: 1px solid rgb(26, 37, 67);
  background-color: lightgrey;
  color: rgb(26, 37, 67);
  text-decoration: none;
  padding: 0.75rem 0.2rem;
}

.card a {
  color: rgb(26, 37, 67);
  text-decoration: none;
}

.card {
  transform: scale(1);
  transition-duration: 1.2s;
  box-shadow: rgb(151, 151, 151) 2px 2px 20px;
  border-radius: 5px;
}

.card-new {
  position: fixed;
  top: 7px;
  ;
  font-size: medium;
  background-color: red;
  color: white;
  font-weight: 700;
  padding: 10px 5px;
  margin: 10px 5%;
  width: 90%;
  border-radius: 15px;
  z-index: 1;
}

.card-new2 {
  position: fixed;
  top: 7px;
  ;
  font-size: medium;
  background-color: rgb(155, 11, 184);
  color: white;
  font-weight: 700;
  padding: 10px 1px;
  margin: 10px 5%;
  width: 90%;
  border-radius: 15px;
  z-index: 1;
}


.card-kedvezmenyes {
  position: fixed;
  top: 7px;
  ;
  font-size: medium;
  background-color: rgb(10, 80, 10);
  color: white;
  font-weight: 700;
  padding: 10px 1px;
  margin: 10px 5%;
  width: 90%;
  border-radius: 15px;
  z-index: 1;
}

.card-img-top {
  width: 66%;
}

.card img {
  transform: scale(0.8);
  transition-duration: 0.6s;
}

.card:hover img {
  transform: scale(1.05);
  transition-duration: 0.6s;
}

.card:hover {
  transition-duration: 0.6s;
  box-shadow: rgb(26, 37, 67) 3px 3px 30px;
}

.card:active {
  scale: 0.95;
}

.kozepre {
  justify-content: center;
}

.container {
  max-width: 1600px;
}

.row {
  padding: 0 20px;
  width: 100%;
  margin: auto;
}

.termek-fokep {
  max-width: 1200px;
  margin: 0 auto;
}

.main-app,
.main-termek,
.main-kapcsolat {
  background-image: linear-gradient(to right,
      rgb(255, 255, 255),
      rgb(157, 187, 235));
  padding: 50px 3rem;
  text-align: center;
  text-align: -webkit-center;
}

.main-app-text {
  transform: translate(0%, 0%);
}

.main-termek-text {
  transform: translate(18%, 5%);
  text-align: left;
}

.main-app img {
  width: 20vw;
}

.main-termek img {
  width: 40vw;
}

.termekek img {
  width: 100%;
}

.termekek-all {
  padding-bottom: 20px;
  text-align: center;
}

.termekek h3 {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.termekek p {
  font-size: 0.8rem;
  font-weight: 200;
  text-transform: uppercase;
}

.web-market img {
  height: 50px;
  width: 165px;
  margin: 5px 10px;
  transform: scale(1);
  transition-duration: 1.2s;
}

.card-footer h3 {
  font-size: 1rem;
}

.termekek-card-footer {
  position: fixed;
  bottom: 0;
  color: rgb(26, 37, 67);
  text-decoration: none;
}

.keret {
  border: 1px solid rgb(157, 187, 235);
  box-shadow: rgb(26, 37, 67) 3px 3px 30px;
}

.keret img {
  width: 100%;
}

.main-thema h2,
.main-kapcsolat h2 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}

.media-body {
  font-size: 1.1rem;
}

.media-body h5 {
  font-weight: bold;
}

.main-termekek h2,
.main-termek-kepek h2,
.main-cert-kepek h2 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}

.main-termek-kepek {
  padding: 20px 1rem;
  text-align: center;
  background-color: white;
}

.main-termek-kepek img,
.main-cert-kepek img {
  width: 140px;
  margin: 5px 10px;
}

.main-cert-kepek {
  padding: 20px 1rem;
  text-align: center;
  background-color: white;
}

.web-market img:hover {
  transform: scale(1.05);
  transition-duration: 0.6s;
}

.impresszum label {
  width: 99%;
  font-size: 1rem;
  border: none;
  margin-bottom: 0px;
  color: rgb(26, 37, 67);
}

.impresszum p {
  width: 99%;
  font-size: 1.3rem;
  font-weight: 600;
  border: none;
  margin-bottom: 8px;
  color: black;
}

/* --------------  Marmónika CSS -------------- */

/* Style the buttons that are used to open and close the accordion panel */

.accordion {
  background-color: transparent;
  color: rgb(26, 37, 67);
  cursor: pointer;
  padding: 0px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  font-weight: 700;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */

.active,
.accordion:focus,
.accordion:active,
.accordion:hover {
  padding-left: 12px;
  border: none;
  text-decoration: none;
}

/* Style the accordion panel. Note: hidden by default */

.panel {
  margin-bottom: 0;
  padding: 0 18px;
  /* background-color: white; */
  /* display: none; */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

/* ------------------------- FOOTER -------------------------------------------- */

.ooter {
  width: 100%;
  background-color: #ddd;
  background-image: linear-gradient(to right,
      rgb(255, 255, 255),
      rgb(157, 187, 235));
  border-top: 1px solid rgb(26, 37, 67);
  padding: 0;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 1rem;
  color: rgb(26, 37, 67);
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: rgb(26, 37, 67);
  height: 5px;
  width: 130px;
  border-radius: 1em;
}

.footer-col a {
  color: rgb(26, 37, 67);
  font-size: 1.3rem;
  transition: 0.5s ease;
}

.footer-col a:hover:not(.socials a) {
  padding-left: 12px;
  color: #2ca6d2;
  text-decoration: none;
}

.footer-col .socials {
  display: inline-block;
  font-size: 24px;
}

.footer-col .socials a {
  margin-left: 3px;
}

.footer-col .socials i:hover {
  transition: 0.3s ease;
  transform: scale(1.2) translateY(-5px);
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 5px;
}

.footer-headline {
  padding: 15px 0;
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid rgb(26, 37, 67);
}

.copyrights {
  padding-top: 20px;
  text-align: center;
}

/* ----------------------- Responsive design 992px ----------------------------- */
@media (max-width: 992px) {

  .navbar .links,
  .navbar .action_btn {
    display: none;
  }

  .navbar .toggle_btn {
    display: block;
  }


  .navbar .link,
  .navbar .utolsolink {
    padding: 10px 1rem;
  }

  .dropdown_menu {
    display: block;
  }

  .main-headline {
    padding: 100px 5rem;
  }

  .main-app,
  .main-termek,
  .main-termekcim2 {
    padding: 50px 3rem;
  }

  #background-video-content h1 {
    font-size: 4.2rem;
    margin-bottom: 15px;
  }

  #background-video-content h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  #background-video-content p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .main-termek-text {
    transform: translate(0%, 10%);
    text-align: left;
  }

  .main-headline_btn {
    padding: 1rem 2.2rem;
  }

  .main-kapcsolat_btn {
    padding: 1rem 1.2rem;
    letter-spacing: 2px;
  }

  .main-uzenet {
    padding: 1rem 1.2rem;
    letter-spacing: 2px;
    width: 100%;

  }

  .main-termekek {
    padding: 50px 3rem;
  }

  .main-headline h2,
  .main-app h2,
  .termekek h2,
  .main-termek h2,
  .main-termekcim2 h2 {
    font-size: 2.5rem;
  }

  .main-headline h3,
  .main-app h3,
  .termekek h3,
  .main-termek h3,
  .main-termekcim2 h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .card-footer h3 {
    font-size: xx-large;
  }

  .card-new,
  .card-new2 {
    margin-top: 10px;
  }

  .row {
    padding: 0 15px;
  }

  .main-app .app-img {
    width: 30vw;
  }

  .main-cert-kepek img {
    width: 120px;
    margin: 3px 10px;
  }
}

/* ----------------------- Responsive design 767px ----------------------------- */
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }

  .main-headline {
    padding: 70px 2rem;
  }

  .main-app,
  .main-termek,
  .main-termekcim2 {
    padding: 50px 2rem;
  }

  #background-video-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
  }

  #background-video-content h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  #background-video-content p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .main-headline_btn {
    padding: 1rem 2.2rem;
  }

  .main-kapcsolat {
    padding: 40px 1rem;
  }

  .main-kapcsolat_btn {
    padding: 1rem 0.1rem;
    letter-spacing: 1px;
  }


  .main-uzenet {
    padding: 1rem 0.1rem;
    letter-spacing: 1px;
  }

  .main-kapcsolat h4 {
    font-size: 1rem;
  }

  .main-termekek {
    padding: 35px 2rem;
  }

  .main-headline h2,
  .main-app h2,
  .termekek h2,
  .main-termek h2,
  .main-termekcim2 h2 {
    font-size: 1.8rem;
  }

  .main-headline h3,
  .main-app h3,
  .termekek h3,
  .main-termek h3,
  .main-termekcim2 h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .card-footer h3 {
    font-size: x-large;
  }

  .main-app .app-img {
    width: 30vw;
  }

  .main-cert-kepek img {
    width: 105px;
    margin: 2px 5px;
  }
}

/* ----------------------- Responsive design 576px ----------------------------- */
@media (max-width: 576px) {
  .dropdown_menu {
    left: 2rem;
    width: unset;
  }

  .footer-col {
    width: 100%;
  }

  .main-headline {
    padding: 70px 1rem;
  }

  .main-app,
  .main-thema,
  .main-termek,
  .main-termekcim2 {
    padding: 50px 1rem;
  }

  #background-video-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  #background-video-content h3 {
    display: none;
    font-size: 1rem;
    margin-bottom: 10px;
  }

  #background-video-content p {
    display: none;
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .main-headline_btn {
    padding: 1rem 2.2rem;
  }

  .main-kapcsolat {
    padding: 30px 0.2rem;
  }

  .main-kapcsolat_btn {
    padding: 1rem 0;
    letter-spacing: normal;
  }

  uelap .main-uzenet {
    padding: 1rem 0;
    letter-spacing: normal;
  }

  .input_kicsi {
    width: 70%;
  }

  .main-termekek {
    padding: 30px 1rem;
  }

  .main-headline h2,
  .main-app h2,
  .termekek h2,
  .main-termek h2,
  .main-termekcim2 h2 {
    font-size: 1.8rem;
  }

  .main-thema h3 {
    font-size: 0.9rem;
  }

  .main-headline h3,
  .main-app h3,
  .termekek h3,
  .main-termek h3,
  .main-termekcim2 h4 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .card-footer h3 {
    font-size: x-large;
  }

  .main-app .app-img {
    width: 40vw;
  }

  .main-cert-kepek img {
    width: 85px;
    margin: 2px 5px;
  }

  .row {
    padding: 0 5px;
  }

  .main-thema {
    padding: 30px 2px;
  }

  .szakertelem img {
    width: 33px;
  }

  .main-app img {
    width: 35vw;
  }
}