/* Based on https://hankchizljaw.com/wrote/a-modern-css-reset/ */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box; }

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0; }

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0; }

/* Set core body defaults */
html, body {
  scroll-behavior: smooth; }

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5; }

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none; }

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto; }

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block; }

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit; }

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important; } }

.site-footer {
  padding: 0 0 0;
  width: 100vw;
  max-width: 1280px;
  overflow-x: hidden;
  background: #eaeff3; }
  @media (max-width: 999px) {
    .site-footer {
      padding: 0 1rem 0; } }
  @media (min-width: 1000px) {
    .site-footer {
      display: grid;
      -moz-column-gap: 1.5rem;
           column-gap: 1.5rem;
      grid-template-columns: repeat(12, 1fr); }
      .site-footer > * {
        grid-column-start: 2;
        grid-column-end: -2; }
        .site-footer > *:first-child {
          margin-top: auto; }
        .site-footer > *:last-child {
          margin-bottom: auto; } }
  .site-footer .logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid #282828; }
    @media (max-width: 999px) {
      .site-footer .logos {
        padding: 2rem 0; } }
    @media (min-width: 1000px) {
      .site-footer .logos {
        padding: 5rem 0; } }
    .site-footer .logos > * {
      margin: 0 0.75rem; }
      .site-footer .logos > *:first-child {
        margin-left: 0; }
      .site-footer .logos > *:last-child {
        margin-right: 0; }
  .site-footer .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    border-bottom: 3px solid #282828; }
    @media (min-width: 1000px) {
      .site-footer .logo {
        min-height: 40rem; } }
  .site-footer .footer-bottom {
    padding: 2rem 0;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase; }
    @media (min-width: 600px) {
      .site-footer .footer-bottom {
        display: flex;
        justify-content: space-between; } }
    .site-footer .footer-bottom .links {
      display: flex; }
      .site-footer .footer-bottom .links a {
        display: block;
        margin-right: 1.5rem;
        color: #282828; }
    .site-footer .footer-bottom .copyright {
      color: #a0a0a0; }

.site-header {
  padding: 0 0 0;
  width: 100vw;
  max-width: 1280px;
  overflow-x: hidden;
  background: #dadada; }
  @media (max-width: 999px) {
    .site-header {
      padding: 0 1rem 0; } }
  .site-header .site-title {
    display: flex;
    justify-content: center;
    padding: 2.5rem 0 0.5rem; }

.main-menu {
  padding: calc(1rem + 2px) 0 1rem;
  width: 100vw;
  max-width: 1280px;
  overflow-x: hidden;
  position: -webkit-sticky;
  position: sticky;
  top: -2px;
  background: #dadada;
  z-index: 10; }
  @media (max-width: 999px) {
    .main-menu {
      padding: calc(1rem + 2px)/2 1rem 0.5rem; } }
  @media (max-width: 999px) {
    .main-menu {
      display: none; } }
  .main-menu ul {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none; }
    .main-menu ul li {
      font-size: 1rem;
      font-weight: 700;
      line-height: 2.5em; }
      .main-menu ul li:not(:last-child) {
        margin-right: 2rem; }
      .main-menu ul li.home {
        display: none; }
        .main-menu ul li.home img {
          width: auto;
          height: 2.5em; }
      .main-menu ul li a {
        color: #282828;
        text-decoration: none;
        text-transform: uppercase;
        transition: 0.3s color; }
        .main-menu ul li a:hover, .main-menu ul li a.active {
          color: #01a6ba;
          text-decoration: none; }
  .main-menu.stuck {
    border-bottom: 2px solid #c5c5c5; }
    .main-menu.stuck ul li.home {
      display: block; }

body {
  display: flex;
  flex-direction: column;
  align-items: center; }

section {
  padding: 6rem 0 6rem;
  width: 100vw;
  max-width: 1280px;
  overflow-x: hidden; }
  @media (max-width: 999px) {
    section {
      padding: 3rem 1rem 3rem; } }
  section#intro {
    background: #dadada;
    background-image: var(--bgImage);
    background-repeat: no-repeat; }
    @media (min-width: 1000px) {
      section#intro {
        display: grid;
        -moz-column-gap: 1.5rem;
             column-gap: 1.5rem;
        grid-template-columns: repeat(12, 1fr); }
        section#intro > * {
          grid-column-start: 2;
          grid-column-end: -8; }
          section#intro > *:first-child {
            margin-top: auto; }
          section#intro > *:last-child {
            margin-bottom: auto; } }
    @media (max-width: 599px) {
      section#intro {
        background-position: top; } }
    @media (min-width: 600px) {
      section#intro {
        background-position: right; } }
    @media (max-width: 599px) {
      section#intro {
        background-size: contain;
        padding-top: 70%; } }
    @media (min-width: 600px) {
      section#intro {
        min-height: 40rem; } }
    section#intro p {
      color: #282828;
      font-size: 1rem;
      font-weight: 700; }
      section#intro p:last-child::after {
        content: '';
        display: block;
        margin-top: 3rem;
        width: 12rem;
        height: 3px;
        background: currentColor; }
  section#video {
    background: #dadada;
    text-align: center; }
    @media (min-width: 1000px) {
      section#video {
        display: grid;
        -moz-column-gap: 1.5rem;
             column-gap: 1.5rem;
        grid-template-columns: repeat(12, 1fr); }
        section#video > * {
          grid-column-start: 3;
          grid-column-end: -3; }
          section#video > *:first-child {
            margin-top: auto; }
          section#video > *:last-child {
            margin-bottom: auto; } }
  section#celunk {
    background: #c5c5c5;
    background-image: var(--bgImage);
    background-repeat: no-repeat; }
    @media (min-width: 1000px) {
      section#celunk {
        display: grid;
        -moz-column-gap: 1.5rem;
             column-gap: 1.5rem;
        grid-template-columns: repeat(12, 1fr); }
        section#celunk > * {
          grid-column-start: 2;
          grid-column-end: -7; }
          section#celunk > *:first-child {
            margin-top: auto; }
          section#celunk > *:last-child {
            margin-bottom: auto; } }
    @media (max-width: 599px) {
      section#celunk {
        background-position: top; } }
    @media (min-width: 600px) {
      section#celunk {
        background-position: right; } }
    @media (max-width: 599px) {
      section#celunk {
        background-size: contain;
        padding-top: 70%; } }
    @media (min-width: 600px) {
      section#celunk {
        min-height: 40rem; } }
    section#celunk p {
      color: #282828;
      font-weight: 700; }
      section#celunk p:last-child::after {
        content: '';
        display: block;
        margin-top: 3rem;
        width: 12rem;
        height: 3px;
        background: currentColor; }
  section#tartalom > * + * {
    margin-top: 3rem; }
  section#tartalom main {
    text-align: center; }
    @media (min-width: 1000px) {
      section#tartalom main {
        display: grid;
        -moz-column-gap: 1.5rem;
             column-gap: 1.5rem;
        grid-template-columns: repeat(12, 1fr); }
        section#tartalom main > * {
          grid-column-start: 4;
          grid-column-end: -4; }
          section#tartalom main > *:first-child {
            margin-top: auto; }
          section#tartalom main > *:last-child {
            margin-bottom: auto; } }
    section#tartalom main p {
      color: #282828; }
      section#tartalom main p:last-child::after {
        content: '';
        display: block;
        margin-top: 3rem;
        width: 12rem;
        height: 3px;
        background: currentColor;
        margin-left: auto;
        margin-right: auto; }
  @media (min-width: 1000px) {
    section#terkep .section-header-image {
      margin-bottom: -7rem; } }
  section#terkep main {
    text-align: center; }
    @media (min-width: 1000px) {
      section#terkep main {
        display: grid;
        -moz-column-gap: 1.5rem;
             column-gap: 1.5rem;
        grid-template-columns: repeat(12, 1fr); }
        section#terkep main > * {
          grid-column-start: 4;
          grid-column-end: -4; }
          section#terkep main > *:first-child {
            margin-top: auto; }
          section#terkep main > *:last-child {
            margin-bottom: auto; } }
    section#terkep main p {
      color: #282828; }
      section#terkep main p:last-child::after {
        content: '';
        display: block;
        margin-top: 3rem;
        width: 12rem;
        height: 3px;
        background: currentColor;
        margin-left: auto;
        margin-right: auto; }
  section#legyel-benne {
    background: #01a6ba;
    color: #ffffff; }
    section#legyel-benne h1, section#legyel-benne h2, section#legyel-benne h3 {
      color: #ffffff; }
    @media (min-width: 1000px) {
      section#legyel-benne {
        display: grid;
        -moz-column-gap: 1.5rem;
             column-gap: 1.5rem;
        grid-template-columns: repeat(12, 1fr); }
        section#legyel-benne > * {
          grid-column-start: 4;
          grid-column-end: -4; }
          section#legyel-benne > *:first-child {
            margin-top: auto; }
          section#legyel-benne > *:last-child {
            margin-bottom: auto; } }
    section#legyel-benne main {
      padding: 0 4rem;
      text-align: center; }
      section#legyel-benne main p:last-child::after {
        content: '';
        display: block;
        margin-top: 3rem;
        width: 12rem;
        height: 3px;
        background: currentColor;
        margin-left: auto;
        margin-right: auto; }
    section#legyel-benne footer {
      margin-top: 3rem;
      text-align: center; }
      section#legyel-benne footer a {
        display: inline-block;
        color: inherit;
        font-size: 1.5rem;
        font-weight: 800;
        text-transform: uppercase; }
        section#legyel-benne footer a + a {
          margin-top: 2rem; }
  @media (min-width: 1000px) {
    section#egyuttmukodes {
      background-image: var(--bgImage);
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      display: grid;
      -moz-column-gap: 1.5rem;
           column-gap: 1.5rem;
      grid-template-columns: repeat(12, 1fr);
      padding-top: 85%; } }
  @media (min-width: 1000px) and (min-width: 600px) {
    section#egyuttmukodes {
      min-height: 40rem; } }
  @media (min-width: 1000px) {
      section#egyuttmukodes > * {
        grid-column-start: 2;
        grid-column-end: -7; }
        section#egyuttmukodes > *:first-child {
          margin-top: auto; }
        section#egyuttmukodes > *:last-child {
          margin-bottom: auto; } }
  section#egyuttmukodes main p {
    color: #282828; }
    section#egyuttmukodes main p:last-child::after {
      content: '';
      display: block;
      margin-top: 3rem;
      width: 12rem;
      height: 3px;
      background: currentColor; }
  section#szerzok {
    background: #00597b;
    color: #ffffff; }
    section#szerzok h1, section#szerzok h2, section#szerzok h3 {
      color: #ffffff; }
    section#szerzok > header {
      text-align: center; }
      @media (min-width: 1000px) {
        section#szerzok > header {
          display: grid;
          -moz-column-gap: 1.5rem;
               column-gap: 1.5rem;
          grid-template-columns: repeat(12, 1fr); }
          section#szerzok > header > * {
            grid-column-start: 4;
            grid-column-end: -4; }
            section#szerzok > header > *:first-child {
              margin-top: auto; }
            section#szerzok > header > *:last-child {
              margin-bottom: auto; } }
      section#szerzok > header p:last-child::after {
        content: '';
        display: block;
        margin-top: 3rem;
        width: 12rem;
        height: 3px;
        background: currentColor;
        margin-left: auto;
        margin-right: auto; }
    @media (min-width: 1000px) {
      section#szerzok > main {
        display: grid;
        grid-template-columns: repeat(24, 1fr);
        -moz-column-gap: 1.5rem;
             column-gap: 1.5rem;
        margin-top: 11rem; } }
    section#szerzok > main article {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: stretch;
      padding: 2rem;
      background: #f0f0f0;
      color: #4b4b4b;
      border-radius: 1rem;
      box-shadow: 1rem 1rem 1rem rgba(0, 0, 0, 0.3);
      text-align: center; }
      @media (max-width: 999px) {
        section#szerzok > main article {
          margin-top: 9rem; } }
      @media (min-width: 1000px) {
        section#szerzok > main article:nth-child(1) {
          grid-column-start: 3;
          grid-column-end: 9; }
        section#szerzok > main article:nth-child(2) {
          grid-column-start: 10;
          grid-column-end: 16; }
        section#szerzok > main article:nth-child(3) {
          grid-column-start: 17;
          grid-column-end: 23; } }
      section#szerzok > main article header {
        flex: none;
        margin-bottom: 2rem; }
        section#szerzok > main article header, section#szerzok > main article header h3 {
          color: #282828; }
        section#szerzok > main article header .image {
          position: relative;
          width: 11.75rem;
          height: 11.75rem;
          margin: -7.875rem auto 2.25rem;
          z-index: 2; }
          section#szerzok > main article header .image:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 50%;
            box-shadow: 1rem 1rem 1rem rgba(0, 0, 0, 0.3);
            z-index: 0; }
          section#szerzok > main article header .image:after {
            content: '';
            position: absolute;
            top: 50%;
            left: -2rem;
            right: -2rem;
            bottom: -2rem;
            background: #f0f0f0; }
          section#szerzok > main article header .image img {
            position: relative;
            width: 11.75rem;
            height: 11.75rem;
            border-radius: 50%;
            z-index: 2; }
        section#szerzok > main article header h3 {
          margin-bottom: 0; }
        section#szerzok > main article header p {
          font-style: italic;
          font-weight: 700; }
      section#szerzok > main article main {
        flex: auto; }
      section#szerzok > main article:after {
        content: '';
        flex: none;
        display: block;
        margin: 4rem auto 0;
        width: 5rem;
        height: 2px;
        background: #dadada; }
  section#jelentkezz {
    background: #f5c96b; }
    @media (min-width: 1000px) {
      section#jelentkezz {
        display: grid;
        -moz-column-gap: 1.5rem;
             column-gap: 1.5rem;
        grid-template-columns: repeat(12, 1fr);
        background-image: var(--bgImage);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat; }
        section#jelentkezz > * {
          grid-column-start: 4;
          grid-column-end: -4; }
          section#jelentkezz > *:first-child {
            margin-top: auto; }
          section#jelentkezz > *:last-child {
            margin-bottom: auto; } }
  @media (min-width: 1000px) and (min-width: 600px) {
    section#jelentkezz {
      min-height: 40rem; } }
    section#jelentkezz header {
      margin-bottom: 4rem;
      text-align: center; }
      section#jelentkezz header p {
        color: #282828; }
        section#jelentkezz header p:last-child::after {
          content: '';
          display: block;
          margin-top: 3rem;
          width: 12rem;
          height: 3px;
          background: currentColor;
          margin-left: auto;
          margin-right: auto; }
  section#kontakt {
    background: #eaeff3;
    color: #282828;
    padding-bottom: 0; }
    @media (min-width: 1000px) {
      section#kontakt {
        display: grid;
        -moz-column-gap: 1.5rem;
             column-gap: 1.5rem;
        grid-template-columns: repeat(12, 1fr); }
        section#kontakt > * {
          grid-column-start: 2;
          grid-column-end: -2; }
          section#kontakt > *:first-child {
            margin-top: auto; }
          section#kontakt > *:last-child {
            margin-bottom: auto; } }
    section#kontakt header {
      text-align: center; }
      @media (min-width: 1000px) {
        section#kontakt header {
          margin: 0 20%; } }
    @media (min-width: 1000px) {
      section#kontakt main {
        display: flex;
        align-items: stretch;
        justify-content: stretch; } }
    section#kontakt main article {
      margin-top: 2rem;
      border-bottom: 3px solid #282828;
      text-align: center; }
      @media (max-width: 999px) {
        section#kontakt main article {
          padding-bottom: 2rem; } }
      @media (min-width: 1000px) {
        section#kontakt main article {
          flex: auto;
          padding: 7.5rem; } }
      section#kontakt main article h1 {
        margin-bottom: 0.5rem; }
      section#kontakt main article p.role {
        margin-bottom: 2rem;
        font-style: italic; }
      section#kontakt main article dl dt {
        display: none; }
      section#kontakt main article dl dd {
        margin-bottom: 0.5rem; }
    @media (min-width: 1000px) {
      section#kontakt main article + article {
        border-left: 3px solid #282828; } }
  section .section-header-image img {
    margin: 0 auto; }
  section._tmp {
    min-height: 100vh; }

.video-player {
  display: flex;
  margin-bottom: 3rem; }
  .video-player:before {
    content: '';
    margin-left: -1px;
    padding-top: 56.25%;
    height: 0;
    width: 1px;
    float: left; }
  .video-player:after {
    content: '';
    display: table;
    clear: both; }

.slider .slide img {
  width: 100%;
  max-width: none;
  margin: 0 auto; }

.slider .slide .caption {
  position: relative;
  margin-top: 1rem;
  padding: 3rem;
  border: 2px solid #c5c5c5;
  color: #282828; }
  .slider .slide .caption > *:not(.arrow) {
    opacity: 0;
    pointer-events: none;
    transition: 0.3s opacity; }
  .slider .slide .caption .arrow {
    position: absolute;
    transition: 0.3s opacity;
    top: 0;
    bottom: 0;
    border: none;
    background: transparent center no-repeat;
    outline: none; }
    .slider .slide .caption .arrow.arrow-prev {
      right: 0;
      background-image: url(images/arrow-left.png); }
    .slider .slide .caption .arrow.arrow-next {
      left: 0;
      background-image: url(images/arrow-right.png); }
    @media (max-width: 999px) {
      .slider .slide .caption .arrow {
        display: none; } }
    @media (min-width: 1000px) and (max-width: 1279px) {
      .slider .slide .caption .arrow {
        width: 68px; } }
    @media (min-width: 1280px) {
      .slider .slide .caption .arrow {
        width: 166px; } }

.slider .slide.glide__slide--active .caption > *:not(.arrow) {
  opacity: 1;
  pointer-events: auto; }

.slider .slide.glide__slide--active .caption .arrow {
  opacity: 0;
  pointer-events: none; }

.slider:not(.glide__slides) .slide + .slide {
  margin-top: 1.5rem; }

@media (max-width: 999px) {
  .glide {
    margin-left: -1rem;
    margin-right: -1rem;
    width: auto !important; } }

@media (min-width: 1000px) {
  .glide__arrows {
    position: relative;
    height: 0; }
    .glide__arrows .glide__arrow {
      position: absolute;
      bottom: 0; }
      .glide__arrows .glide__arrow.glide__arrow--left {
        left: 0; }
      .glide__arrows .glide__arrow.glide__arrow--right {
        right: 0; } }

body {
  background: #f0f0f0;
  color: #4b4b4b;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500; }

@media (max-width: 599px) {
  h1 {
    font-size: 1.75rem; }
  h2 {
    font-size: 1.5rem; }
  h3 {
    font-size: 1.25rem; } }

@media (min-width: 600px) {
  h1 {
    font-size: 2.25rem; }
  h2 {
    font-size: 1.875rem; }
  h3 {
    font-size: 1.5rem; } }

h1, h2, h3 {
  margin-bottom: 1rem;
  line-height: 1.2em;
  color: #282828;
  font-weight: 800;
  text-transform: uppercase; }

p + p {
  margin-top: 1rem; }

a {
  color: #01a6ba;
  text-decoration: none;
  transition: 0.3s -webkit-text-decoration;
  transition: 0.3s text-decoration;
  transition: 0.3s text-decoration, 0.3s -webkit-text-decoration; }
  a[href]:hover {
    text-decoration: underline; }
  a.button {
    display: block;
    padding: 1.5rem;
    background: #f0f0f0;
    border-radius: 1rem;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
    color: #282828 !important;
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s box-shadow; }
    a.button:hover {
      box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.5);
      text-decoration: none; }
/*# sourceMappingURL=styles.css.map */