.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

.w-checkbox {
  display: block;
  margin-bottom: 5px;
  padding-left: 20px;
}

.w-checkbox:before {
  content: ' ';
  display: table;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
}

.w-checkbox:after {
  content: ' ';
  display: table;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  clear: both;
}

.w-checkbox-input {
  float: left;
  margin-bottom: 0px;
  margin-left: -20px;
  margin-right: 0px;
  margin-top: 4px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-color: #ccc;
  border-bottom-color: #ccc;
  border-left-color: #ccc;
  border-right-color: #ccc;
  border-top-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-right-style: solid;
  width: 12px;
  height: 12px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  border-top-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  border-right-color: #3898ec;
  background-image: url('../images/custom-checkbox-check.svg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0px 0px 3px 1px #3898ec;
}

.w-form-formrecaptcha {
  margin-bottom: 8px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 7vh;
  line-height: 7vh;
  font-weight: 500;
}

h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 38px;
  line-height: 48px;
  font-weight: 700;
}

h3 {
  margin-top: 10px;
  margin-bottom: 25px;
  color: #6b6b6b;
  font-size: 24px;
  line-height: 40px;
  font-weight: 400;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

p {
  margin-bottom: 10px;
  color: #6b6b6b;
  font-size: 16px;
  line-height: 30px;
}

a {
  color: #000;
  text-decoration: underline;
}

.section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.section.center {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  padding-top: 0vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #137db1;
  background-image: linear-gradient(135deg, #137db1, #000);
}

.section.wide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  padding-top: 10vh;
  padding-bottom: 10vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #1b1b1b;
}

.section.wide.img {
  padding-bottom: 0vh;
  background-color: #333;
}

.section.wide.purple {
  padding-top: 15vh;
  padding-bottom: 15vh;
  background-image: linear-gradient(135deg, #137db1, #333);
}

.section.margindown {
  margin-top: 40px;
}

.hero {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 999999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  padding: 0px 10vw;
  border: 1px none #000;
  background-color: transparent;
}

.nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
}

.nav-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 80vw;
  padding-top: 0px;
  padding-bottom: 0px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px none hsla(0, 0%, 100%, 0.1);
}

.body {
  background-color: transparent;
  font-family: 'Gothic A1';
}

.feature-content {
  width: 50vw;
  max-width: 700px;
  padding-right: 4vw;
  padding-left: 4vw;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border: 1px none #000;
}

.feature-content.icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 25%;
  max-width: none;
  padding-right: 0vw;
  padding-left: 0vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  text-align: center;
}

.button {
  padding: 20px 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 3px;
  background-color: #137db1;
  -webkit-transition: background-color 500ms cubic-bezier(.789, .159, .25, 1), color 200ms cubic-bezier(.789, .159, .25, 1);
  transition: background-color 500ms cubic-bezier(.789, .159, .25, 1), color 200ms cubic-bezier(.789, .159, .25, 1);
  font-family: Roboto, sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: 900;
  text-align: center;
}

.button:hover {
  background-color: #fff;
  color: #6b6b6b;
}

.button.f2 {
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
}

.button.f2.f3 {
  position: relative;
  display: block;
  width: 200px;
  height: 60px;
}

.button.ff {
  position: relative;
  z-index: 1;
  display: block;
  width: 20vh;
  height: 6vh;
  margin-right: auto;
  margin-left: auto;
  clear: none;
  background-color: #333;
}

.button.ff:hover {
  background-color: #137db1;
  color: #fff;
}

.button.ff.w--current {
  height: 6vh;
  margin-top: -44px;
}

.paragraph {
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 28px;
}

.paragraph.feher {
  font-family: Roboto, sans-serif;
  color: #fff;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
}

.wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  max-width: 1200px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.wrap {
  max-width: 700px;
  padding-top: 20px;
  padding-bottom: 40px;
  text-align: center;
}

.wrap.lok {
  margin-top: 40px;
}

.title {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px none #2e2e2e;
  font-family: Roboto, sans-serif;
  color: #333;
  font-size: 24px;
  font-weight: 900;
  text-align: left;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.title.feher {
  color: #fff;
  font-size: 24px;
}

.title.kozepre {
  display: block;
  padding-top: 10px;
  text-align: center;
}

.image-2 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.nav-link {
  margin-right: 15px;
  margin-bottom: 20px;
  margin-left: 15px;
  padding-top: 40px;
  padding-right: 0px;
  padding-left: 0px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.nav-link:hover {
  box-shadow: inset 0 -5px 0 0 #137db1;
  color: #fff;
}

.hero-image {
  position: absolute;
  right: 0vw;
  bottom: 0px;
  height: 60vh;
}

.black-text {
  font-family: Roboto, sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 900;
}

.black-text.margindwn {
  margin-bottom: 20px;
  text-transform: uppercase;
}

.black-text.margindwn.bigg {
  font-size: 20px;
  line-height: 28px;
}

.hero-content {
  position: relative;
  z-index: 90;
  width: 100%;
  padding-right: 10vh;
  padding-left: 10vw;
}

.feature-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 90vw;
  margin-top: 10vh;
  margin-bottom: 10vh;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  border: 1px none #000;
}

.feature-wrap.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.feature-wrap.icons {
  padding-right: 0vw;
  padding-left: 0vw;
  text-decoration: none;
}

.feature-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px none #000;
}

.feature-image.shrink {
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.black {
  font-family: Roboto, sans-serif;
  color: #333;
  font-weight: 900;
}

.black.bold-text {
  font-size: 38px;
  text-align: center;
}

.black.bold-text.szak {
  padding-right: 0vw;
  line-height: 6vh;
}

.hero-subhead {
  max-width: 45%;
  margin-top: 20px;
  font-family: Roboto, sans-serif;
  color: #fff;
  font-size: 30px;
  line-height: 44px;
  font-weight: 400;
}

.bottom-image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: auto;
  max-width: 100%;
  min-height: 400px;
  margin-top: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url('../images/tanyer-m.jpg');
  background-position: 50% 100%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.feature-icon {
  margin-bottom: 30px;
}

.purple {
  color: #b32e6e;
}

.footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #1b1b1b;
}

.footer-link {
  margin-right: 15px;
  margin-left: 15px;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}

.footer-link:hover {
  color: #c7c7c7;
}

.footer-list {
  padding-top: 29px;
  padding-bottom: 29px;
  font-family: Roboto, sans-serif;
  color: #fff;
}

.arrow {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 30px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.nav-logo-wrap {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.nav-menu-2 {
  font-family: Roboto, sans-serif;
}

.form-block {
  margin-top: 30px;
  font-family: Roboto, sans-serif;
  color: #fff;
}

.image-5 {
  border-radius: 3px;
  background-color: transparent;
}

.grid-2 {
  -ms-grid-row-align: auto;
  align-self: auto;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  grid-auto-flow: row;
  grid-auto-columns: minmax(150px, 1fr);
  grid-auto-rows: minmax(150px, 1fr);
  grid-template-columns: repeat(auto-fit, minmax(150px, 15px));
  grid-template-rows: repeat(auto-fit, minmax(150px, auto));
}

.grid-2.logos {
  position: static;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  grid-auto-flow: row;
  grid-template-columns: repeat(auto-fit, minmax(150px, 200px));
  grid-template-rows: repeat(auto-fit, minmax(150px, 200px));
}

.feature-wrap-logo {
  display: block;
  width: 90vw;
  margin-top: 10vh;
  margin-bottom: 10vh;
  padding-right: 15vh;
  padding-left: 15vh;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  border: 1px none #000;
}

.bold-text {
  padding-right: 10vw;
  font-family: Roboto, sans-serif;
  font-size: 8vh;
  line-height: 8vh;
}

.paragraph-2 {
  padding-left: 0px;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
}

.paragraph-2.big {
  padding-left: 20px;
  font-size: 24px;
}

.paragraph-2.big.folyo {
  padding-left: 0px;
  color: #333;
}

.heading-5 {
  font-family: Roboto, sans-serif;
}

.ctasav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 40px;
  padding-bottom: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #333;
}

.text-field {
  border-radius: 3px;
  color: #333;
  font-size: 16px;
}

.text-field.field {
  height: 5vh;
  margin-top: 10px;
  margin-bottom: 20px;
}

.text-field-2 {
  border-radius: 3px;
  color: #333;
  font-size: 16px;
}

.text-field-2.field {
  height: 5vh;
  margin-top: 10px;
  margin-bottom: 20px;
}

.field-label {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}

.field-label-2 {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}

.checkbox-label {
  text-align: left;
}

.checkbox-label.inlink {
  font-weight: 400;
}

.checkbox-field {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  text-align: left;
}

.recaptcha {
  margin-right: auto;
  margin-left: auto;
}

.link-3 {
  color: #fff;
  font-weight: 900;
}

.link-3:hover {
  color: #c7c7c7;
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.utility-page-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.bottom-image-wrap-sza {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: auto;
  max-width: 100%;
  min-height: 350px;
  margin-top: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url('../images/pincer-m.jpg');
  background-position: 50% 100%;
  background-size: auto;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.text-field-3 {
  border-radius: 3px;
  color: #333;
  font-size: 16px;
}

.text-field-3.field {
  height: 5vh;
  margin-top: 10px;
}

.image-7 {
  width: 100px;
}

.image-8 {
  width: 100px;
}

.image-9 {
  width: 100px;
}

.image-10 {
  width: 100px;
}

.b2 {
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 20px 30px;
  border-radius: 3px;
  background-color: #333;
  font-size: 16px;
}

.b2:hover {
  background-color: #137db1;
  color: #fff;
}

.div-block-13 {
  text-decoration: underline;
}

.nocsik {
  background-color: transparent;
  text-decoration: none;
}

.nocsik:hover {
  background-color: transparent;
  text-decoration: none;
}

.nocsik:active {
  text-decoration: none;
}

.nocsik:focus {
  text-decoration: none;
}

.nocsik:visited {
  text-decoration: none;
}

@media (max-width: 991px) {
  h2 {
    font-size: 34px;
    line-height: 44px;
  }
  h3 {
    font-size: 20px;
    line-height: 32px;
  }
  .section.center {
    height: auto;
    padding-top: 15vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .section.margindown {
    margin-top: 40px;
  }
  .hero {
    padding-right: 0vw;
    padding-left: 0vw;
  }
  .nav {
    width: 100vw;
  }
  .nav-inner {
    width: 100vw;
  }
  .button.f2.f3 {
    height: 65px;
  }
  .button.ff {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .paragraph.feher {
    font-size: 22px;
    line-height: 34px;
  }
  .wrap {
    display: block;
    width: 100%;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
  }
  .nav-link {
    padding-top: 20px;
  }
  .nav-link:hover {
    box-shadow: none;
  }
  .hero-image {
    position: relative;
    left: 0vw;
    top: auto;
    right: 0vw;
    bottom: 0px;
    display: block;
    width: 70%;
    height: auto;
    margin-right: 0px;
    margin-bottom: 7vw;
    margin-left: auto;
  }
  .black-text.margindwn.bigg {
    font-size: 16px;
    line-height: 20px;
  }
  .hero-content {
    padding-right: 5vw;
    padding-left: 5vw;
  }
  .feature-wrap.reverse {
    margin-top: 5vh;
    margin-bottom: 5vh;
  }
  .feature-image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .black {
    font-size: 30px;
  }
  .black.bold-text.szak {
    font-size: 30px;
    line-height: 5vh;
  }
  .hero-subhead {
    max-width: 100%;
    font-size: 24px;
    line-height: 31px;
  }
  .bottom-image-wrap {
    height: auto;
    min-height: 250px;
    margin-top: 40px;
    background-image: url('../images/tanyer-m.jpg');
    background-position: 50% 100%;
    background-size: cover;
  }
  .feature-icon {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .menu-icon {
    color: #fff;
    font-size: 40px;
  }
  .menu-button.w--open {
    background-color: #000;
  }
  .nav-menu-2 {
    min-width: 240px;
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
    background-color: #000;
  }
  .brand {
    padding-left: 18px;
  }
  .heading-3 {
    font-size: 7vw;
    line-height: 8vh;
  }
  .form-block {
    display: block;
    width: auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .feature-wrap-logo {
    position: static;
    display: block;
    margin: 5vh auto;
    padding-right: 0vh;
    padding-left: 0vh;
  }
  .bold-text {
    max-width: 100%;
    padding-right: 0vw;
    font-size: 6vh;
  }
  .paragraph-2 {
    font-size: 16px;
    line-height: 35px;
  }
  .paragraph-2.big {
    font-size: 16px;
  }
  .heading-5 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .form-block-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .bottom-image-wrap-sza {
    height: auto;
    min-height: 250px;
    margin-top: 40px;
    background-image: url('../images/pincer-m.jpg');
    background-position: 50% 100%;
    background-size: contain;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 20px;
    line-height: 38px;
  }
  .section.margindown {
    margin-top: 40px;
  }
  .feature-content {
    width: 100%;
    max-width: 100%;
    padding-right: 0vw;
    padding-left: 0vw;
  }
  .feature-content.icons {
    width: auto;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
  }
  .button.ff {
    width: 30vw;
  }
  .wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: none;
    padding-right: 15vw;
    padding-left: 15vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .hero-image {
    margin-bottom: 10vw;
  }
  .black-text.margindwn.bigg {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
  }
  .hero-content {
    margin-bottom: 5vh;
  }
  .feature-wrap {
    padding-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .feature-wrap.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .feature-wrap.icons {
    display: block;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .feature-image {
    width: 100%;
  }
  .hero-subhead {
    max-width: 100%;
    font-size: 20px;
  }
  .bottom-image-wrap {
    background-size: cover;
  }
  .footer-link {
    display: inline-block;
    margin-bottom: 10px;
  }
  .menu-icon {
    font-size: 30px;
  }
  .form-block {
    width: 100%;
  }
  .grid-2.logos {
    grid-auto-columns: minmax(100px, 1fr);
    grid-auto-rows: minmax(100px, 1fr);
    grid-template-columns: repeat(auto-fit, minmax(150px, 150px));
    grid-template-rows: repeat(auto-fit, minmax(150px, 150px));
  }
  .feature-wrap-logo {
    padding-right: 0vw;
    padding-left: 0vw;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
  }
  .bold-text {
    max-width: 100%;
    padding-right: 0vw;
    font-size: 6vh;
    line-height: 4vh;
    font-weight: 900;
  }
  .bottom-image-wrap-sza {
    min-height: 200px;
    background-size: contain;
  }
  .image-7 {
    margin-bottom: -25px;
  }
  .image-8 {
    margin-bottom: -25px;
  }
  .image-9 {
    margin-bottom: -25px;
  }
  .image-10 {
    margin-bottom: -25px;
  }
}

@media (max-width: 479px) {
  h1 {
    font-size: 60px;
    line-height: 70px;
  }
  h3 {
    font-size: 16px;
  }
  .section.center {
    padding-bottom: 10vh;
  }
  .section.margindown {
    margin-top: 40px;
  }
  .hero {
    padding-right: 0vw;
    padding-left: 0vw;
  }
  .nav-inner {
    width: 100vw;
  }
  .feature-content {
    width: auto;
  }
  .feature-content.icons {
    padding-bottom: 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .button.ff {
    width: 50vw;
    margin-top: 20px;
  }
  .paragraph.feher {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 16px;
    line-height: 28px;
  }
  .wrap {
    padding-right: 0vw;
    padding-left: 0vw;
  }
  .image-2 {
    width: 100%;
  }
  .hero-image {
    width: 80%;
  }
  .black-text.margindwn.bigg {
    text-align: center;
  }
  .feature-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .feature-wrap.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .feature-image {
    width: auto;
    margin-top: 0px;
    margin-bottom: 30px;
  }
  .black {
    font-size: 24px;
  }
  .black.bold-text.szak {
    font-size: 24px;
    line-height: 3vh;
  }
  .hero-subhead {
    font-size: 18px;
    line-height: 30px;
  }
  .bottom-image-wrap {
    background-size: auto 75%;
  }
  .feature-icon {
    margin-bottom: 35px;
  }
  .menu-button.w--open {
    background-color: #137db1;
  }
  .nav-menu-2 {
    background-color: #333;
  }
  .heading-3 {
    font-size: 42px;
    line-height: 56px;
  }
  .form-block {
    width: 95%;
    margin-right: 10px;
    margin-left: 10px;
  }
  .grid-2.logos {
    justify-items: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    grid-template-columns: repeat(auto-fit, minmax(100px, 125px));
    grid-template-rows: repeat(auto-fit, minmax(100px, 125px));
  }
  .feature-wrap-logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .bold-text {
    font-size: 4vh;
  }
  .checkbox-field {
    margin-right: 10px;
    margin-left: 10px;
  }
  .bottom-image-wrap-sza {
    background-size: auto 120px;
  }
}

