@charset "UTF-8";
:root {
  --mainBlack: #111314;
  --mainWhite: #FFFFFF;
  --mainRed: #fa5c5c;
  --mainHighlight: #24A1DE;
  --mainfontColor: #737373;
  --bs-gutter-x: 15px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #111314;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body h1, body h2, body h3 {
  font-family: 'Poppins', sans-serif;
}

body a {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

body a:hover {
  text-decoration: none;
}

body a.more-link {
  font-size: 16px;
  fill: #111314;
  color: #111314;
  padding-bottom: 0;
  border-bottom: 2px solid #24A1DE;
  display: inline-block;
  font-weight: 600;
}

body a.more-link:hover {
  padding-bottom: 2px;
}

body img {
  height: auto;
}

body .row {
  --bs-gutter-x: 30px !important;
}

body .more {
  border: 2px solid #24A1DE;
  border-radius: 30px 30px 30px 30px;
  padding: 10px 32px 10px 32px;
  font-size: 15px;
  font-weight: 600;
  fill: #fff;
  background-color: #fff;
  color: #111314;
  margin-top: 10px;
  display: inline-block;
}

body .more:hover {
  background-color: #24A1DE;
  color: white;
}

.error-message {
  color: #fa5c5c;
}

header {
  position: -webkit-sticky;
  position: sticky;
  background-color: transparent;
  z-index: 50;
  top: 0;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

header .logo-holder {
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
}

header .logo-holder a {
  color: #111314;
}

header .logo-holder .header-logo {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  max-height: 100px;
}

header .navbar {
  padding: 5px 30px;
  position: absolute;
  text-align: right;
  width: 100%;
  top: 0;
  z-index: 1;
}

header .navbar > .navbar-collapse > ul > li {
  padding: 18px;
  position: relative;
}

@media (min-width: 992px) {
  header .navbar > .navbar-collapse > ul > li {
    padding: 30px 18px;
  }
}

header .navbar > .navbar-collapse > ul > li a {
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

header .navbar > .navbar-collapse > ul > li a:hover {
  color: #24A1DE;
}

header .navbar > .navbar-collapse > ul > li:hover ul {
  display: block;
}

header .navbar > .navbar-collapse > ul > li > ul {
  list-style: none;
  margin: 15px 0;
}

header .navbar > .navbar-collapse > ul > li > ul li {
  padding: 10px 0;
}

@media (min-width: 992px) {
  header .navbar > .navbar-collapse > ul > li > ul {
    padding: 20px 15px;
    display: none;
    position: absolute;
    min-width: 200px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #FFFFFF;
    -webkit-box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.08);
    box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.08);
  }
  header .navbar > .navbar-collapse > ul > li > ul li {
    background-color: transparent;
    padding: 15px 0;
  }
}

@media (min-width: 992px) {
  header .navbar {
    background: initial;
    position: static;
    width: auto;
    text-align: right;
  }
}

header.scrolled {
  background-color: #24A1DE;
}

header.scrolled .logo-title {
  display: none;
}

@media (min-width: 992px) {
  header.scrolled .logo-title {
    display: block;
  }
}

header.scrolled .logo-holder img {
  max-height: 60px;
}

footer .footer-top {
  background: #FFFFFF;
  border-top: 1px solid #efefef;
  font-size: 14px;
  color: #FFFFFF;
  background-image: url(/img/boxes_bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

footer .footer-top .footer-title {
  font-family: "Lora", serif;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

footer .footer-top a {
  color: #FFFFFF;
}

footer .footer-top a:hover {
  color: #24A1DE;
}

footer .footer-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer-top ul li {
  display: block;
  line-height: 24px;
  margin-bottom: 10px;
}

footer .footer-top .fab {
  font-size: 20px;
  margin-right: 10px;
}

footer .footer-bottom {
  background: #FFFFFF;
  border-top: 1px solid #efefef;
}

@-webkit-keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

.cursor {
  display: inline-block;
  font-family: monospace;
  color: white;
  -webkit-animation: blink 0.7s infinite step-end;
          animation: blink 0.7s infinite step-end;
}

.carousel-caption h1,
.carousel-caption h2,
.carousel-caption .carousel-caption-lead {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: none !important;
  transition: none !important;
}

@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Kezdő animációs állapot */
.image_left_main .main-image,
.image_right_main .main-image {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  opacity: 0;
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}

.image_left_main .inner,
.image_right_main .inner {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  opacity: 0;
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}

/* Aktivált állapot – amikor belépnek a viewportba */
.animate-in .main-image {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.animate-in .inner {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

#toTop {
  background: #24A1DE;
  border: none;
  bottom: 30px;
  color: #FFFFFF;
  font-size: 28px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  position: fixed;
  right: 30px;
  text-align: center;
  width: 50px;
  z-index: 100;
}

@media (min-width: 768px) {
  #toTop {
    bottom: 60px;
    right: 40px;
  }
}

@media (min-width: 992px) {
  #toTop {
    bottom: 60px;
    right: 40px;
  }
}

#toTop:focus {
  outline: none;
}

.error {
  margin-top: 200px;
  margin-bottom: 200px;
}

.error .clip {
  display: inline-block;
  margin: 20px;
  font-size: 50px;
}

.error .clip .shadow {
  width: 90px;
  height: 90px;
  background-color: #24A1DE;
  border-radius: 50%;
  color: #FFFFFF;
  line-height: 90px;
}

.card {
  border-radius: 0;
  border-color: #FBF7F5;
}

.pagination .page-item {
  margin: 10px;
}

.pagination .page-item.active .page-link {
  background-color: #111314;
  color: #FFFFFF;
}

.pagination .page-item .page-link {
  border-radius: 50%;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 40px;
  text-align: center;
  background-color: #24A1DE;
  color: #111314;
  border: none;
  font-size: 18px;
  font-weight: 600;
}

.pagination .page-item .page-link:hover {
  fill: #D78A16;
  background-color: #D78A16;
}

.instagram-feed a {
  display: block;
  margin-bottom: 30px;
}

.instagram-feed a img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 300px;
  border-radius: 5px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group .form-control {
  border-radius: 3px;
}

.form-group textarea {
  min-height: 200px;
  max-height: 500px;
}

.form-group.has-error .form-control {
  background-color: #ffcbcb;
}

.form-group.has-error .input-holder {
  position: relative;
}

.form-group.has-error .error-message {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 12px;
  pointer-events: none;
}

.btn {
  border: 1px solid #1b1919;
  border-radius: 30px 30px 30px 30px;
  padding: 10px 32px 10px 32px;
  font-size: 15px;
  font-weight: 600;
}

.btn.btn-primary {
  fill: #111314;
  color: #111314;
  background-color: #24A1DE;
}

.btn.btn-primary:hover {
  fill: #D78A16;
  background-color: #D78A16;
}

.btn.btn-black {
  background-color: #111314;
  border: 1px solid #1b1919;
  color: #FFFFFF;
  border-radius: 0;
  height: 48px;
}

.newsletter .form-control {
  padding: 14px 20px;
  font-size: 14px;
  border: px solid #d2d2d2;
  font-weight: 600;
  height: 48px;
}

.form {
  border: 1px solid gray;
  padding: 15px;
  position: relative;
  border-radius: 20px;
}

input[placeholder="Üzenet"] {
  min-height: 200px;
  max-height: 500px;
}

.page-main {
  padding: 0 !important;
}

.page-main section.top img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-sub section.top {
  padding-bottom: 0;
  padding-top: 0;
  position: relative;
}

.page-sub header {
  position: fixed;
}

/**
Section styles
 */
.bg-grey {
  background-image: url(/img/boxes_bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #FFFFFF;
}

section {
  padding-top: 50px;
  padding-bottom: 20px;
}

section.boxes-holder:not(.simple) {
  background-image: url(/img/boxes_bg3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

section.boxes-holder .col-12 {
  margin-bottom: 30px;
}

section.boxes-holder .box.visible {
  opacity: 0.9;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

section.boxes-holder .box:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  opacity: 1;
}

section.boxes-holder .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: white;
  opacity: 0.8;
  padding: 36px 20px;
  margin-bottom: 30px;
  text-align: center;
  -webkit-transform: translateY(60px) scale(0.95);
          transform: translateY(60px) scale(0.95);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  will-change: opacity, transform;
  height: 100%;
  border-radius: 12px;
  position: relative;
}

section.boxes-holder .box .inner {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

section.boxes-holder .box h2 {
  font-size: 24px;
  font-weight: bold;
  padding-top: 50px;
}

section.boxes-holder .box h2:before {
  content: "" !important;
  display: inline-block;
  font-family: Font Awesome\ 5 Pro, sans-serif;
  font-weight: 900;
  background: #FFFFFF;
  border: 1px solid #eee;
  color: #24A1DE;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 30px;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 24px;
  display: inline-block;
  position: absolute;
  top: 30px;
  left: calc(50% - 25px);
}

section.boxes-holder .box:hover h2, section.boxes-holder .box:hover h2 a {
  color: #24A1DE;
}

section.boxes-holder .box:hover h2:before {
  color: #FFFFFF;
  background: #24A1DE;
  border-color: #24A1DE;
}

section.boxes-holder .box .more:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

section.boxes-holder .box-1 .box h2:before {
  content: "\f05a" !important;
}

section.boxes-holder .box-2 .box h2:before {
  content: "\f24e" !important;
}

section.boxes-holder .box-3 .box h2:before {
  content: "\f201" !important;
}

section.boxes-holder .box-4 .box h2:before {
  content: "\f51c" !important;
}

section.boxes-holder .box-5 .box h2:before {
  content: "\f518" !important;
}

section.boxes-holder .box-6 .box h2:before {
  content: "\f0c3" !important;
}

section.slider-container {
  padding: 0 !important;
  margin-top: -100px !important;
}

section.slider-container .row > div {
  padding: 0;
}

section.slider-container .row, section.slider-container .col-12 {
  padding: 0;
  margin: 0;
}

section.slider-container .carousel-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* Zoom effect */
}

section.slider-container .carousel-item .carousel-caption {
  bottom: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  right: 5%;
  left: 5%;
  top: calc(50% - -20px);
}

@media (min-width: 992px) {
  section.slider-container .carousel-item .carousel-caption {
    top: 50%;
    right: 15%;
    left: 15%;
  }
}

section.slider-container .carousel-item .carousel-caption h1, section.slider-container .carousel-item .carousel-caption h2 {
  font-size: 36px;
  line-height: 1.2em;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
}

@media (min-width: 992px) {
  section.slider-container .carousel-item .carousel-caption h1, section.slider-container .carousel-item .carousel-caption h2 {
    font-size: 69px;
  }
}

section.slider-container .carousel-item .carousel-caption p {
  color: #FFFFFF;
}

section.slider-container .carousel-item .carousel-caption .carousel-caption-lead {
  color: #FFFFFF;
  line-height: 1.5em;
  margin-bottom: 30px;
  font-size: 18px;
}

@media (min-width: 992px) {
  section.slider-container .carousel-item .carousel-caption .carousel-caption-lead {
    font-size: 24px;
  }
}

section.slider-container .carousel-item .carousel-caption a.btn {
  background-color: transparent !important;
  color: #24A1DE;
  border: 2px solid #24A1DE;
}

section.slider-container .carousel-item .carousel-caption a.btn:hover {
  color: #FFFFFF;
  background-color: #24A1DE !important;
}

section.slider-container .carousel-item .image-container {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

section.slider-container .carousel-item .image-container:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.55;
  left: 0;
  top: 0;
}

section.slider-container .carousel-item .image-container img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 937px;
  max-height: 937px;
  -webkit-transition: transform 9s ease;
  -webkit-transition: -webkit-transform 9s ease;
  transition: -webkit-transform 9s ease;
  transition: transform 9s ease;
  transition: transform 9s ease, -webkit-transform 9s ease;
}

section.slider-container .carousel-item.active img {
  -webkit-transform: matrix3d(1.1, 0, 0, 0, 0, 1.1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
          transform: matrix3d(1.1, 0, 0, 0, 0, 1.1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}

section.slider-container .carousel-indicators {
  display: none;
}

@media (min-width: 768px) {
  section.slider-container .carousel-indicators {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

section.slider-container .carousel-indicators, section.slider-container .carousel-control-prev, section.slider-container .carousel-control-next {
  opacity: 0;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

section.slider-container:hover .carousel-indicators, section.slider-container:hover .carousel-control-prev, section.slider-container:hover .carousel-control-next {
  opacity: 1;
}

.row.owl-carousel .col-12 {
  width: 100% !important;
}

/**
PageBox styles
 */
.box .inner h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .box .inner h2 {
    font-size: 40px;
  }
}

.box .inner h2 a {
  color: #111314;
}

.box .inner h2:hover a {
  color: #24A1DE;
}

.has-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.has-image .main-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.has-image .inner {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.has-image.image_right .main-image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  border-radius: 20px;
}

@media (min-width: 992px) {
  .has-image.image_right .main-image {
    width: 50%;
  }
}

.has-image.image_right .inner {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media (min-width: 992px) {
  .has-image.image_right .inner {
    width: 50%;
    padding-right: 30px;
  }
}

.has-image.image_left .main-image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (min-width: 992px) {
  .has-image.image_left .main-image {
    top: auto;
    width: 50%;
    border-radius: 60px;
  }
}

.has-image.image_left .inner {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media (min-width: 992px) {
  .has-image.image_left .inner {
    width: 50%;
    padding-left: 30px;
  }
  .has-image.image_left .inner h2 {
    text-align: start;
    margin-top: 5px;
  }
}

.left_image .main-image, .right_image .main-image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.left_image .main-image img, .right_image .main-image img {
  border-radius: 30px;
}

@media (min-width: 992px) {
  .left_image .main-image, .right_image .main-image {
    border-radius: 60px;
  }
}

.image_left_main img,
.image_right_main img {
  border-radius: 20px;
}
/*# sourceMappingURL=style.css.map */