@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');
/*----- FONTS -----*/
/*----- COLORS -----*/
/*----- GLOBAL STYLES -----*/
#layout .container {
  width: 1315px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
#layout .container-wide {
  width: 1785px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
#layout .flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
#layout .flex-wrapper.flex-column {
  flex-direction: column;
}
#layout .flex-wrapper.h-center {
  justify-content: center;
}
#layout .flex-wrapper.v-center {
  align-items: center;
}
#layout img {
  max-width: 100%;
  height: auto;
}
body *,
#layout * {
  box-sizing: border-box;
}
/*----- TYPO -----*/
#layout {
  font-family: 'PT Sans', sans-serif;
}
#layout .text-darkblue {
  color: #1c4670;
}
#content,
#footer {
  font-size: 20px;
  line-height: 1.5;
}
#content h1,
#footer h1,
#content h2,
#footer h2,
#content h3,
#footer h3,
#content h4,
#footer h4 {
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #000;
  font-weight: bold;
}
#content h2,
#footer h2 {
  font-size: 46px;
}
#content h3,
#footer h3 {
  font-size: 36px;
}
#content h4,
#footer h4 {
  font-size: 26px;
}
#content a,
#footer a,
#content a:hover,
#footer a:hover {
  text-decoration: none;
  color: #278ab0;
}
#content hr,
#footer hr {
  position: relative;
  border-top: none;
  height: 2px;
  background: #cecece;
  width: 100%;
  margin: 0;
  display: inline-block;
}
#content hr:before,
#footer hr:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 25%;
  background: #278ab0;
}
#content ul:not(.rslides),
#footer ul:not(.rslides) {
  margin-bottom: 30px;
}
#content ul:not(.rslides) li,
#footer ul:not(.rslides) li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
#content ul:not(.rslides) li:before,
#footer ul:not(.rslides) li:before {
  content: '';
  position: absolute;
  top: 9px;
  left: 6px;
  width: 5px;
  height: 5px;
  border-radius: 0;
  background: #278ab0;
}
/*----- BUTTON -----*/
#layout .button,
footer .button {
  color: #fff;
  background-color: #1dc690;
  text-align: center;
  text-transform: uppercase;
  font-size: 38px;
  font-weight: bold;
  padding: 20px 45px;
  margin: 15px 0 15px;
  min-width: 120px;
  line-height: 1;
  display: inline-block;
  border-radius: 15px;
  cursor: pointer;
  transition: all 250ms ease-in-out;
}
#layout .button:hover,
footer .button:hover {
  text-decoration: none;
  background: #278ab0;
  color: #fff;
}
/*----- LIST -----*/
#content ul {
  margin-bottom: 30px;
}
#content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}
#content ul li:before {
  content: '';
  position: absolute;
  top: 11px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f36f23;
}
/*----- FORM -----*/
#layout div.alert-error,
#layout div.alert-danger {
  color: #fff;
  border-radius: 0;
  font-weight: bold;
  border: none !important;
  padding-left: 70px;
  background: #B10305;
  background-size: 37px !important;
  margin-bottom: 30px;
}
#layout div.alert-error li,
#layout div.alert-danger li {
  margin-bottom: 5px;
}
#layout form,
#layout .form {
  /* checkbox aspect */
  /* checked mark aspect */
  /* checked mark aspect changes */
  /* Disabled checkbox */
  /* Accessibility */
}
#layout form input,
#layout .form input,
#layout form select,
#layout .form select,
#layout form textarea,
#layout .form textarea,
#layout form .form-control,
#layout .form .form-control {
  width: 100%;
  border: 2px solid #1dc690;
  border-radius: 25px;
  padding: 10px 15px 10px 15px;
  font-size: 22px;
  color: #2b2b2b;
  height: auto;
  transition: all 300ms;
}
#layout form input:focus,
#layout .form input:focus,
#layout form select:focus,
#layout .form select:focus,
#layout form textarea:focus,
#layout .form textarea:focus,
#layout form .form-control:focus,
#layout .form .form-control:focus,
#layout form input:active,
#layout .form input:active,
#layout form select:active,
#layout .form select:active,
#layout form textarea:active,
#layout .form textarea:active,
#layout form .form-control:active,
#layout .form .form-control:active {
  outline: none;
  box-shadow: none;
  border: 2px solid #1c4670;
}
#layout form [type="checkbox"]:not(:checked),
#layout .form [type="checkbox"]:not(:checked),
#layout form [type="checkbox"]:checked,
#layout .form [type="checkbox"]:checked {
  position: absolute;
  left: 0;
  opacity: 0.01;
  transition: all .275s;
  width: 0;
}
#layout form [type="checkbox"]:not(:checked) + label,
#layout .form [type="checkbox"]:not(:checked) + label,
#layout form [type="checkbox"]:checked + label,
#layout .form [type="checkbox"]:checked + label {
  position: relative;
  display: inline;
  padding-left: 32px;
  padding-top: 2px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: normal;
}
#layout form [type="checkbox"]:not(:checked) + label:before,
#layout .form [type="checkbox"]:not(:checked) + label:before,
#layout form [type="checkbox"]:checked + label:before,
#layout .form [type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: #FFF;
  border-radius: 6px;
  border: 2px solid #1dc690;
  box-shadow: none;
  -webkit-transition: all .275s;
  transition: all .275s;
}
#layout form [type="checkbox"]:checked + label:before,
#layout .form [type="checkbox"]:checked + label:before {
  background: #1c4670;
}
#layout form [type="checkbox"]:not(:checked) + label:after,
#layout .form [type="checkbox"]:not(:checked) + label:after,
#layout form [type="checkbox"]:checked + label:after,
#layout .form [type="checkbox"]:checked + label:after {
  content: '';
  position: absolute;
  top: -5px;
  left: 5px;
  width: 24px;
  height: 24px;
  box-shadow: none;
  background: url("/application/themes/fotostanmuhely/images/icons/icon-checked.png") no-repeat center;
  background-size: contain;
  -webkit-transition: all .2s;
  transition: all .2s;
}
#layout form [type="checkbox"]:not(:checked) + label:after,
#layout .form [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
#layout form [type="checkbox"]:checked + label:after,
#layout .form [type="checkbox"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
#layout form [type="checkbox"]:disabled:not(:checked) + label:before,
#layout .form [type="checkbox"]:disabled:not(:checked) + label:before,
#layout form [type="checkbox"]:disabled:checked + label:before,
#layout .form [type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #ed1c24;
  background-color: #e9e9e9;
}
#layout form [type="checkbox"]:disabled:checked + label:after,
#layout .form [type="checkbox"]:disabled:checked + label:after {
  color: #777;
}
#layout form [type="checkbox"]:disabled + label,
#layout .form [type="checkbox"]:disabled + label {
  color: #aaa;
}
#layout form ::placeholder,
#layout .form ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000;
  opacity: 1;
  /* Firefox */
}
#layout form :-ms-input-placeholder,
#layout .form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #000;
}
#layout form ::-ms-input-placeholder,
#layout .form ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #000;
}
/* IFRAME */
#content iframe {
  max-width: 100%;
  width: 100%;
  height: 690px;
}
/*----- FRAME -----*/
html,
body {
  color: #000000;
}
body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
body #layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 1920px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #eaeae0;
  overflow-x: hidden;
}
/*----- HEADER -----*/
#layout {
  /*.logo-header{
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    z-index: 1;
  }

  header {
    width: 100%;
    background: #fff;
    color: #000;
    z-index: 1;
    //transform: translateY(-100%);
    transition: all 500ms ease-in-out;

    &.visible{
      transform: translateY(0);
    }

    .container {
      position: relative;
      align-items: center;
      width: 1790px;
      border-bottom: 1px solid #ccc;
      padding-bottom: 20px;
      margin-bottom: 40px;
    }

    #under-construction{
      position: relative;
      left: -15px;
      min-width: ~'calc(100% + 30px)';
      padding: 15px 0;
      text-align: center;
      font-size: 16px;
      font-style: italic;
      color: #fff;
      background: #cd2a3e;
      text-transform: uppercase;
      font-weight: bold;
      letter-spacing: 4px;
    }

    #header-title{
      font-size: 14px;
      color: #616161;
      width: 100%;
      padding: 15px 0;
    }

    .logo.neku {
      content: '';
      //max-width: 147px;
      width: 152px;
      height: 82px;
      text-indent: -9999px;
      cursor: pointer;
      background: url('../images/logos/logo-neku.png') no-repeat center;
      background-size: contain;

      &.hnhra{
        background: url('../images/logos/logo-hnhra.png') no-repeat center;
        background-size: contain;
        width: 170px;
      }

      a {
        display: flex;
        height: 100%;
      }
    }

    #navigation {
      margin-left: auto;

      ul {
        display: flex;
        flex-wrap: wrap;
        background: #fff;
        position: relative;

        li {
          margin: 7px 10px;
          //margin-right: 10px;

          a {
            font-size: 16px;
            color: #000;
            //font-weight: bold;
            background: none;
            padding: 0;
            transition: all 300ms;
            text-decoration: none;

            &:hover {
              color: @blue;
              background-color: #fff;
              text-decoration: none;
            }
          }

          ul{
            position: absolute;
            display: none;
            flex-direction: column;
            background: @blue;

            li{
              display: flex;
              flex-wrap: nowrap;
              white-space: pre;
              margin: 3px;

              a{
                color: #fff;
                font-size: 16px;
                width: 100%;
                padding: 7px 10px;
              }
            }
          }

          &:hover{
            ul{
              display: flex;
            }
          }
        }
      }
    }

    #language-selector{
      display: flex;
      flex-wrap: wrap;

      a {
        font-size: 18px;
        color: #000;
        text-transform: uppercase;
        background: none;
        padding: 0 10px;
        line-height: 1;
        transition: all 300ms;

        &:nth-of-type(1){
          border-right: 1px solid #000;
          margin-left: 10px;
        }

        &.active{
          font-weight: bold;
          color: @blue;
        }

        &:hover {
          color: @blue;
          background-color: #fff;
          text-decoration: none;
        }
      }
    }

    #menu-toggle {
      content: '';
      position: absolute;
      bottom: 26px;
      right: 15px;
      display: none;
      cursor: pointer;
      width: 46px;
      height: 46px;
      background: @blue url("../images/icons/icon-menu-toggle.png") no-repeat center;
      background-size: 34px;
    }
  }*/
}
/*----- CONTENT -----*/
#content {
  flex: 1 0 auto;
  margin: 0;
}
/*----- SECTIONS -----*/
#content section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#content section.has-padding {
  padding: 120px 0;
}
#content section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}
#content section .white-dots {
  content: '';
  position: absolute;
  width: 371px;
  height: 140px;
  background: url("/application/themes/fotostanmuhely/images/img-white-dots.png") no-repeat center;
  background-size: contain;
}
/*----- SLIDER -----*/
#slider .slider-wrapper {
  position: relative;
}
#slider .slider-wrapper .rslides {
  margin-bottom: 0;
}
#slider .slider-wrapper .rslides li {
  padding: 0;
  margin: 0;
}
#slider .slider-wrapper .rslides li:before {
  display: none;
}
#slider .ccm-image-slider-text {
  display: none;
}
/*----- INTRODUCTION -----*/
#introduction {
  background: url("/application/themes/fotostanmuhely/images/backgrounds/bg-introduction.jpg") no-repeat center;
}
#introduction p {
  font-size: 24px;
  margin-bottom: 45px;
}
/*----- ABOUT US -----*/
#about-us .image-wrapper {
  position: relative;
  width: 50%;
  min-height: 740px;
  background: url("/application/themes/fotostanmuhely/images/backgrounds/bg-about-us-image.jpg") no-repeat center;
  background-size: cover;
}
#about-us .image-wrapper .white-dots {
  top: 17%;
  right: -35px;
}
#about-us .description {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 30px 90px;
  background: #278ab0 url("/application/themes/fotostanmuhely/images/backgrounds/bg-about-us-description.jpg") no-repeat right bottom;
}
#about-us .description p {
  color: #fff;
  font-size: 28px;
  margin-bottom: 0;
}
#apply {
  background: url("/application/themes/fotostanmuhely/images/backgrounds/bg-apply.jpg") no-repeat center;
}
#apply .description {
  padding: 90px 0;
  text-align: center;
}
#apply .description p {
  font-size: 24px;
  margin-bottom: 45px;
}
#apply .description h3 {
  margin-bottom: 0;
}
#apply .info-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 90px;
}
#apply .info-boxes .box {
  content: '';
  width: 431px;
  padding-bottom: 40%;
  max-width: 100%;
  margin: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#apply .info-boxes .box.box-1 {
  background-image: url("/application/themes/fotostanmuhely/images/img-apply-box-1.png");
}
#apply .info-boxes .box.box-2 {
  background-image: url("/application/themes/fotostanmuhely/images/img-apply-box-2.png");
}
#apply .video-box {
  width: 100%;
  margin: 120px 0;
}
#content #kapcsolat {
  background: #278ab0;
  align-items: normal;
}
#content #kapcsolat .form-wrapper {
  flex: 1;
  padding: 45px 45px;
}
#content #kapcsolat .form-wrapper .ccm-block-type-form {
  width: 520px;
  max-width: 100%;
  margin: auto;
}
#content #kapcsolat .form-wrapper .ccm-block-type-form label {
  color: #fff;
  font-size: 16px;
}
#content #kapcsolat .form-wrapper a {
  color: #fff;
}
#content #kapcsolat .form-wrapper .button {
  font-size: 24px;
  padding: 15px 35px;
}
#content #kapcsolat .image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 45px;
  width: 50%;
  min-height: 720px;
  background: url("/application/themes/fotostanmuhely/images/backgrounds/bg-contact-image.png") no-repeat center;
  background-size: cover;
}
#content #kapcsolat .image-wrapper .white-dots {
  bottom: 40px;
  left: -40px;
}
#content #kapcsolat .image-wrapper .contact-info h3.title {
  margin-bottom: 0;
  color: #fff;
  font-size: 50px;
  font-style: italic;
  text-transform: uppercase;
}
#content #kapcsolat .image-wrapper .contact-info .contact-data {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 32px;
}
#content #kapcsolat .image-wrapper .contact-info .contact-data a {
  color: #fff;
  text-decoration: none;
}
/*----- FOOTER -----*/
#footer {
  background: #1dc690;
  color: #fff;
  padding: 45px 0;
  font-size: 24px;
}
#footer .social-icons {
  display: flex;
  margin-left: auto;
}
#footer .social-icons a {
  content: '';
  display: inline-block;
  width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-position: center;
}
#footer .social-icons a:not(:first-of-type) {
  margin-left: 30px;
}
#footer .social-icons a:nth-of-type(1) {
  background-image: url("/application/themes/fotostanmuhely/images/icons/icon-footer-icon-1.png");
}
#footer .social-icons a:nth-of-type(2) {
  background-image: url("/application/themes/fotostanmuhely/images/icons/icon-footer-icon-2.png");
}
#footer .social-icons a:nth-of-type(3) {
  background-image: url("/application/themes/fotostanmuhely/images/icons/icon-footer-icon-3.png");
}
@media (max-width: 980px) {
  #content h2 {
    font-size: 28px !important;
  }
  #content h3 {
    font-size: 24px;
  }
  #content h4 {
    font-size: 20px;
  }
  #content h1,
  #content h2,
  #content h3,
  #content h4 {
    line-height: 1.25;
  }
  #content section.has-padding,
  #content #apply .description {
    padding: 45px 0;
  }
  #content #introduction p {
    margin-bottom: 30px;
  }
  #content #introduction p,
  #content #about-us .description p,
  #content #apply .description p,
  #content #footer {
    font-size: 18px;
  }
  #content .button {
    font-size: 20px;
    padding: 15px 20px;
    margin: 0;
  }
  #content #apply .info-boxes {
    margin-bottom: 30px;
  }
  #content #apply .video-box {
    margin: 60px 0;
  }
  #content #apply .video-box iframe {
    height: 51vw;
  }
  #content #kapcsolat .image-wrapper .contact-info h3.title {
    font-size: 32px;
  }
  #content #kapcsolat .image-wrapper .contact-info .contact-data {
    font-size: 22px;
  }
  #content #kapcsolat .form-wrapper,
  #about-us .description {
    flex: unset;
    width: 100%;
    padding: 30px;
    background: #278ab0;
  }
  #about-us .image-wrapper,
  #content #kapcsolat .image-wrapper {
    width: 100%;
    min-height: 460px;
  }
  #content section .white-dots {
    width: 216px;
    height: 78px;
  }
  #footer .address {
    width: 100%;
    text-align: center;
  }
  #footer .social-icons {
    margin: 30px auto 0;
  }
}
@media (max-width: 560px) {
  #layout #apply .info-boxes .box {
    padding-bottom: 100%;
  }
  #footer {
    font-size: 20px;
  }
}
