@keyframes waves-left {
  0% {
    opacity: 0;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    transform: translate(-40%);
    margin-top: -5px;
  }
  20% {
    opacity: .85;
  }
  40% {
    filter: blur(0);
    -webkit-filter: blur(0);
    margin-top: 5px;
  }
  80% {
    opacity: .5;
    filter: blur(0);
    -webkit-filter: blur(0);
    margin-top: -5px;
  }
  100% {
    opacity: 0;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    margin-top: 0;
    transform: translateX(-10%);
  }
}
@keyframes waves-right {
  0% {
    opacity: 0;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    transform: translate(40%);
    margin-top: -5px;
  }
  20% {
    opacity: .85;
  }
  40% {
    filter: blur(0);
    -webkit-filter: blur(0);
    margin-top: 5px;
  }
  80% {
    opacity: .5;
    filter: blur(0);
    -webkit-filter: blur(0);
    margin-top: -5px;
  }
  100% {
    opacity: 0;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    margin-top: 0;
    transform: translateX(10%);
  }
}
@keyframes bubbles {
  0% {
    -webkit-transform: rotate(0) scale(1);
    -moz-transform: rotate(0) scale(1);
    -ms-transform: rotate(0) scale(1);
    -o-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
  }
  50% {
    -webkit-transform: rotate(10deg) scale(1.05);
    -moz-transform: rotate(10deg) scale(1.05);
    -ms-transform: rotate(10deg) scale(1.05);
    -o-transform: rotate(10deg) scale(1.05);
    transform: rotate(10deg) scale(1.05);
  }
  100% {
    -webkit-transform: rotate(0) scale(1);
    -moz-transform: rotate(0) scale(1);
    -ms-transform: rotate(0) scale(1);
    -o-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
  }
}
@keyframes coloring {
  0% {
    -webkit-filter: hue-rotate(0deg);
    filter: hue-rotate(0deg);
  }
  50% {
    -webkit-filter: hue-rotate(360deg);
    filter: hue-rotate(360deg);
  }
  100% {
    -webkit-filter: hue-rotate(0deg);
    filter: hue-rotate(0deg);
  }
}
/*
@keyframes value-bubble-on {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
  }
}
@keyframes value-bubble-off {
  0% {
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
*/
/*----- FONTS -----*/
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Black.woff2') format('woff2'), url('../fonts/Poppins-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2'), url('../fonts/Poppins-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.woff2') format('woff2'), url('../fonts/Poppins-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.woff2') format('woff2'), url('../fonts/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aller Display';
  src: url('../fonts/AllerDisplay.woff2') format('woff2'), url('../fonts/AllerDisplay.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*----- COLORS -----*/
/*----- GLOBAL STYLES -----*/
#layout {
  background: #fff;
}
#layout .container {
  width: 1160px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
#layout .container-large {
  width: 1680px;
  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;
}
#layout .empty-content {
  content: '';
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
body *,
#layout * {
  box-sizing: border-box;
}
/*----- TYPO -----*/
#layout {
  font-family: 'Poppins';
}
#content,
footer {
  font-size: 18px;
  font-weight: 400;
}
#content h1,
footer h1,
#content h2,
footer h2,
#content h3,
footer h3,
#content h4,
footer h4 {
  font-family: 'Aller Display';
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 1.25;
}
#content h1.dark-blue,
footer h1.dark-blue,
#content h2.dark-blue,
footer h2.dark-blue,
#content h3.dark-blue,
footer h3.dark-blue,
#content h4.dark-blue,
footer h4.dark-blue {
  color: #262762;
}
#content h2,
footer h2 {
  font-size: 48px;
  color: #9bc4e4;
}
#content h3,
footer h3 {
  font-size: 36px;
  color: #262762;
}
#content h4,
footer h4 {
  font-size: 30px;
}
#content h2 + h3,
footer h2 + h3,
#content h2 + h4,
footer h2 + h4 {
  margin-top: -30px;
}
#content a,
footer a,
#content a:hover,
footer a:hover {
  text-decoration: none;
  color: #262762;
}
#content .hr,
footer .hr {
  display: inline-block;
  height: 6px;
  width: 174px;
  max-width: 100%;
  margin: 30px auto;
  background: url("../images/img-hr-yellow.png");
}
#content .hr.light,
footer .hr.light {
  background: url("../images/img-hr-light.png");
}
#content .line-after,
footer .line-after {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
#content .line-after:after,
footer .line-after:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 41px;
  background: url("../images/img-line-after-yellow.png");
}
#content .line-after.line-light:after,
footer .line-after.line-light:after {
  background: url("../images/img-line-after-light.png");
}
/*----- BUTTON -----*/
#layout .button,
footer .button {
  color: #fff;
  background-color: #262762;
  text-align: center;
  font-size: 17px;
  font-family: "Metropolis";
  padding: 15px 25px;
  margin: 15px 0;
  min-width: 120px;
  line-height: 1;
  display: inline-block;
  border-radius: 10px;
  transition: all 250ms ease-in-out;
}
#layout .button:hover,
footer .button:hover {
  text-decoration: none;
  background: #ffd11f;
  color: #262762;
}
#layout .button.large,
footer .button.large {
  font-size: 46px;
}
#layout .button.transparent,
footer .button.transparent {
  background: transparent;
  color: #262762;
}
#layout .button.transparent:hover,
footer .button.transparent:hover {
  background: #262762;
  color: #ffffff;
}
#layout .button.yellow,
footer .button.yellow {
  background: #ffd11f;
  color: #262762;
}
#layout .button.yellow:hover,
footer .button.yellow:hover {
  background: #262762;
  color: #ffffff;
}
/*----- LIST -----*/
.content-wrapper ul {
  margin-bottom: 30px;
}
.content-wrapper ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.content-wrapper ul li:before {
  content: '';
  position: absolute;
  top: 11px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #262762;
}
/*----- 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 transparent;
  border-radius: 10px;
  box-shadow: none;
  padding: 10px 15px 10px 15px;
  font-size: 15px;
  color: #9e9e9e;
  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 #ffd11f;
}
#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;
}
#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: 30px;
  padding-top: 5px;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
  font-weight: normal;
  font-style: italic;
}
#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: 23px;
  height: 23px;
  background: #FFF;
  border-radius: 6px;
  box-shadow: inset 0 0px 2px rgba(0, 0, 0, 0.5), 0 0 0 rgba(26, 174, 232, 0.35);
  -webkit-transition: all .275s;
  transition: all .275s;
}
#layout form [type="checkbox"]:checked + label:before,
#layout .form [type="checkbox"]:checked + label:before {
  background: #262762;
}
#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;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  border-radius: 6px;
  background: url("../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: #bbb;
  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 [type="checkbox"]:checked:focus + label:before,
#layout .form [type="checkbox"]:checked:focus + label:before,
#layout form [type="checkbox"]:not(:checked):focus + label:before,
#layout .form [type="checkbox"]:not(:checked):focus + label:before {
  box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(26, 174, 232, 0.35);
}
/* IFRAME */
#content iframe {
  max-width: 100%;
  height: 260px;
}
/* BACK TO TOP */
#back-to-top {
  display: inline-block;
  background-color: #262762;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 8px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#back-to-top:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/icons/icon-up-arrow.png") no-repeat center;
  background-size: 60%;
}
#back-to-top:hover {
  cursor: pointer;
  background-color: #ffd11f;
  opacity: 1;
}
#back-to-top:active {
  background-color: #ffd11f;
}
#back-to-top.show {
  opacity: .8;
  visibility: visible;
}
/*----- FRAME -----*/
html,
body {
  background: transparent;
  font-weight: normal;
  color: #262762;
}
body {
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
/*----- SIDEWAVE -----*/
#layout .sidewave {
  position: absolute;
  top: 50%;
  background-image: url("../images/img-wave-blue.png");
  background-size: contain;
  height: 200px;
  width: 500px;
  z-index: 1;
  transform: translateY(-50%);
}
#layout .sidewave.left {
  right: calc(90vw - 130px);
  animation: waves-left ease-in-out 3.5s infinite;
}
#layout .sidewave.right {
  top: 20%;
  left: calc(90vw - 130px);
  animation: waves-right ease-in-out 5s infinite;
}
#layout .sidewave.light {
  background-image: url("../images/img-wave-lightblue.png");
}
#layout .sidewave.white {
  background-image: url("../images/img-wave-white.png");
}
/*----- HEADER -----*/
#layout header {
  position: relative;
  padding: 15px 0;
  font-family: "Aller Display";
}
#layout header .container {
  align-items: center;
}
#layout header .logo {
  content: '';
  max-width: 508px;
  width: 100%;
  height: 123px;
  text-indent: -9999px;
  cursor: pointer;
  background: url('../images/logos/logo-szkipper-header-large.png') no-repeat center;
  background-size: contain;
}
#layout header .logo a {
  display: flex;
  height: 100%;
}
#layout header .navigation {
  margin: auto 0 auto auto;
  z-index: 10;
}
#layout header .navigation ul {
  display: flex;
  flex-wrap: wrap;
}
#layout header .navigation ul li {
  margin-left: 15px;
}
#layout header .navigation ul li a {
  font-size: 20px;
  color: #262762;
  text-transform: uppercase;
  background: none;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: transparent;
  transition: all 250ms;
}
#layout header .navigation ul li a:hover {
  text-shadow: -1px 1px 1px #262762;
  color: #ffd11f;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #262762;
}
#layout header #media-links {
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#layout header #media-links a {
  content: '';
  display: inline-block;
  height: 46px;
  margin-left: 15px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 300ms;
}
#layout header #media-links a.soc-1 {
  width: 30px;
  background-image: url('../images/icons/icon-soc-1.png');
  background-size: auto 30px;
}
#layout header #media-links a.soc-2 {
  width: 33px;
  background-image: url('../images/icons/icon-soc-2.png');
  background-size: contain;
}
#layout header #media-links a:hover {
  text-decoration: none;
}
#layout header #menu-toggle {
  content: '';
  position: absolute;
  top: 17px;
  right: 15px;
  display: none;
  cursor: pointer;
  width: 56px;
  height: 56px;
  background: #262762 url("../images/icons/icon-menu-toggle.png") no-repeat center;
  background-size: 34px;
}
#layout header:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 12px;
  background: url("../images/img-header-border.png") no-repeat center;
  background-size: contain;
  z-index: 1;
}
/*----- CONTENT -----*/
#content {
  overflow: hidden;
  flex: 0 0 auto;
  margin: 90px 0;
}
/*----- LANDING -----*/
#layout #content {
  margin: 0;
}
#layout #content #contact-form {
  display: none;
  max-width: 666px;
  margin: 30px auto;
}
#layout #content #contact-form fieldset {
  display: flex;
  flex-wrap: wrap;
}
#layout #content #contact-form fieldset .form-group {
  width: 100%;
  margin: 10px 10px 30px;
}
#layout #content #contact-form fieldset .form-group:nth-of-type(1),
#layout #content #contact-form fieldset .form-group:nth-of-type(2) {
  width: calc(50% - 20px);
}
#layout #content #contact-form fieldset .form-group label {
  text-transform: uppercase;
  font-size: 18px;
  font-family: "HK Grotesk Black";
}
#layout #content #contact-form fieldset .text-muted {
  display: none;
}
#layout #content #contact-form .form-group.captcha {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#layout #content #contact-form .form-group.captcha label[for="ccm-captcha-code"] {
  display: none;
}
#layout #content #contact-form .form-group.captcha label[for="ccm-captcha-code"] + div {
  display: inline-block;
  width: 144px;
  margin: 0 20px;
}
#layout #content #contact-form .form-group.captcha label[for="ccm-captcha-code"] + div + div {
  display: inline-block;
  width: 150px;
}
#layout #content #contact-form .ccm-captcha-image {
  margin: 0 0 0;
  height: 45px;
}
#layout #content section {
  position: relative;
}
#layout #content section .container {
  position: relative;
  z-index: 2;
}
/*----- TOP VIDEO -----*/
#top-video {
  display: flex;
  align-items: center;
  justify-content: center;
}
#top-video .video-wrapper {
  width: 100%;
}
#top-video .video-wrapper video {
  width: 100%;
}
#top-video .container {
  position: absolute !important;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#top-video .container .description {
  text-align: center;
  color: #fff;
  text-shadow: -2px 7px 4px rgba(0, 0, 0, 0.5);
}
#top-video .container .description h2 {
  color: #fff;
  font-size: 100px;
}
#top-video .container .description p {
  font-size: 40px;
  line-height: 1.2;
}
/*----- BERELJ VITORLAST -----*/
#berelj-vitorlast {
  padding: 60px 0 120px;
}
#berelj-vitorlast:before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 125px;
  background: url("../images/backgrounds/bg-bereljvitorlast-top.png") no-repeat center bottom;
  background-size: contain;
}
#berelj-vitorlast .background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../images/backgrounds/bg-bereljvitorlast.png") no-repeat center top;
  background-size: contain;
  transform: translateY(-30px);
}
#berelj-vitorlast .content-wrapper {
  position: relative;
}
#berelj-vitorlast .content-wrapper .image-wrapper {
  margin-right: 45px;
}
#berelj-vitorlast .content-wrapper .image-wrapper .image {
  width: 267px;
  padding-bottom: 94%;
  background-image: url('../images/icons/icon-bereljvitorlast.png');
}
#berelj-vitorlast .content-wrapper .description {
  flex: 1;
  margin: auto 0;
}
/*----- KOSZONTO -----*/
#koszonto {
  padding: 60px 0;
}
#koszonto .sidewave.right {
  top: 10%;
}
#koszonto .background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url("../images/backgrounds/bg-koszonto.jpg");
  background-size: 100% 100%;
}
#koszonto .container {
  position: relative;
}
#koszonto .columns {
  display: flex;
  margin-top: 120px;
}
#koszonto .columns .column {
  width: 50%;
}
#koszonto .columns .column h3 {
  max-width: 360px;
  margin: -60px 0 90px;
}
#koszonto .columns .column .box {
  position: relative;
  padding: 30px;
}
#koszonto .columns .column .box * {
  position: relative;
}
#koszonto .columns .column .box:before {
  content: '';
  position: absolute;
  left: -45px;
  right: -45px;
  top: -45px;
  bottom: -45px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#koszonto .columns .column .box.light:before {
  background: #fff;
}
#koszonto .columns .column .box.yellow:before {
  background: #ffd11f;
}
#koszonto .columns .column .icon-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#koszonto .columns .column .icon-wrapper .icon {
  position: relative;
  display: block;
  background-image: url("../images/icons/icon-koszonto-1.jpg");
  width: 173px;
  padding-bottom: 100%;
  border-radius: 50%;
}
#koszonto .columns .column .icon-wrapper .icon:before {
  content: '';
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  margin: 10px -5px -5px 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border: 4px solid #ffd11f;
  animation: bubbles ease-in-out 3.5s infinite;
}
#koszonto .columns .column .icon-wrapper .icon.border-blue:before {
  border-color: #262762;
}
#koszonto .columns .column:nth-of-type(1) {
  padding-right: 60px;
  margin-left: 45px;
}
#koszonto .columns .column:nth-of-type(1) .icon-wrapper {
  right: 100%;
}
#koszonto .columns .column:nth-of-type(2) .icon-wrapper {
  left: 100%;
}
#koszonto .columns .column:nth-of-type(2) .icon-wrapper .icon {
  background-image: url("../images/icons/icon-koszonto-2.jpg");
}
#koszonto .columns .column:nth-of-type(2) .icon-wrapper .icon:before {
  margin: -10px 5px 5px -10px;
}
/*----- SZOLGALTATASOK -----*/
#szolgaltatasok {
  padding-top: 120px;
  margin-bottom: 60px;
}
#szolgaltatasok .title-wrapper {
  text-align: right;
}
#szolgaltatasok .title-wrapper h2:after {
  left: unset;
  right: 0;
}
#szolgaltatasok .services-wrapper {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
}
#szolgaltatasok .services-wrapper .item {
  display: flex;
  margin-bottom: 140px;
}
#szolgaltatasok .services-wrapper .item .image-wrapper {
  position: relative;
}
#szolgaltatasok .services-wrapper .item .image-wrapper .marker {
  position: absolute;
  left: 0;
  bottom: -20px;
  background-image: url("../images/img-szolgaltatasok-marker.png");
  width: 205px;
  padding-bottom: 53%;
  transform: translateX(-50%);
}
#szolgaltatasok .services-wrapper .item .image-wrapper .wave {
  position: absolute;
  top: 40px;
  left: 92%;
  background-image: url("../images/img-szolgaltatasok-wave.png");
  width: 431px;
  padding-bottom: 26%;
}
#szolgaltatasok .services-wrapper .item .image-wrapper .image {
  position: relative;
  width: 585px;
  padding-bottom: 81%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 7%;
  background-size: cover;
}
#szolgaltatasok .services-wrapper .item .image-wrapper .image.img-1 {
  background-image: url("../images/img-szolgaltatasok-1.jpg");
}
#szolgaltatasok .services-wrapper .item .image-wrapper .image.img-2 {
  background-image: url("../images/img-szolgaltatasok-2.jpg");
}
#szolgaltatasok .services-wrapper .item .image-wrapper .image.img-3 {
  background-image: url("../images/img-szolgaltatasok-3.jpg");
}
#szolgaltatasok .services-wrapper .item .image-wrapper .image.img-4 {
  background-image: url("../images/img-szolgaltatasok-4.jpg");
}
#szolgaltatasok .services-wrapper .item .image-wrapper .image.img-5 {
  background-image: url("../images/img-szolgaltatasok-5.jpg");
}
#szolgaltatasok .services-wrapper .item .image-wrapper .image.img-6 {
  background-image: url("../images/img-szolgaltatasok-6.jpg");
  background-position: center top 7%;
}
#szolgaltatasok .services-wrapper .item .image-wrapper .image.img-7 {
  background-image: url("../images/img-szolgaltatasok-7.jpg");
}
#szolgaltatasok .services-wrapper .item .image-wrapper .image.img-8 {
  background-image: url("../images/img-szolgaltatasok-8.jpg");
}
#szolgaltatasok .services-wrapper .item .image-wrapper .image.img-9 {
  background-image: url("../images/img-szolgaltatasok-9.jpg");
}
#szolgaltatasok .services-wrapper .item .image-wrapper .image.img-10 {
  background-image: url("../images/img-szolgaltatasok-10.jpg");
}
#szolgaltatasok .services-wrapper .item .image-wrapper .image.img-11 {
  background-image: url("../images/img-szolgaltatasok-11.jpg");
}
#szolgaltatasok .services-wrapper .item .image-wrapper .image.img-12 {
  background-image: url("../images/img-szolgaltatasok-12.jpg");
}
#szolgaltatasok .services-wrapper .item .image-wrapper .image.img-13 {
  background-image: url("../images/img-szolgaltatasok-13.jpg");
}
#szolgaltatasok .services-wrapper .item .image-wrapper .image.img-14 {
  background-image: url("../images/img-szolgaltatasok-14.jpg");
}
#szolgaltatasok .services-wrapper .item .image-wrapper .image.img-15 {
  background-image: url("../images/img-szolgaltatasok-15.jpg");
}
#szolgaltatasok .services-wrapper .item .image-wrapper .image.img-16 {
  background-image: url("../images/img-szolgaltatasok-16.jpg");
}
#szolgaltatasok .services-wrapper .item .description {
  position: relative;
  margin-top: 14%;
  margin-left: -60px;
  margin-right: 45px;
}
#szolgaltatasok .services-wrapper .item .description * {
  position: relative;
}
#szolgaltatasok .services-wrapper .item .description .box {
  padding: 20px 30px;
}
#szolgaltatasok .services-wrapper .item .description .box:before {
  content: '';
  position: absolute;
  left: -45px;
  right: -45px;
  top: -45px;
  bottom: -45px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}
#szolgaltatasok .services-wrapper .item .description .box.light:before {
  background: #fff;
}
#szolgaltatasok .services-wrapper .item .description .box.yellow:before {
  background: #ffd11f;
}
#szolgaltatasok .services-wrapper .item .description h4 {
  margin-bottom: 0;
}
#szolgaltatasok .services-wrapper .item:nth-of-type(even) .image-wrapper {
  order: 2;
}
#szolgaltatasok .services-wrapper .item:nth-of-type(even) .wave {
  left: unset;
  right: 92%;
}
#szolgaltatasok .services-wrapper .item:nth-of-type(even) .marker {
  left: unset;
  right: 0;
  transform: translateX(50%);
}
#szolgaltatasok .services-wrapper .item:nth-of-type(even) .description {
  margin-right: -60px;
  margin-left: 45px;
}
/*----- FONTOS TUDNIVALOK -----*/
#fontos-tudnivalok {
  background: #ffd11f;
  margin-top: 100px;
  margin-bottom: 240px;
}
#fontos-tudnivalok .background-top {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 170px;
  background-image: url("../images/backgrounds/bg-fontostudnivalok-top.jpg");
  background-size: 100% 100%;
  margin-bottom: -70px;
}
#fontos-tudnivalok .background-bottom {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 200px;
  background-image: url("../images/backgrounds/bg-fontostudnivalok-bottom.jpg");
  background-size: 100% 100%;
}
#fontos-tudnivalok .goodtoknow-wrapper {
  display: flex;
  flex-direction: column;
}
#fontos-tudnivalok .goodtoknow-wrapper .item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -30px;
  /*&:nth-of-type(4){
        z-index: 0;
        .image-wrapper{.image{background-image: url("../images/img-fontostudnivalok-4.jpg")}}
      }*/
}
#fontos-tudnivalok .goodtoknow-wrapper .item .image-wrapper .image {
  width: 650px;
  padding-bottom: 81%;
  border-radius: 34px;
}
#fontos-tudnivalok .goodtoknow-wrapper .item:nth-of-type(1) {
  z-index: 3;
}
#fontos-tudnivalok .goodtoknow-wrapper .item:nth-of-type(1) .image-wrapper .image {
  background-image: url("../images/img-fontostudnivalok-2.jpg");
}
#fontos-tudnivalok .goodtoknow-wrapper .item:nth-of-type(1) .description .title {
  margin-top: 0;
}
#fontos-tudnivalok .goodtoknow-wrapper .item:nth-of-type(2) {
  z-index: 2;
}
#fontos-tudnivalok .goodtoknow-wrapper .item:nth-of-type(2) .image-wrapper .image {
  background-image: url("../images/img-fontostudnivalok-3.jpg");
}
#fontos-tudnivalok .goodtoknow-wrapper .item:nth-of-type(3) {
  z-index: 1;
}
#fontos-tudnivalok .goodtoknow-wrapper .item:nth-of-type(3) .image-wrapper .image {
  background-image: url("../images/img-fontostudnivalok-4.jpg");
}
#fontos-tudnivalok .goodtoknow-wrapper .item:nth-of-type(even) .image-wrapper {
  order: 2;
}
#fontos-tudnivalok .goodtoknow-wrapper .item:nth-of-type(even) .description {
  padding: 30px 60px 30px 15px;
}
#fontos-tudnivalok .goodtoknow-wrapper .item .description {
  flex: 1;
  align-self: center;
  padding: 30px 15px 30px 60px;
}
#fontos-tudnivalok .goodtoknow-wrapper .item .description .title {
  margin-top: 30px;
  margin-bottom: 0;
}
/*----- ARAK -----*/
#arak .title-wrapper {
  text-align: right;
}
#arak .title-wrapper h2:after {
  left: unset;
  right: 0;
}
#arak .prices-wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 45px;
}
#arak .prices-wrapper .box {
  position: relative;
  flex: 1;
  margin-left: 90px;
  padding: 60px;
  padding-left: 150px;
  margin-bottom: 45px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#arak .prices-wrapper .box h3 {
  margin-bottom: 0;
}
#arak .prices-wrapper .box .icon-wrapper {
  position: absolute;
  top: 15px;
  transform: translateX(40%);
}
#arak .prices-wrapper .box .icon-wrapper .icon {
  position: relative;
  display: block;
  background-image: url("../images/icons/icon-arak-1.jpg");
  width: 173px;
  padding-bottom: 100%;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#arak .prices-wrapper .box .icon-wrapper .icon:before {
  content: '';
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  margin: 10px -5px -5px 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border: 4px solid #ffd11f;
  animation: bubbles ease-in-out 3.5s infinite;
}
#arak .prices-wrapper .box .icon-wrapper .icon.border-blue:before {
  border-color: #262762;
}
#arak .prices-wrapper .box:nth-of-type(1) .icon-wrapper {
  right: 100%;
}
#arak .prices-wrapper .box:nth-of-type(2) {
  padding-left: 60px;
  padding-right: 150px;
}
#arak .prices-wrapper .box:nth-of-type(2) .icon-wrapper {
  left: 100%;
  transform: translateX(-40%);
}
#arak .prices-wrapper .box:nth-of-type(2) .icon-wrapper .icon {
  background-image: url("../images/icons/icon-arak-2.jpg");
  margin: -10px 5px 5px -10px;
}
#arak .prices-wrapper .box:nth-of-type(3) .icon-wrapper {
  right: 100%;
}
#arak .prices-wrapper .box:nth-of-type(3) .icon-wrapper .icon {
  background-image: url("../images/icons/icon-arak-3.jpg");
}
#arak .prices-wrapper .box:nth-of-type(2) {
  margin-left: 0;
  margin-right: 90px;
}
#arak .prices-wrapper .box .price-table div {
  display: flex;
  padding: 10px;
}
#arak .prices-wrapper .box .price-table div:not(:last-of-type) {
  border-bottom: 2px solid #ffd11f;
}
#arak .prices-wrapper .box .price-table div .value {
  margin-left: auto;
}
/*----- A HAJOROL -----*/
#a-hajorol {
  background-color: #f4f9fc;
  margin-top: 140px;
  padding-bottom: 120px;
}
#a-hajorol .background-top {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 170px;
  background-image: url('../images/backgrounds/bg-ahajorol-top.jpg');
  background-size: 100% 100%;
  margin-bottom: -70px;
}
#a-hajorol .container {
  position: relative;
}
#a-hajorol .columns {
  display: flex;
}
#a-hajorol .columns .column h3 {
  max-width: 360px;
  margin: 0 0 90px 25px;
}
#a-hajorol .columns .column .box {
  position: relative;
  padding: 0 30px;
}
#a-hajorol .columns .column .box * {
  position: relative;
}
#a-hajorol .columns .column .box:before {
  content: '';
  position: absolute;
  left: -45px;
  right: -45px;
  top: -45px;
  bottom: -45px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#a-hajorol .columns .column .box.yellow:before {
  background: #ffd11f;
}
#a-hajorol .columns .column .image-wrapper .image {
  width: 636px;
  padding-bottom: 135%;
  background-image: url("../images/img-ahajorol-1.jpg");
  background-size: cover;
  border-radius: 12px;
}
#a-hajorol .columns .column:nth-of-type(1) {
  margin: -30px -90px 0 45px;
  padding-right: 60px;
  align-self: center;
}
#a-hajorol .wave {
  position: absolute;
  bottom: 0;
  left: -10px;
  background-image: url("../images/img-wave-blue.png");
  background-size: contain;
  height: 200px;
  width: 590px;
  z-index: -1;
  transform: translateY(70px);
}
/*----- A KAPITANYROL -----*/
#a-kapitanyrol {
  background-color: #f4f9fc;
}
#a-kapitanyrol .container {
  position: relative;
}
#a-kapitanyrol .title-wrapper {
  text-align: right;
}
#a-kapitanyrol .title-wrapper h2:after {
  left: unset;
  right: 0;
}
#a-kapitanyrol .columns {
  display: flex;
}
#a-kapitanyrol .columns .column h3 {
  max-width: 360px;
  margin: 0 0 90px 25px;
}
#a-kapitanyrol .columns .column .box {
  position: relative;
  padding: 0 30px;
}
#a-kapitanyrol .columns .column .box * {
  position: relative;
}
#a-kapitanyrol .columns .column .box:before {
  content: '';
  position: absolute;
  left: -45px;
  right: -45px;
  top: -45px;
  bottom: -45px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#a-kapitanyrol .columns .column .image-wrapper .image {
  width: 636px;
  padding-bottom: 78%;
  background-image: url("../images/img-akapitanyrol-1.jpg");
}
#a-kapitanyrol .columns .column .description {
  text-transform: uppercase;
  font-size: 24px;
  font-family: "Aller Display";
}
#a-kapitanyrol .columns .column:nth-of-type(2) {
  margin: -30px -45px 0 -50px;
  padding-right: 90px;
  align-self: center;
}
#a-kapitanyrol .columns .column .icon-wrapper {
  position: absolute;
  top: 100%;
  right: -40px;
  transform: translateY(-30px);
}
#a-kapitanyrol .columns .column .icon-wrapper .icon {
  position: relative;
  display: block;
  background-image: url("../images/icons/icon-quote.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
  width: 173px;
  padding-bottom: 100%;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#a-kapitanyrol .columns .column .icon-wrapper .icon:before {
  content: '';
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  margin: 10px -5px -5px 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border: 4px solid #ffd11f;
  animation: bubbles ease-in-out 3.5s infinite;
}
#a-kapitanyrol .columns .column .icon-wrapper .icon.border-blue:before {
  border-color: #262762;
}
#a-kapitanyrol .text-columns {
  display: flex;
  flex-wrap: wrap;
  margin: 90px 0;
}
#a-kapitanyrol .text-columns p {
  width: 50%;
  padding-right: 15px;
}
#a-kapitanyrol .text-columns p:nth-of-type(2) {
  padding-left: 15px;
  padding-right: 0;
}
/*----- KEPESITESEK -----*/
#kepesitesek {
  background-color: #f4f9fc;
  margin-bottom: 230px;
}
#kepesitesek .background-bottom {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 200px;
  background-image: url("../images/backgrounds/bg-kepesitesek-bottom.jpg");
  background-size: 100% 100%;
}
#kepesitesek .infoboxes-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 150px;
  margin-bottom: -60px;
}
#kepesitesek .infoboxes-wrapper .infobox {
  position: relative;
  width: calc(50% - 15px);
  background: #fff;
  padding: 120px 60px 60px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#kepesitesek .infoboxes-wrapper .infobox h3 {
  margin-bottom: 0;
}
#kepesitesek .infoboxes-wrapper .infobox .icon-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
#kepesitesek .infoboxes-wrapper .infobox .icon-wrapper .icon {
  position: relative;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
  width: 173px;
  padding-bottom: 100%;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#kepesitesek .infoboxes-wrapper .infobox .icon-wrapper .icon:before {
  content: '';
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  margin: 10px -5px -5px 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border: 4px solid #ffd11f;
  animation: bubbles ease-in-out 3.5s infinite;
}
#kepesitesek .infoboxes-wrapper .infobox .icon-wrapper .icon.belviz {
  background-image: url("../images/icons/icon-kepesitesek-1.jpg");
}
#kepesitesek .infoboxes-wrapper .infobox .icon-wrapper .icon.tengeri {
  background-image: url("../images/icons/icon-kepesitesek-2.jpg");
}
#kepesitesek .infoboxes-wrapper .infobox ul {
  position: relative;
}
#kepesitesek .infoboxes-wrapper .infobox ul:before {
  position: absolute;
  content: '';
  top: 14px;
  bottom: 14px;
  left: 6px;
  width: 1px;
  background: #ffd11f;
}
#kepesitesek .infoboxes-wrapper .infobox ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}
#kepesitesek .infoboxes-wrapper .infobox ul li:before {
  position: absolute;
  content: '';
  top: 7px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffd11f;
}
#kepesitesek .wave {
  position: absolute;
  bottom: 0;
  right: -70px;
  background-image: url("../images/img-wave-lightblue.png");
  background-size: contain;
  height: 200px;
  width: 590px;
  z-index: -1;
  transform: translateY(160px);
}
/*----- VELEMENYEK -----*/
#velemenyek .testimonials-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#velemenyek .testimonials-wrapper .item {
  position: relative;
  width: calc(33% - 30px);
  padding: 60px;
  margin: 15px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#velemenyek .testimonials-wrapper .item h4 {
  margin-bottom: 0;
}
#velemenyek .testimonials-wrapper .item:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: url("../images/icons/icon-quote.png") no-repeat center;
  background-size: contain;
  transform: translate(-50%, -50%);
}
#velemenyek .testimonials-wrapper .item:nth-of-type(1) {
  background: #ffd11f;
}
#velemenyek .testimonials-wrapper .item:nth-of-type(2) {
  background: #fff;
  margin: 15px 15px;
}
#velemenyek .testimonials-wrapper .item:nth-of-type(2):after {
  transform: translate(-50%, -50%) scale(-1);
}
#velemenyek .testimonials-wrapper .item:nth-of-type(3) {
  background: #9bc4e4;
}
#velemenyek .wave {
  position: absolute;
  top: 0;
  left: -70px;
  background-image: url("../images/img-wave-blue.png");
  background-size: contain;
  height: 200px;
  width: 590px;
  z-index: -1;
  transform: translateY(110px);
}
/*----- GALERIA -----*/
#galeria {
  margin-top: 60px;
}
#galeria .gallery-wrapper .image-row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px;
}
#galeria .gallery-wrapper .image-row .image-wrapper {
  position: relative;
  padding: 10px;
  overflow: hidden;
  border-radius: 12px;
}
#galeria .gallery-wrapper .image-row .image-wrapper .image {
  padding-bottom: 23vw;
  background-color: #ffd11f;
  background-size: cover;
  border-radius: 12px;
  transition: all 300ms ease-out;
}
#galeria .gallery-wrapper .image-row .image-wrapper .gallery-image {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
#galeria .gallery-wrapper .image-row .image-wrapper:hover .image {
  transform: scale(1.1);
}
#galeria .gallery-wrapper .image-row:nth-of-type(1) .image-wrapper:nth-of-type(1) {
  width: 34%;
}
#galeria .gallery-wrapper .image-row:nth-of-type(1) .image-wrapper:nth-of-type(1) .image {
  background-image: url("../images/gallery/képgaléria_1.jpg");
}
#galeria .gallery-wrapper .image-row:nth-of-type(1) .image-wrapper:nth-of-type(2) {
  width: 26%;
}
#galeria .gallery-wrapper .image-row:nth-of-type(1) .image-wrapper:nth-of-type(2) .image {
  background-image: url("../images/gallery/képgaléria_3.jpg");
}
#galeria .gallery-wrapper .image-row:nth-of-type(1) .image-wrapper:nth-of-type(3) {
  width: 15%;
}
#galeria .gallery-wrapper .image-row:nth-of-type(1) .image-wrapper:nth-of-type(3) .image {
  background-image: url("../images/gallery/képgaléria_2.jpg");
}
#galeria .gallery-wrapper .image-row:nth-of-type(1) .image-wrapper:nth-of-type(4) {
  width: 25%;
}
#galeria .gallery-wrapper .image-row:nth-of-type(1) .image-wrapper:nth-of-type(4) .image {
  background-image: url("../images/gallery/képgaléria_4.jpg");
  background-position: center bottom;
}
#galeria .gallery-wrapper .image-row:nth-of-type(2) .image-wrapper:nth-of-type(1) {
  width: 28%;
}
#galeria .gallery-wrapper .image-row:nth-of-type(2) .image-wrapper:nth-of-type(1) .image {
  background-image: url("../images/gallery/képgaléria_5.jpg");
}
#galeria .gallery-wrapper .image-row:nth-of-type(2) .image-wrapper:nth-of-type(2) {
  width: 21%;
}
#galeria .gallery-wrapper .image-row:nth-of-type(2) .image-wrapper:nth-of-type(2) .image {
  background-image: url("../images/gallery/képgaléria_6.jpg");
  background-position: left 12% center;
}
#galeria .gallery-wrapper .image-row:nth-of-type(2) .image-wrapper:nth-of-type(3) {
  width: 21%;
}
#galeria .gallery-wrapper .image-row:nth-of-type(2) .image-wrapper:nth-of-type(3) .image {
  background-image: url("../images/gallery/képgaléria_8.jpg");
}
#galeria .gallery-wrapper .image-row:nth-of-type(2) .image-wrapper:nth-of-type(4) {
  width: 30%;
}
#galeria .gallery-wrapper .image-row:nth-of-type(2) .image-wrapper:nth-of-type(4) .image {
  background-image: url("../images/gallery/képgaléria_7.jpg");
}
#galeria .gallery-wrapper .image-row:nth-of-type(3) {
  /*.image-wrapper:nth-of-type(5){
          width: 24%;
          .image{background-image: url("../images/gallery/képgaléria_13.jpg")}
        }*/
}
#galeria .gallery-wrapper .image-row:nth-of-type(3) .image-wrapper:nth-of-type(1) {
  width: 23%;
}
#galeria .gallery-wrapper .image-row:nth-of-type(3) .image-wrapper:nth-of-type(1) .image {
  background-image: url("../images/gallery/képgaléria_9.jpg");
}
#galeria .gallery-wrapper .image-row:nth-of-type(3) .image-wrapper:nth-of-type(2) {
  width: 28%;
}
#galeria .gallery-wrapper .image-row:nth-of-type(3) .image-wrapper:nth-of-type(2) .image {
  background-image: url("../images/gallery/képgaléria_10.jpg");
}
#galeria .gallery-wrapper .image-row:nth-of-type(3) .image-wrapper:nth-of-type(3) {
  width: 23%;
}
#galeria .gallery-wrapper .image-row:nth-of-type(3) .image-wrapper:nth-of-type(3) .image {
  background-image: url("../images/gallery/képgaléria_11.jpg");
}
#galeria .gallery-wrapper .image-row:nth-of-type(3) .image-wrapper:nth-of-type(4) {
  width: 26%;
}
#galeria .gallery-wrapper .image-row:nth-of-type(3) .image-wrapper:nth-of-type(4) .image {
  background-image: url("../images/gallery/képgaléria_12.jpg");
}
/*----- FOOTER -----*/
footer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #f4f9fc;
  padding: 40px 0 0;
  margin-top: 120px;
  font-size: 15px;
}
footer:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 200px;
  background: url("../images/backgrounds/bg-ahajorol-top.jpg") no-repeat center;
  background-size: cover;
  transform: scaleX(-1);
}
footer .wave {
  position: absolute;
  top: 0;
  right: 0;
  width: 704px;
  padding-bottom: 16%;
  background: url("../images/img-wave-lightblue.png") no-repeat right center;
  background-size: contain;
}
footer .logo-wrapper {
  position: relative;
  margin-bottom: 20px;
}
footer .columns-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
footer .columns-wrapper .column {
  width: 25%;
  padding-right: 30px;
}
footer .columns-wrapper .contact-info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
footer .columns-wrapper .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
footer .columns-wrapper .contact-info .contact-item .icon {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
footer .columns-wrapper .contact-info .contact-item p {
  line-height: 1.25;
  margin-bottom: 0;
}
footer .columns-wrapper .contact-info .contact-item.address .icon {
  background-image: url("../images/icons/icon-footer-address.png");
}
footer .columns-wrapper .contact-info .contact-item.office .icon {
  background-image: url("../images/icons/icon-footer-office.png");
}
footer .columns-wrapper .contact-info .contact-item.phone .icon {
  background-image: url("../images/icons/icon-footer-phone.png");
}
footer .columns-wrapper .contact-info .contact-item.email .icon {
  background-image: url("../images/icons/icon-footer-email.png");
}
footer .columns-wrapper h3 {
  font-size: 24px;
}
footer small {
  display: block;
  text-align: center;
  font-size: 10px;
  margin: 0 0 -20px;
}
footer .copyright {
  width: 100%;
  margin-top: 30px;
  padding: 15px 0;
  font-size: 14px;
  background: #ffd11f;
}
footer .copyright .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .copyright .mc {
  margin-left: auto;
}
.cboxPhoto {
  max-width: 99% !important;
}
#cboxContent {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.65);
}
#cboxContent,
#cboxLoadedContent {
  background: transparent;
  padding: 0;
}
#colorbox,
#cboxOverlay,
#cboxWrapper {
  overflow: visible;
}
.cboxPhoto {
  max-width: 90vw;
  height: auto !important;
}
/*
#cboxOverlay {
  background: #fff;
}*/
/*#cboxTopLeft,
#cboxTopCenter,
#cboxTopRight,
#cboxMiddleLeft,
#cboxMiddleRight,
#cboxBottomLeft,
#cboxBottomCenter,
#cboxBottomRight{
  display: none;
}*/
/*#cboxContent{
  border: 14px solid @blue;
  border-radius: 20px;
}*/
.grecaptcha-badge {
  visibility: hidden;
}
@media (max-width: 1430px) {
  #layout header .logo {
    width: 300px;
  }
  #koszonto .columns .column .icon-wrapper {
    position: relative;
    left: unset !important;
    right: unset !important;
    top: unset !important;
  }
  #koszonto .columns .column .icon-wrapper .icon {
    padding-bottom: 0;
    width: 160px;
    height: 160px;
    margin: 30px auto -40px;
    transform: translateY(0);
  }
  .box:before {
    left: -15px !important;
    right: -15px !important;
    top: -35px !important;
    bottom: -15px !important;
  }
}
@media (max-width: 1220px) {
  #layout header {
    position: fixed;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 10;
  }
  #layout header .navigation {
    display: none;
  }
  #layout header .navigation.visible {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #262762;
    padding: 15px 0;
  }
  #layout header .navigation.visible .nav {
    width: 100%;
    flex-wrap: wrap;
  }
  #layout header .navigation.visible .nav li {
    width: 100%;
    text-align: center;
    padding: 10px;
    margin: 0;
  }
  #layout header .navigation.visible .nav li a {
    color: #fff;
  }
  #layout header .navigation.visible .nav li a:hover {
    color: #ffd11f;
  }
  #layout header .logo {
    max-width: 220px;
    height: 66px;
  }
  #layout header #menu-toggle {
    display: block;
  }
  #layout header #media-links {
    margin: 0 70px 0 auto;
  }
  #layout #content {
    margin: 96px 0 0;
  }
  #top-video .container .description h2 {
    font-size: 50px;
  }
  #top-video .container .description p {
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  #content,
  footer {
    font-size: 16px;
  }
  #content h2,
  footer h2 {
    font-size: 34px;
    color: #9bc4e4;
  }
  #content h3,
  footer h3 {
    font-size: 24px;
    color: #262762;
  }
  #content h4,
  footer h4 {
    font-size: 20px;
  }
  #content h2 + h3,
  footer h2 + h3,
  #content h2 + h4,
  footer h2 + h4 {
    margin-top: -30px;
  }
  #layout header #media-links {
    margin-right: 75px;
    margin-left: auto;
  }
}
@media (max-width: 860px) {
  footer .footer-wrapper {
    flex-direction: column;
  }
  footer .footer-wrapper > div {
    flex: unset !important;
  }
  footer .footer-wrapper .about .logo-wrapper {
    max-width: 260px;
    margin: 0 auto 30px;
  }
  footer .footer-wrapper .contact-info {
    padding: 0;
  }
  footer .footer-wrapper .ask-us {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #berelj-vitorlast {
    padding: 30px 0 30px;
  }
  #berelj-vitorlast .container.flex-wrapper {
    flex-direction: column;
  }
  #berelj-vitorlast .container.flex-wrapper .image-wrapper {
    margin-right: 0;
    margin-bottom: 48%;
  }
  #berelj-vitorlast .container.flex-wrapper .image-wrapper .image {
    width: 100%;
    padding-bottom: 42%;
  }
  #koszonto .columns {
    flex-direction: column;
    padding: 0 30px;
    margin-top: 45px;
  }
  #koszonto .columns .column {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }
  #koszonto .columns .column:nth-of-type(2) {
    margin-top: 120px !important;
  }
  #koszonto .columns .column h3 {
    max-width: 100%;
    margin: 0 0 60px;
  }
  #szolgaltatasok {
    padding-top: 30px;
  }
  #szolgaltatasok .services-wrapper {
    margin-top: 45px;
  }
  #szolgaltatasok .services-wrapper .item {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
  }
  #szolgaltatasok .services-wrapper .item .image-wrapper {
    order: 0 !important;
  }
  #szolgaltatasok .services-wrapper .item .image-wrapper .image {
    width: 100%;
    padding-bottom: 60%;
  }
  #szolgaltatasok .services-wrapper .item .description {
    margin: 60px 15px 40px !important;
  }
  #fontos-tudnivalok {
    padding-top: 30px;
    margin-bottom: 60px;
  }
  #fontos-tudnivalok .background-top {
    height: auto;
    padding-bottom: 20%;
  }
  #fontos-tudnivalok .goodtoknow-wrapper {
    margin-top: 45px;
  }
  #fontos-tudnivalok .goodtoknow-wrapper .item {
    display: flex;
    flex-direction: column;
    margin-bottom: 0px;
  }
  #fontos-tudnivalok .goodtoknow-wrapper .item .image-wrapper {
    width: 100%;
  }
  #fontos-tudnivalok .goodtoknow-wrapper .item .image-wrapper .image {
    width: 100%;
    padding-bottom: 70%;
    margin: 0 auto 20px;
    background-size: cover;
  }
  #fontos-tudnivalok .goodtoknow-wrapper .item .description {
    margin: 0 15px 0;
    padding: 15px 0 !important;
    order: -1;
  }
  #fontos-tudnivalok .background-bottom {
    height: auto;
    padding-bottom: 10%;
  }
  #arak .prices-wrapper .box {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 0 30px !important;
    padding: 30px !important;
  }
  #arak .prices-wrapper .box .icon-wrapper {
    position: relative;
    left: unset !important;
    right: unset !important;
    top: unset !important;
    transform: translate(0) !important;
  }
  #arak .prices-wrapper .box .icon-wrapper .icon {
    padding-bottom: 0;
    width: 160px;
    height: 160px;
    margin: 0 auto 0 !important;
    transform: translateY(0);
  }
  #arak .prices-wrapper .box h3 {
    text-align: center;
    margin-top: 45px;
  }
  #arak .prices-wrapper .box .price-table div {
    flex-direction: column;
  }
  #arak .prices-wrapper .box .price-table div .value {
    margin-left: 0;
  }
  #a-hajorol {
    margin-top: 60px;
  }
  #a-hajorol .background-top {
    height: auto;
    padding-bottom: 20%;
  }
  #a-hajorol .columns {
    flex-direction: column;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  #a-hajorol .columns .column {
    width: 100%;
    margin: 0 auto !important;
    padding: 15px !important;
  }
  #a-hajorol .columns .column:nth-of-type(2) {
    padding: 15px 0 !important;
  }
  #a-hajorol .columns .column h3 {
    max-width: 100%;
    margin: 0 0 60px 0;
  }
  #a-hajorol .columns .column .image-wrapper .image {
    max-width: 100%;
  }
  #a-kapitanyrol .columns {
    flex-direction: column;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  #a-kapitanyrol .columns .column {
    width: 100%;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  #a-kapitanyrol .columns .column:nth-of-type(2) {
    margin: 50px 15px 0 !important;
    padding: 15px !important;
  }
  #a-kapitanyrol .columns .column .description {
    font-size: 19px;
  }
  #a-kapitanyrol .columns .column .icon-wrapper {
    display: none;
  }
  #a-kapitanyrol .columns .column .image-wrapper .image {
    max-width: 100%;
  }
  #a-kapitanyrol .text-columns {
    margin: 30px 0;
  }
  #a-kapitanyrol .text-columns p {
    width: 100%;
    padding: 0 !important;
  }
  #kepesitesek h2 {
    margin-bottom: 0;
  }
  #kepesitesek .infoboxes-wrapper {
    flex-direction: column;
    margin-top: 0;
  }
  #kepesitesek .infoboxes-wrapper .infobox {
    width: 100%;
    padding: 100px 20px 20px;
    margin-top: 100px;
  }
  #kepesitesek .infoboxes-wrapper .infobox .icon-wrapper .icon {
    width: 130px;
  }
  #velemenyek h2 {
    margin-bottom: 0;
  }
  #velemenyek .testimonials-wrapper {
    flex-direction: column;
  }
  #velemenyek .testimonials-wrapper .item {
    width: 100%;
    padding: 40px 40px 60px;
    margin: 15px 0 45px !important;
  }
  #galeria {
    margin-top: 30px;
  }
  #galeria .gallery-wrapper .image-row .image-wrapper {
    width: 100% !important;
  }
  #galeria .gallery-wrapper .image-row .image-wrapper .image {
    padding-bottom: 50vw;
  }
  footer {
    margin-top: 30px;
  }
  footer .wave {
    display: none;
  }
  footer .logo-wrapper img {
    width: 170px;
  }
  footer .columns-wrapper .column {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 650px) {
  #content .news-wrapper .list .news-items .news-item {
    width: 100%;
    margin: 15px auto 30px;
  }
}
@media (max-width: 600px) {
  #layout header .logo {
    background: url('../images/logos/logo-szkipper-header-small.png') no-repeat center;
    background-size: contain;
    width: 60px;
  }
  #top-video .container .description h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  #top-video .container .description p {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  #top-video .container .description h2 {
    font-size: 26px;
  }
  #top-video .container .description p {
    display: none;
  }
}



#hozzajarulok {
 float:left;	
}

#kuldesGomb {
    color: #fff;
	cursor:pointer;
    background-color: #262762;
    text-align: center;
    font-size: 17px;
    font-family: "Metropolis";
    padding: 15px 25px;
    margin: 15px 0;
    min-width: 120px;
    line-height: 1;
    display: inline-block;
    border-radius: 10px;
    transition: all 250ms ease-in-out;
}

#kuldesGomb:hover {
    text-decoration: none;
    background: #ffd11f;
    color: #262762;
}


#UrlapError:empty { 
 display:none;
}

#UrlapError {
 color:red;	
 text-align:center;
 padding:3px;
 margin:3px;
 background:#fff;
}

