* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #262626;
  line-height: 1.5;
}

html, body, section {
  width: 100%;
}


a {
  text-decoration: none;
  color: #5A9BD3;
}

h3 {
  padding: 1em 0 0.5em 0;
}

#topBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 50;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#topBtn:hover {
  background-color: #262626;
}

header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: flex-start;
}

/* a jobb felső sarokban lévő logó és jelmondat pozíconálása */
.header__logo {
  /*position: fixed;
  top: 0.5rem;
  left: 0.5rem; 
  z-index: 2;
   
  */
  margin-top: 0.5rem;
  margin-left: 0.5rem;
  width: 200px;

}

.header__nav {
  display: flex;
  flex-direction: row;
}

.header__nav span {
  margin-top: 4px;
  height: 40px;
  font-size: 1.4em;
  margin-right: 50px;
}


/* a kezdőoldali menü */
.header__nav nav {
  position: absolute;
  top: 26px;
  right: 0;

  /*z-index: 2;
  width: 100%;*/
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-height: 100vh;
  overflow-y: scroll;
  /* Hogy a fixed miatt mégis a menü területe gördüljön, és ne a háttértartalom */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.header__nav nav::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.header__nav nav {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/*
#toggle-menu {
  position: fixed;
  top: 15px;
}
*/

/* a hamburgermenü területe */
.menu-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 40px;
  cursor: pointer;
  transition: all .5s ease-in-out;
}

/* a hamburgermenü középső vonala */
.menu-btn__burger {
  width: 40px;
  height: 4px;
  background: #262626;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(255, 101, 47, .2);
  transition: all .5s ease-in-out;
}

/* a hamburgermenü alsó és felső vonala */
.menu-btn__burger::before,
.menu-btn__burger::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 4px;
  background: #262626;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(255, 101, 47, .2);
  transition: all .5s ease-in-out;
}

.menu-btn__burger::before {
  transform: translateY(-12px);
}

.menu-btn__burger::after {
  transform: translateY(12px);
}

/* a főmenü tartalma */
.header__nav nav ul {
  display: none;
  list-style-type: none;
  background-color: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(68, 68, 68, 0.95);
  margin: 0;
  /*50px 0 0 0;*/
  padding: 0;
}

.header__nav nav ul.sub-menu {
  background-color: rgba(34, 34, 34, 0);
  margin-top: 0;
}

.header__nav nav a,
.header__nav nav label {
  text-decoration: none;
  color: #262626;
  /*display: block;*/
  display: flex;
}

.header__nav nav label::before {
  content: "Menü";
  margin-top: 4px;
  margin-right: 2px;
  height: 40px;
  font-size: 1.4em;
  color: #262626;
}

@media (max-width: 768px) {
  .header__nav nav label::before {
    font-size: 1.2em;
    margin-top: 6px;
  }
}

.header__nav nav ul li {
  padding: 1rem 0 1rem 0.4rem;
}

.header__nav nav ul.sub-menu li {
  padding: 1rem 0 1rem 1rem;
}


/* a menü a rejtett checkboxok miatt lesz js mentesen érintésérzékeny, ami soha sem látszik */
.header__nav nav input[type="checkbox"] {
  display: none;
}

/* a benyomott checkbox utáni label utáni ul kinyitása */
.header__nav nav input[type="checkbox"]:checked+label+ul {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  padding: 0 0.5em 0 0;
}

@media (max-width: 768px) {
  .header__nav nav input[type="checkbox"]:checked+label+ul {
    width: 100%;
  }
}

/* kinyíló almenü animációja */
@keyframes changeDownToUp {
  0% {
    content: "▾";
  }

  50% {
    color: #666;
  }

  100% {
    content: "▴";
    color: #f0f0f0;
  }
}

/* záródó almenü animációja */
@keyframes changeUpToDown {
  0% {
    content: "▴";
  }

  50% {
    color: #666;
  }

  100% {
    content: "▾";
    color: #f0f0f0;
  }
}

/* zárt almenü alap tartalma */
.drop-icon::before {
  content: "▾";
  animation: changeUpToDown 0.45s linear;
}

/* nyitott almenü alap tartalma */
.header__nav nav input[type="checkbox"]:checked+label>.drop-icon::before {
  content: "▴";
  animation: changeDownToUp 0.45s linear;
}

/* a burger menü animációja: vonalból X */
.header__nav nav input[type="checkbox"]:checked+label>.menu-btn>.menu-btn__burger {
  transform: translateX(-50px);
  background: transparent;
  box-shadow: none;
}

.header__nav nav input[type="checkbox"]:checked+label>.menu-btn>.menu-btn__burger::before {
  transform: rotate(45deg) translate(30px, -30px);
}

.header__nav nav input[type="checkbox"]:checked+label>.menu-btn>.menu-btn__burger::after {
  transform: rotate(-45deg) translate(30px, 30px);
}

/* a logó és a menü ikonjának háttere, amikor túl vagyunk a banneren  */
/*.header-bg {
  height: 69px;
  position: fixed;
  width: 100%;
  background-color: rgba(90, 155, 211, 0.5);
  top: 0;
}*/

h1 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}

.teljes_kep {
  width: 100%;
}

.maxwidth {
  max-width: 1024px;
  margin: 0 auto;
}

.footer {
  color: #fff;
  background-color: #5A9BD3;
  padding: 3em;
}

footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  align-items: center;
  background-color: #f3f1f0;
  color: #262626;
}

.partner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  align-items: center;
}

.partnerbox {
  padding: 1em;
  width: 25%;
  order: 0;
  flex: 1 1 auto;
  align-self: auto;
  text-align: center;
}

.partnerbox > img {
  height: 120px;
}

.footerbox {
  padding: 1em;
  width: 25%;
  order: 0;
  flex: 1 1 auto;
  align-self: auto;
  text-align: center;
}

.footerbox a {
  color: #262626;
}

.footerbox ul {
  list-style-type: none;
}

/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}

@media screen and (max-width: 700px) {
  .footerbox, .partnerbox {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  .footerContent {
    flex-direction: column;
  }

  .footerbox, .partnerbox {
    width: 100%;
  }
}

#notificationArea {
  position: absolute;
  left: 0;
  bottom: 0;
}

.danger, .success, .info, .warning {
  margin-bottom: 15px;
  padding: 4px 12px;
  color: #000;
}

.danger {
  background-color: #ffdddd;
  border-left: 6px solid #f44336;
}

.success {
  background-color: #ddffdd;
  border-left: 6px solid #4CAF50;
}

.info {
  background-color: #e7f3fe;
  border-left: 6px solid #2196F3;
}

.warning {
  background-color: #ffffcc;
  border-left: 6px solid #ffeb3b;
}

.closebtn {
  margin-left: 15px;
  color: black;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.danger>.closebtn {
  color: #f44336;
}

.success>.closebtn {
  color: #4CAF50;
}

.info>.closebtn {
  color: #2196F3;
}

.warning>.closebtn {
  color: #ffeb3b;
}

.closebtn:hover {
  color: black;
}


@media only screen and (min-width: 600px) {
  /* For tablets: */
  /*
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}*/
}

@media only screen and (min-width: 768px) {
  /* For desktop: */
  /*
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}*/
}