/*
	main colors
*/
/*
	custom fonts
*/
@font-face {
  font-family: "DINPro-Light";
  src: url("/fonts/DINPro-Light.ttf") format("truetype");
}

@font-face {
  font-family: "DINPro-Regular";
  src: url("/fonts/DINPro-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "DINPro-Medium";
  src: url("/fonts/DINPro-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "DINPro-Bold";
  src: url("/fonts/DINPro-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "DINPro-Black";
  src: url("/fonts/DINPro-Black.ttf") format("truetype");
}

@font-face {
  font-family: "CenturyGothic";
  src: url("/fonts/cg.ttf") format("truetype");
}

/*
	mixins

	border-radius
	use - - - > .class { @include border-radius(2px); }
	box-shadow
*/
/*
 * Apply a CSS3 transition
 *
 * $property The property you want to animate, eg opacity
 * $duration The duration of the animation, eg 1s
 * $ms Include -ms-transition; default is false because IE does not support transitionEnd callback
 *
 * @include transition(opacity, 0.5s);
 */
/*
 * Apply a CSS3 transition-delay
 * @include transitionDelay(2s);
 */
/*
 * Apply a CSS3 transition-duration
 * @include transitionDuration(1s);
 */
/*
 * Apply a CSS3 transition-property
 * @include transitionProperty(opacity);
 * @include transitionProperty((height, width)); Multiple properties can be passed in surrounded by brackets
 */
/*
 * Apply a CSS3 transition-timing-function
 * @include transitionTimingFunction(easing);
 */
/*
    css animations
*/
/*
    keyframe animations
*/
/*
    header
*/
@keyframes headerAnimation {
  from {
    right: -120px;
    filter: alpha(opacity=0);
    opacity: .0;
  }
  to {
    right: 0;
    filter: alpha(opacity=100);
    opacity: 1.0;
  }
}

@-webkit-keyframes headerAnimation {
  from {
    right: -120px;
    filter: alpha(opacity=0);
    opacity: 0;
  }
  to {
    right: 0;
    filter: alpha(opacity=100);
    opacity: 1.0;
  }
}

/*
    blocks
*/
@keyframes homeBlockAnimation {
  from {
    margin-top: -20px;
    filter: alpha(opacity=0);
    opacity: .0;
  }
  to {
    margin-top: 0;
    filter: alpha(opacity=100);
    opacity: 1.0;
  }
}

@-webkit-keyframes homeBlockAnimation {
  from {
    margin-top: -20px;
    filter: alpha(opacity=0);
    opacity: 0;
  }
  to {
    margin-top: 0;
    filter: alpha(opacity=100);
    opacity: 1.0;
  }
}

/*
    instafeed
*/
@keyframes instaBlockAnimation {
  from {
    margin-top: -10px;
    filter: alpha(opacity=0);
    opacity: .0;
  }
  to {
    margin-top: 0;
    filter: alpha(opacity=100);
    opacity: 1.0;
  }
}

@-webkit-keyframes instaBlockAnimation {
  from {
    margin-top: -10px;
    filter: alpha(opacity=0);
    opacity: 0;
  }
  to {
    margin-top: 0;
    filter: alpha(opacity=100);
    opacity: 1.0;
  }
}

/*
    product boxes
*/
@keyframes productBlockAnimation {
  from {
    filter: alpha(opacity=0);
    opacity: 0;
    -ms-transform: scale(0.7);
    /* IE 9 */
    -webkit-transform: scale(0.7);
    /* Safari */
    transform: scale(0.7);
  }
  to {
    filter: alpha(opacity=100);
    opacity: 1.0;
    -ms-transform: scale(1);
    /* IE 9 */
    -webkit-transform: scale(1);
    /* Safari */
    transform: scale(1);
  }
}

@-webkit-keyframes productBlockAnimation {
  from {
    filter: alpha(opacity=0);
    opacity: 0;
    -ms-transform: scale(0.7);
    /* IE 9 */
    -webkit-transform: scale(0.7);
    /* Safari */
    transform: scale(0.7);
  }
  to {
    filter: alpha(opacity=100);
    opacity: 1.0;
    -ms-transform: scale(1);
    /* IE 9 */
    -webkit-transform: scale(1);
    /* Safari */
    transform: scale(1);
  }
}

/*
    global
*/
body {
  font-family: DINPro-Regular, Helvetica;
  color: #111;
  background: #fbfbfb;
}

body button {
  border: none;
  outline: none;
  cursor: pointer;
}

body .btn {
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}

body .btn.btn-modal-trigger {
  padding: 8px 12px;
  font-size: 16px;
  margin-top: 20px;
  outline: none !important;
  border: none;
}

body .btn.btn-modal-trigger:hover, body .btn.btn-modal-trigger:focus {
  border: none;
}

body .btn.btn-modal-trigger:focus {
  background: #377bb5;
}

/* select */
::selection {
  color: #ffffff;
  background: #e55525;
}

::-moz-selection {
  color: #ffffff;
  background: #e55525;
}

img::selection {
  background: transparent;
}

img::-moz-selection {
  background: transparent;
}

/* hide webkit video buttons */
*::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}

*::--webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none;
}

*::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

ul {
  list-style: square outside;
  margin-left: 5px;
  padding-left: 20px;
}

ul.sitemap_ul {
  font-size: 15px;
  line-height: 28px;
}

h1 {
  color: #377bb5;
  margin: 0 0 15px 0;
  font-size: 26px;
  font-family: DINPro-Bold, Helvetica;
}

h2 {
  color: #377bb5;
  margin: 0 0 30px 0;
  font-size: 23px;
}

input, textarea {
  -webkit-appearance: none;
}

input[type="text"], input[type="password"] {
  border: 1px solid #ccc;
  background: #f6f6f6;
  font-family: DINPro-Regular, Helvetica;
  font-size: 14px;
  height: 28px;
  line-height: 28px;
  margin: 5px 0 10px 0;
  padding: 1px 0 0 6px;
  width: 300px;
  outline: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

input[type="text"]:focus {
  box-shadow: 0px 0px 5px #ccc;
  -webkit-box-shadow: 0px 0px 5px #ccc;
  -moz-box-shadow: 0px 0px 5px #ccc;
  border: 1px solid #ccc;
  background: #ffffff;
}

textarea {
  border: 1px solid #ccc;
  background: #f6f6f6;
  font-family: DINPro-Regular, Helvetica;
  font-size: 14px;
  width: 280px;
  height: 175px;
  margin: 5px 0 10px 0;
  padding: 5px 0 0 5px;
  resize: none;
  outline: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  resize: vertical;
}

textarea:focus {
  box-shadow: 0px 0px 5px #ccc;
  -webkit-box-shadow: 0px 0px 5px #ccc;
  -moz-box-shadow: 0px 0px 5px #ccc;
  border: 1px solid #ccc;
  background: #ffffff;
}

blockquote {
  border: none;
  font-size: 15px;
  margin-bottom: 10px;
}

/*
    debug
*/
.debug {
  display: block;
  width: 170px;
  height: 60px;
  position: fixed;
  right: 15px;
  top: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: solid 1px #ddd;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  color: #111;
  font-size: 13px;
  z-index: 555555555;
}

/*
    preloader
*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fefefe;
  z-index: 999999;
  height: 100%;
}

#status {
  left: 50%;
  margin: -18px 0 0 -71px;
  position: fixed;
  top: 50%;
  width: 142px;
  height: 35px;
  background: url(../images/kavLogo.svg) no-repeat 0 0;
  background-size: 142px 35px;
}

/*
    menu
*/
.navbar-nav {
  margin-right: 46px;
}

.fluid-nav {
  padding: 0;
}

.navbar .navbar-nav > li > a {
  color: #333e48;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.navbar .navbar-nav > li > a:hover {
  color: #e55525;
}

.navbar {
  background: rgba(255, 255, 255, 0.96);
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 14px;
}

.navbar .navbar-header {
  width: 100%;
}

.navbar .navbar-header .navbar-brand {
  width: 162px;
  height: 40px;
  display: block;
  background: url(../images/kavLogo.svg) no-repeat 0 0;
  background-size: 162px 40px;
  text-indent: -9999px;
  margin: 4px 0 0 15px;
  position: absolute;
}

.page-tabs-wrap {
  width: 75%;
  margin: auto;
}

.nav-tabs {
  display: inline-block;
  border-bottom: none;
  text-transform: none;
}

.nav-tabs.page-tabs {
  float: left;
  width: 100%;
  border-bottom: 1px solid #eee;
  margin-left: 0;
}

.nav-tabs.page-tabs li > a {
  font-size: 16px;
}

.nav-tabs.page-tabs li > a, .nav-tabs.page-tabs li > a:hover, .nav-tabs.page-tabs li > a:focus {
  border: none;
  padding: 4px 20px;
  margin-bottom: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  background: none;
  margin-bottom: 0;
}

.nav-tabs.page-tabs li.active > a, .nav-tabs.page-tabs li.active > a:hover {
  padding: 4px 20px !important;
  border-bottom: 2px solid #e55525 !important;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  margin-bottom: 0 !important;
}

.nav-tabs > li > a,
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus,
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  border: none;
  padding: 4px 8px;
  margin-bottom: 8px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.tab-content-page {
  text-align: left;
}

.tab-content-page h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.tab-content-page img {
  display: block;
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}

.tab-content-page p {
  width: 100%;
}

.nav-list > li {
  padding: 20px 15px 15px;
  border-left: 1px solid #ddd;
}

.nav-list > li:last-child {
  border-right: 1px solid #ddd;
}

.nav-list > li > a:hover {
  text-decoration: none;
  color: #e55525;
}

.nav-list > li > a > span {
  display: block;
  text-transform: uppercase;
}

.mega-dropdown {
  position: static !important;
}

.mega-dropdown-menu {
  padding: 7px 15px 10px 15px;
  text-align: center;
  width: 100%;
  top: 50px;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  box-shadow: 0px 0px 0px #fff;
  -webkit-box-shadow: 0px 0px 0px #fff;
  -moz-box-shadow: 0px 0px 0px #fff;
  -o-box-shadow: 0px 0px 0px #fff;
  background: #f0f0f0;
  font-size: 13px;
  min-height: 220px;
}

.mega-dropdown-menu .list .col-xs-2 {
  border-right: 1px solid #ddd;
  padding: 0;
  padding-left: 15px;
}

.mega-dropdown-menu .list h3 {
  margin: 0;
  text-align: left;
  font-size: 16px;
}

.mega-dropdown-menu .list ul {
  float: left;
  list-style: none;
  line-height: 26px;
  margin: 10px 0;
  margin-left: 0;
  padding-left: 0;
  padding-right: 20px;
}

.mega-dropdown-menu .list ul li {
  text-align: left;
}

.opacityHigh {
  filter: alpha(opacity=100);
  opacity: 1.0;
}

.opacityLow {
  filter: alpha(opacity=60);
  opacity: 0.6;
}

.mega-dropdown-menu img {
  display: block;
  width: 150px;
  height: 114px;
  margin-bottom: 8px;
  border-bottom: solid 2px #f0f0f0;
  filter: alpha(opacity=100);
  opacity: 1.0;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.mega-dropdown-menu a:hover img {
  filter: alpha(opacity=90);
  opacity: 0.9;
  border-bottom-color: #e55525;
}

.nav li a.markedMenuItem {
  background: #e55525;
  color: #fff;
}

.nav-list > li {
  padding-top: 0;
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > a:hover, .navbar-default .navbar-nav > li > a:hover {
  background: #f0f0f0;
}

.justOnSmallDisplay {
  display: none !important;
}

/*
    search
*/
.searchTrigger {
  display: block;
  margin: 0;
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: white;
  position: absolute;
  right: 10px;
  top: 12px;
  font-size: 16px;
  opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  color: #333e48;
}

.searchTrigger:hover {
  opacity: 1.0;
  filter: alpha(opacity=100);
}

.searchTriggerMobile {
  display: none;
  margin: 0;
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: white;
  position: absolute;
  right: 70px;
  top: 10px;
  font-size: 16px;
  color: #333e48;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.searchTriggerMobile:hover {
  color: #e55525;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  margin-left: 0;
  position: fixed;
  z-index: 9999;
}

.searchFormWrap {
  width: 400px;
  height: 50px;
  left: 50%;
  top: 25%;
  margin-left: -200px;
  position: fixed;
  z-index: 10000;
}

.searchFormWrap .closeBtn {
  text-shadow: none;
  color: #ffffff;
  font-size: 12px;
  background: none;
  z-index: 10000;
  filter: alpha(opacity=70);
  opacity: .7;
  position: relative;
  right: -2px;
  top: -4px;
  display: block;
  width: 70px;
  height: 20px;
  float: right;
  text-align: right;
}

.searchFormWrap .closeBtn:hover {
  filter: alpha(opacity=90);
  opacity: .9;
}

.searchFormWrap form input[type="text"] {
  border: none;
  background: #ffffff;
  font-family: DINPro-Regular, Helvetica;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  padding: 1px 0 0 10px;
  width: 100%;
  outline: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  box-shadow: 0px 1px 3px #000;
  -webkit-box-shadow: 0px 1px 3px #000;
  -moz-box-shadow: 0px 1px 3px #000;
  -o-box-shadow: 0px 1px 3px #000;
  position: relative;
  z-index: 10001;
  font-style: italic;
}

.searchFormWrap form .searchBtn {
  border: none;
  background: none;
  outline: none;
  position: relative;
  z-index: 10002;
  width: 34px;
  height: 34px;
  right: 3px;
  top: -46px;
  display: block;
  float: right;
}

/*
    header
*/
.topLayer {
  z-index: 10;
  position: relative;
}

.hero-spacer {
  position: relative;
  color: #ffffff;
  width: 100%;
  height: 600px;
  z-index: 5;
  margin-bottom: 0;
}

.hero-spacer.bg_1 {
  background: url(../images/home/header_1.jpg) no-repeat center top;
  background: -webkit-image-set(url(../images/home/header_1.jpg) 1x, url(../images/home/header_1@2x.jpg) 2x) no-repeat center top;
  background-size: cover;
}

.hero-spacer.bg_2 {
  background: url(../images/home/header_2.jpg) no-repeat center top;
  background: -webkit-image-set(url(../images/home/header_2.jpg) 1x, url(../images/home/header_2@2x.jpg) 2x) no-repeat center top;
  background-size: cover;
}

.hero-spacer.bg_3 {
  background: url(../images/home/header_3.jpg) no-repeat center top;
  background: -webkit-image-set(url(../images/home/header_3.jpg) 1x, url(../images/home/header_3@2x.jpg) 2x) no-repeat center top;
  background-size: cover;
}

.hero-spacer.bg_4 {
  background: url(../images/home/header_4.jpg) no-repeat center top;
  background: -webkit-image-set(url(../images/home/header_4.jpg) 1x, url(../images/home/header_4@2x.jpg) 2x) no-repeat center top;
  background-size: cover;
}

.hero-spacer.bg_5 {
  background: url(../images/home/header_5.jpg) no-repeat center top;
  background: -webkit-image-set(url(../images/home/header_5.jpg) 1x, url(../images/home/header_5@2x.jpg) 2x) no-repeat center top;
  background-size: cover;
}

.hero-spacer.bg_6 {
  background: url(../images/home/header_6.jpg) no-repeat center top;
  background: -webkit-image-set(url(../images/home/header_6.jpg) 1x, url(../images/home/header_6@2x.jpg) 2x) no-repeat center top;
  background-size: cover;
}

.hero-spacer.bg_7 {
  background: url(../images/home/header_7.jpg) no-repeat center top;
  background: -webkit-image-set(url(../images/home/header_7.jpg) 1x, url(../images/home/header_7@2x.jpg) 2x) no-repeat center top;
  background-size: cover;
}

.hero-spacer.bisnodeHeader {
  background: #b3d12c;
  height: 300px;
  margin: 0 0 50px 0;
}

.hero-spacer.bisnodeHeader p {
  font-family: DINPro-Black, Helvetica;
  font-size: 40px;
  text-transform: uppercase;
  margin: 60px 0 0 0;
  text-align: center;
  color: #111;
}

.hero-spacer.bisnodeHeader p span {
  display: inline-block;
  background: #111;
  color: #ffffff;
  padding: 4px 15px;
  font-family: DINPro-Bold, Helvetica;
}

.hero-spacer.bisnode {
  background: url(../images/content/bisnode.jpg) no-repeat center center;
  background-size: cover;
  height: 300px;
  margin: 30px 0 50px 0;
}

.hero-spacer.workflow {
  background: url(../images/home/workflow.jpg) no-repeat center top;
  background: -webkit-image-set(url(../images/home/workflow.jpg) 1x, url(../images/home/workflow@2x.jpg) 2x) no-repeat center top;
  background-size: cover;
  height: 460px;
  padding: 30px 0;
  text-align: center;
}

.hero-spacer.workflow .handdraw {
  width: 1100px;
  height: 78px;
  background: url(../images/home/workflow_handdraw.png) no-repeat center center;
  background: -webkit-image-set(url(../images/home/workflow_handdraw.png) 1x, url(../images/home/workflow_handdraw@2x.png) 2x) no-repeat center center;
  background-size: 1100px 78px;
  margin: 30px auto;
}

.hero-spacer.workflow .hero-spacerContent {
  padding-top: 25px;
}

.hero-spacer.workflow .hero-spacerContent h1 {
  margin: 0 0 30px 0;
}

.hero-spacer.workflow .hero-spacerContent .btn.btn-large {
  font-size: 18px;
}

.hero-spacer.landingPageHeader {
  height: 712px;
  margin-bottom: 40px;
}

.hero-spacer.landingPageHeader.toloajtok {
  background: url(../images/landing_page/aluminium_toloajtok/header.jpg) no-repeat center center;
  background: -webkit-image-set(url(../images/landing_page/aluminium_toloajtok/header.jpg) 1x, url(../images/landing_page/aluminium_toloajtok/header@2x.jpg) 2x) no-repeat center center;
  background-size: cover;
}

.hero-spacer.landingPageHeader .productMenuBoxes {
  background: rgba(53, 66, 80, 0.9);
  height: 180px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.hero-spacer.landingPageHeader .productMenuBoxes .aluminium_toloajtok {
  width: 1px;
  height: 1px;
  background: none;
  position: absolute;
  left: 0;
  top: -45px;
}

.hero-spacer.landingPageHeader h1 {
  text-transform: uppercase;
  color: #f76335;
  font-size: 36px;
  margin-top: 40px;
  margin-bottom: 15px;
  margin-left: 30px;
}

.hero-spacer.landingPageHeader p {
  border-top: solid 1px #ffffff;
  font-size: 14px;
  font-family: DINPro-Light, Helvetica;
  text-transform: uppercase;
  padding-top: 15px;
  display: inline-block;
  margin-left: 30px;
}

.hero-spacer.landingPageHeader .btn_1, .hero-spacer.landingPageHeader .btn_2, .hero-spacer.landingPageHeader .btn_3, .hero-spacer.landingPageHeader .btn_4 {
  display: block;
  float: right;
  width: 21%;
  margin: 18px 2%;
  height: 200px;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.hero-spacer.landingPageHeader .btn_1 img, .hero-spacer.landingPageHeader .btn_2 img, .hero-spacer.landingPageHeader .btn_3 img, .hero-spacer.landingPageHeader .btn_4 img {
  margin-bottom: 5px;
  filter: alpha(opacity=90);
  opacity: 0.9;
  width: 160px;
}

.hero-spacer.landingPageHeader .btn_1 img.img-responsive, .hero-spacer.landingPageHeader .btn_2 img.img-responsive, .hero-spacer.landingPageHeader .btn_3 img.img-responsive, .hero-spacer.landingPageHeader .btn_4 img.img-responsive {
  max-width: 160px !important;
}

.hero-spacer.landingPageHeader .btn_1:hover, .hero-spacer.landingPageHeader .btn_2:hover, .hero-spacer.landingPageHeader .btn_3:hover, .hero-spacer.landingPageHeader .btn_4:hover {
  text-decoration: none;
  color: #f76335;
}

.hero-spacer.landingPageHeader .btn_1:hover img, .hero-spacer.landingPageHeader .btn_2:hover img, .hero-spacer.landingPageHeader .btn_3:hover img, .hero-spacer.landingPageHeader .btn_4:hover img {
  margin-bottom: 5px;
  filter: alpha(opacity=100);
  opacity: 1.0;
}

.hero-spacer.map {
  height: 440px;
  background: none;
  padding-top: 0;
  margin-bottom: 80px;
  position: relative;
}

.hero-spacer.map .mapOverlay {
  background: transparent;
  position: absolute;
  width: 100%;
  height: 440px;
  top: 0;
  left: 0;
}

.hero-spacer.map .iframeMap {
  width: 100%;
  height: 420px;
}

.hero-spacer.map .mapContent {
  width: 440px;
  height: 120px;
  padding: 20px 30px;
  position: absolute;
  left: 50%;
  margin-left: -220px;
  bottom: 10px;
  background: #fbfbfb;
  box-shadow: 0px -2px 3px rgba(0, 0, 0, 0.1);
}

.hero-spacer.map .mapContent h2 {
  margin-bottom: 10px;
  font-family: DINPro-Bold, Helvetica;
}

.hero-spacer.map .mapContent p {
  font-size: 14px;
  color: #111;
  line-height: 22px;
}

.hero-spacer.map .mapContent p span {
  color: #999;
}

.hero-spacer.map .mapContent .img-circle {
  border: solid 1px #eee;
  display: inline-block;
  float: left;
  margin-right: 30px;
  width: 100px;
  height: 100px;
}

.hero-spacer .hero-spacerContent {
  width: 1140px;
  padding: 150px 0 0 0;
  margin: auto;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-spacer .hero-spacerContent h1 {
  font-family: DINPro-Bold, Helvetica;
  color: #e55525;
  margin: 0 0 20px 0;
  font-size: 38px;
  line-height: 50px;
  text-transform: uppercase;
}

.hero-spacer .hero-spacerContent p.text {
  width: 70%;
  margin: auto;
  margin-bottom: 30px;
}

.hero-spacer .hero-spacerContent .btn {
  padding: 15px 25px;
}

.hero-spacer.hero-spacer-header.start .hero-spacerContent h1, .hero-spacer.hero-spacer-header.start .hero-spacerContent p, .hero-spacer.hero-spacer-header.start .hero-spacerContent .btn {
  position: relative;
  filter: alpha(opacity=0);
  opacity: 0;
  right: -120px;
  animation-name: headerAnimation;
  animation-duration: 0.4s;
  animation-delay: 0.6s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  -webkit-animation-name: headerAnimation;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-delay: 0.6s;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
}

.hero-spacer.hero-spacer-header.start .hero-spacerContent p {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
}

.hero-spacer.hero-spacer-header.start .hero-spacerContent .btn {
  animation-delay: 1.0s;
  -webkit-animation-delay: 1.0s;
}

.hero-spacer.hero-spacer-header .hero-spacerContent p.text {
  margin-left: 0;
}

.hero-feature {
  margin-bottom: 30px;
}

.home {
  padding-top: 30px;
}

.landingpage h2 {
  font-size: 32px;
}

.landingpage p {
  font-size: 18px;
  text-align: justify;
}

.landingpage .features {
  background: #ffffff;
  height: auto;
  margin: 30px 0 0 0;
  box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.06);
  -o-box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.06);
  padding: 20px 0;
}

.landingpage .features h2 {
  font-size: 22px;
  text-align: center;
}

.landingpage .features .featureBlock {
  width: 18%;
  margin: 0 1%;
  float: left;
  text-align: center;
}

.landingpage .features .featureBlock img {
  margin-bottom: 10px;
}

.landingpage .features .featureBlock p {
  text-align: center;
  font-size: 14px;
}

.landingpage .fullwidthBtn {
  width: 100%;
  height: 50px;
  line-height: 50px;
  display: block;
  color: #ffffff;
  background: #377bb5;
  text-align: center;
  font-size: 20px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.landingpage .fullwidthBtn.orange {
  background: #e55525;
  height: auto;
  line-height: 22px;
  padding: 12px 0;
}

.landingpage .fullwidthBtn.orange span {
  font-size: 13px;
}

.landingpage .fullwidthBtn.orange span img {
  margin-right: 10px;
}

.landingpage .fullwidthBtn:hover {
  text-decoration: none;
  background: #333e48;
}

.landingpage .factoryBlock {
  background: url(../images/landing_page/factory_bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 60px;
}

.landingpage .factoryBlock h1, .landingpage .factoryBlock p {
  text-align: center;
}

.landingpage .factoryBlock h1 {
  color: #e55525;
  text-transform: uppercase;
  margin-bottom: 35px;
  font-size: 32px;
}

.landingpage .factoryBlock p {
  display: block;
  width: 60%;
  margin: 30px auto 0 auto;
  line-height: 28px;
}

.landingpage .factoryBlock a.highslide img {
  margin: 0 0 20px 0;
}

.landingpage .factoryBlock.kavBlock {
  background: none;
}

.landingpage .factoryBlock.kavBlock p {
  width: 66%;
  position: relative;
}

.landingpage .factoryBlock.kavBlock p .quotemarkfirst {
  display: block;
  position: absolute;
  left: -50px;
  top: -10px;
  width: 54px;
  height: 35px;
  background: url(/images/landing_page/quotemarkfirst.png) no-repeat 0 0;
  background-size: 54px 35px;
}

.landingpage .factoryBlock.kavBlock p .quotemarkend {
  display: block;
  position: absolute;
  right: -50px;
  bottom: -10px;
  width: 54px;
  height: 35px;
  background: url(/images/landing_page/quotemarkend.png) no-repeat 0 0;
  background-size: 54px 35px;
}

.landingpage .referenciaKepek {
  display: block;
  width: 20%;
  height: 200px;
  float: left;
  text-indent: -9999px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.landingpage .referenciaKepek:hover {
  filter: alpha(opacity=80);
  opacity: 0.8;
}

.landingpage .referenciaKepek.kep_1 {
  background: url(/images/landing_page/ref_1.jpg) no-repeat top center;
  background-size: cover;
}

.landingpage .referenciaKepek.kep_2 {
  background: url(/images/landing_page/ref_2.jpg) no-repeat top center;
  background-size: cover;
}

.landingpage .referenciaKepek.kep_3 {
  background: url(/images/landing_page/ref_3.jpg) no-repeat top center;
  background-size: cover;
}

.landingpage .referenciaKepek.kep_4 {
  background: url(/images/landing_page/ref_4.jpg) no-repeat top center;
  background-size: cover;
}

.landingpage .referenciaKepek.kep_5 {
  background: url(/images/landing_page/ref_5.jpg) no-repeat top center;
  background-size: cover;
}

.landingpage .productMenu {
  background: #f1f1f1;
  height: auto;
}

.landingpage .productMenu .nav-list > li, .landingpage .productMenu .nav-list > li:last-child {
  border: none;
}

.landingpage .productMenu h2 {
  font-size: 22px;
  text-align: center;
  text-transform: uppercase;
  margin: 20px 0 10px 0;
}

.landingpage .productMenu ul {
  width: 80%;
  padding: 20px 0;
  margin: auto;
  text-align: center;
}

.product-teaser h1.big {
  font-size: 64px;
  font-family: DINPro-Black, Helvetica;
}

.product-teaser .productsHome {
  min-height: 564px;
}

.product-teaser .productsHome.start .col-md-4 a, .product-teaser .productsHome.start .col-sm-6 a {
  filter: alpha(opacity=0);
  opacity: 0;
  -ms-transform: scale(0.7);
  /* IE 9 */
  -webkit-transform: scale(0.7);
  /* Safari */
  transform: scale(0.7);
  animation-name: productBlockAnimation;
  animation-duration: 0.3s;
  animation-delay: 0.1s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  -webkit-animation-name: productBlockAnimation;
  -webkit-animation-duration: 0.3s;
  -webkit-animation-delay: 0.1s;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
}

.product-teaser .productsHome.start .col-md-4 a.bejaratiajto, .product-teaser .productsHome.start .col-sm-6 a.bejaratiajto {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}

.product-teaser .productsHome.start .col-md-4 a.toloajto, .product-teaser .productsHome.start .col-sm-6 a.toloajto {
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
}

.product-teaser .productsHome.start .col-md-4 a.fuggonyfal, .product-teaser .productsHome.start .col-sm-6 a.fuggonyfal {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.5s;
}

.product-teaser .productsHome.start .col-md-4 a.arnyekolo, .product-teaser .productsHome.start .col-sm-6 a.arnyekolo {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}

.product-teaser .productsHome.start .col-md-4 a.rovarhalo, .product-teaser .productsHome.start .col-sm-6 a.rovarhalo {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}

.product-teaser .productsHome .col-md-4, .product-teaser .productsHome .col-sm-6, .product-teaser .productsHome .col-xs-12 {
  padding: 1px;
  margin: 0;
}

.product-teaser .productsHome .col-md-4 a, .product-teaser .productsHome .col-sm-6 a, .product-teaser .productsHome .col-xs-12 a {
  text-align: center;
  font-family: DINPro-Bold, Helvetica;
  color: #ffffff;
  line-height: 36px;
  display: block;
  text-transform: uppercase;
  text-decoration: none;
  padding-top: 120px;
  height: 280px;
  position: relative;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.product-teaser .productsHome .col-md-4 a span.color, .product-teaser .productsHome .col-sm-6 a span.color, .product-teaser .productsHome .col-xs-12 a span.color {
  display: block;
  position: absolute;
  z-index: 1;
  background: #377bb5;
  width: 100%;
  height: 280px;
  left: 0;
  top: 0;
  filter: alpha(opacity=40);
  opacity: .4;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.product-teaser .productsHome .col-md-4 a span.text, .product-teaser .productsHome .col-sm-6 a span.text, .product-teaser .productsHome .col-xs-12 a span.text {
  display: inline-block;
  font-size: 32px;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  padding: 12px;
}

.product-teaser .productsHome .col-md-4 a span.text span.smaller, .product-teaser .productsHome .col-sm-6 a span.text span.smaller, .product-teaser .productsHome .col-xs-12 a span.text span.smaller {
  font-size: 24px;
  letter-spacing: 1px;
}

.product-teaser .productsHome .col-md-4 a.ablak, .product-teaser .productsHome .col-sm-6 a.ablak, .product-teaser .productsHome .col-xs-12 a.ablak {
  background: url(../images/home/termekek_1.jpg) no-repeat center center;
  background: -webkit-image-set(url(../images/home/termekek_1.jpg) 1x, url(../images/home/termekek_1@2x.jpg) 2x) no-repeat center center;
  background-size: cover;
}

.product-teaser .productsHome .col-md-4 a.bejaratiajto, .product-teaser .productsHome .col-sm-6 a.bejaratiajto, .product-teaser .productsHome .col-xs-12 a.bejaratiajto {
  background: url(../images/home/termekek_2.jpg) no-repeat center center;
  background: -webkit-image-set(url(../images/home/termekek_2.jpg) 1x, url(../images/home/termekek_2@2x.jpg) 2x) no-repeat center center;
  background-size: cover;
}

.product-teaser .productsHome .col-md-4 a.bejaratiajto span.color, .product-teaser .productsHome .col-sm-6 a.bejaratiajto span.color, .product-teaser .productsHome .col-xs-12 a.bejaratiajto span.color {
  background: #e55525;
}

.product-teaser .productsHome .col-md-4 a.toloajto, .product-teaser .productsHome .col-sm-6 a.toloajto, .product-teaser .productsHome .col-xs-12 a.toloajto {
  background: url(../images/home/termekek_3.jpg) no-repeat center center;
  background: -webkit-image-set(url(../images/home/termekek_3.jpg) 1x, url(../images/home/termekek_3@2x.jpg) 2x) no-repeat center center;
  background-size: cover;
}

.product-teaser .productsHome .col-md-4 a.fuggonyfal, .product-teaser .productsHome .col-sm-6 a.fuggonyfal, .product-teaser .productsHome .col-xs-12 a.fuggonyfal {
  background: url(../images/home/termekek_4.jpg) no-repeat center center;
  background: -webkit-image-set(url(../images/home/termekek_4.jpg) 1x, url(../images/home/termekek_4@2x.jpg) 2x) no-repeat center center;
  background-size: cover;
}

.product-teaser .productsHome .col-md-4 a.fuggonyfal span.color, .product-teaser .productsHome .col-sm-6 a.fuggonyfal span.color, .product-teaser .productsHome .col-xs-12 a.fuggonyfal span.color {
  background: #e55525;
}

.product-teaser .productsHome .col-md-4 a.arnyekolo, .product-teaser .productsHome .col-sm-6 a.arnyekolo, .product-teaser .productsHome .col-xs-12 a.arnyekolo {
  background: url(../images/home/termekek_5.jpg) no-repeat center center;
  background: -webkit-image-set(url(../images/home/termekek_5.jpg) 1x, url(../images/home/termekek_5@2x.jpg) 2x) no-repeat center center;
  background-size: cover;
}

.product-teaser .productsHome .col-md-4 a.rovarhalo, .product-teaser .productsHome .col-sm-6 a.rovarhalo, .product-teaser .productsHome .col-xs-12 a.rovarhalo {
  background: url(../images/home/termekek_6.jpg) no-repeat center center;
  background: -webkit-image-set(url(../images/home/termekek_6.jpg) 1x, url(../images/home/termekek_6@2x.jpg) 2x) no-repeat center center;
  background-size: cover;
}

.product-teaser .productsHome .col-md-4 a.rovarhalo span.color, .product-teaser .productsHome .col-sm-6 a.rovarhalo span.color, .product-teaser .productsHome .col-xs-12 a.rovarhalo span.color {
  background: #e55525;
}

.product-teaser .productsHome .col-md-4 a:hover span.text, .product-teaser .productsHome .col-sm-6 a:hover span.text, .product-teaser .productsHome .col-xs-12 a:hover span.text {
  background: rgba(51, 62, 72, 0.8);
}

.product-teaser .productsHome .col-md-4 a:hover span.color, .product-teaser .productsHome .col-sm-6 a:hover span.color, .product-teaser .productsHome .col-xs-12 a:hover span.color {
  filter: alpha(opacity=0);
  opacity: 0;
}

.products h1.big {
  font-size: 44px;
  font-family: DINPro-Black, Helvetica;
  margin-bottom: 10px;
}

.products h1.medium {
  font-size: 34px;
  font-family: DINPro-Bold, Helvetica;
  margin-bottom: 10px;
}

.products .productsList {
  min-height: 410px;
}

.products .productsList .col-md-3, .products .productsList .col-sm-4 {
  padding: 1px;
  margin: 0;
}

.products .productsList .col-md-3 span.glyphicon-play, .products .productsList .col-md-3 span.glyphicon-pause, .products .productsList .col-sm-4 span.glyphicon-play, .products .productsList .col-sm-4 span.glyphicon-pause {
  position: absolute;
  right: 2px;
  top: 2px;
  color: #ffffff;
  padding: 10px;
  font-size: 22px;
  filter: alpha(opacity=60);
  opacity: 0.6;
  text-shadow: none;
  z-index: 2;
  cursor: pointer;
}

.products .productsList .col-md-3 a, .products .productsList .col-sm-4 a {
  text-align: center;
  font-family: DINPro-Bold, Helvetica;
  color: #ffffff;
  line-height: 36px;
  display: block;
  text-transform: uppercase;
  text-decoration: none;
  height: 200px;
  position: relative;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.products .productsList .col-md-3 a span.text, .products .productsList .col-sm-4 a span.text {
  display: block;
  font-size: 15px;
  line-height: 22px;
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 2;
  font-family: DINPro-Medium, Helvetica;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  padding: 4px;
  background: rgba(51, 62, 72, 0.7);
}

.products .productsList .col-md-3 a span.text.longname, .products .productsList .col-sm-4 a span.text.longname {
  font-size: 13px;
  line-height: 16px;
  line-height: 16px;
}

.products .productsList .col-md-3 a.tolo_01, .products .productsList .col-sm-4 a.tolo_01 {
  background: url(../images/mp4/tolo_3_2.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.tolo_02, .products .productsList .col-sm-4 a.tolo_02 {
  background: url(../images/mp4/tolo_3_3.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.tolo_03, .products .productsList .col-sm-4 a.tolo_03 {
  background: url(../images/mp4/tolo_3_4.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.tolo_04, .products .productsList .col-sm-4 a.tolo_04 {
  background: url(../images/mp4/tolo_3_5.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.tolo_05, .products .productsList .col-sm-4 a.tolo_05 {
  background: url(../images/mp4/tolo_3_6.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.tolo_06, .products .productsList .col-sm-4 a.tolo_06 {
  background: url(../images/mp4/tolo_3_7.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.tolo_07, .products .productsList .col-sm-4 a.tolo_07 {
  background: url(../images/mp4/tolo_3_8.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.tolo_08, .products .productsList .col-sm-4 a.tolo_08 {
  background: url(../images/mp4/tolo_3_9.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.tolo_09, .products .productsList .col-sm-4 a.tolo_09 {
  background: url(../images/mp4/tolo_3_10.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.tolo_10, .products .productsList .col-sm-4 a.tolo_10 {
  background: url(../images/mp4/tolo_3_11.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.tolo_11, .products .productsList .col-sm-4 a.tolo_11 {
  background: url(../images/mp4/tolo_3_12.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.tolo_12, .products .productsList .col-sm-4 a.tolo_12 {
  background: url(../images/mp4/tolo_3_13.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.tolo_13, .products .productsList .col-sm-4 a.tolo_13 {
  background: url(../images/mp4/tolo_3_14.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.tolo_14, .products .productsList .col-sm-4 a.tolo_14 {
  background: url(../images/mp4/tolo_3_15.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.tolo_15, .products .productsList .col-sm-4 a.tolo_15 {
  background: url(../images/mp4/tolo_3_16.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.tolo_16, .products .productsList .col-sm-4 a.tolo_16 {
  background: url(../images/mp4/tolo_3_17.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.tolo_17, .products .productsList .col-sm-4 a.tolo_17 {
  background: url(../images/mp4/tolo_3_18.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.tolo_18, .products .productsList .col-sm-4 a.tolo_18 {
  background: url(../images/mp4/tolo_3_1.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.bejarati_01, .products .productsList .col-sm-4 a.bejarati_01 {
  background: url(../images/termekek/bejarati_ajtok/01.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.bejarati_02, .products .productsList .col-sm-4 a.bejarati_02 {
  background: url(../images/termekek/bejarati_ajtok/02.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.bejarati_03, .products .productsList .col-sm-4 a.bejarati_03 {
  background: url(../images/termekek/bejarati_ajtok/03.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.bejarati_04, .products .productsList .col-sm-4 a.bejarati_04 {
  background: url(../images/termekek/bejarati_ajtok/04.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.bejarati_05, .products .productsList .col-sm-4 a.bejarati_05 {
  background: url(../images/termekek/bejarati_ajtok/05.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.bejarati_06, .products .productsList .col-sm-4 a.bejarati_06 {
  background: url(../images/termekek/bejarati_ajtok/06.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.bejarati_07, .products .productsList .col-sm-4 a.bejarati_07 {
  background: url(../images/termekek/bejarati_ajtok/07.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.bejarati_08, .products .productsList .col-sm-4 a.bejarati_08 {
  background: url(../images/termekek/bejarati_ajtok/08.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.bejarati_09, .products .productsList .col-sm-4 a.bejarati_09 {
  background: url(../images/termekek/bejarati_ajtok/09.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.ablak_01, .products .productsList .col-sm-4 a.ablak_01 {
  background: url(../images/home/termekek_1.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.ablak_02, .products .productsList .col-sm-4 a.ablak_02 {
  background: url(../images/termekek/ablakok/02.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.ablak_03, .products .productsList .col-sm-4 a.ablak_03 {
  background: url(../images/termekek/ablakok/03.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.ablak_04, .products .productsList .col-sm-4 a.ablak_04 {
  background: url(../images/termekek/ablakok/04.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.ablak_05, .products .productsList .col-sm-4 a.ablak_05 {
  background: url(../images/termekek/ablakok/05.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.ablak_06, .products .productsList .col-sm-4 a.ablak_06 {
  background: url(../images/termekek/ablakok/06.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.ablak_07, .products .productsList .col-sm-4 a.ablak_07 {
  background: url(../images/termekek/ablakok/07.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.ablak_08, .products .productsList .col-sm-4 a.ablak_08 {
  background: url(../images/termekek/ablakok/08.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.ablak_09, .products .productsList .col-sm-4 a.ablak_09 {
  background: url(../images/termekek/ablakok/09.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.ablak_10, .products .productsList .col-sm-4 a.ablak_10 {
  background: url(../images/termekek/ablakok/10.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.ablak_11, .products .productsList .col-sm-4 a.ablak_11 {
  background: url(../images/termekek/ablakok/11.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.ablak_12, .products .productsList .col-sm-4 a.ablak_12 {
  background: url(../images/termekek/ablakok/12.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.fuggonyfal_01, .products .productsList .col-sm-4 a.fuggonyfal_01 {
  background: url(../images/termekek/fuggonyfalak/01.jpg) no-repeat center center;
  background-size: cover;
  height: 300px;
}

.products .productsList .col-md-3 a.fuggonyfal_02, .products .productsList .col-sm-4 a.fuggonyfal_02 {
  background: url(../images/termekek/fuggonyfalak/02.jpg) no-repeat center center;
  background-size: cover;
  height: 300px;
}

.products .productsList .col-md-3 a.fuggonyfal_03, .products .productsList .col-sm-4 a.fuggonyfal_03 {
  background: url(../images/termekek/fuggonyfalak/03.jpg) no-repeat center center;
  background-size: cover;
  height: 300px;
}

.products .productsList .col-md-3 a.fuggonyfal_04, .products .productsList .col-sm-4 a.fuggonyfal_04 {
  background: url(../images/termekek/fuggonyfalak/04.jpg) no-repeat center center;
  background-size: cover;
  height: 300px;
}

.products .productsList .col-md-3 a.fuggonyfal_05, .products .productsList .col-sm-4 a.fuggonyfal_05 {
  background: url(../images/termekek/fuggonyfalak/05.jpg) no-repeat center center;
  background-size: cover;
  height: 300px;
}

.products .productsList .col-md-3 a.fuggonyfal_06, .products .productsList .col-sm-4 a.fuggonyfal_06 {
  background: url(../images/termekek/fuggonyfalak/06.jpg) no-repeat center center;
  background-size: cover;
  height: 300px;
}

.products .productsList .col-md-3 a.fuggonyfal_07, .products .productsList .col-sm-4 a.fuggonyfal_07 {
  background: url(../images/termekek/fuggonyfalak/07.jpg) no-repeat center center;
  background-size: cover;
  height: 300px;
}

.products .productsList .col-md-3 a.fuggonyfal_08, .products .productsList .col-sm-4 a.fuggonyfal_08 {
  background: url(../images/termekek/fuggonyfalak/08.jpg) no-repeat center center;
  background-size: cover;
  height: 300px;
}

.products .productsList .col-md-3 a.fuggonyfal_09, .products .productsList .col-sm-4 a.fuggonyfal_09 {
  background: url(../images/termekek/fuggonyfalak/09.jpg) no-repeat center center;
  background-size: cover;
  height: 300px;
}

.products .productsList .col-md-3 a.arnyekolo_01, .products .productsList .col-sm-4 a.arnyekolo_01 {
  background: url(../images/termekek/arnyekolok/01.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.arnyekolo_02, .products .productsList .col-sm-4 a.arnyekolo_02 {
  background: url(../images/termekek/arnyekolok/02.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.arnyekolo_03, .products .productsList .col-sm-4 a.arnyekolo_03 {
  background: url(../images/termekek/arnyekolok/03.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.arnyekolo_04, .products .productsList .col-sm-4 a.arnyekolo_04 {
  background: url(../images/termekek/arnyekolok/04.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.arnyekolo_05, .products .productsList .col-sm-4 a.arnyekolo_05 {
  background: url(../images/termekek/arnyekolok/05.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.arnyekolo_06, .products .productsList .col-sm-4 a.arnyekolo_06 {
  background: url(../images/termekek/arnyekolok/06.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.arnyekolo_07, .products .productsList .col-sm-4 a.arnyekolo_07 {
  background: url(../images/termekek/arnyekolok/07.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.arnyekolo_08, .products .productsList .col-sm-4 a.arnyekolo_08 {
  background: url(../images/termekek/arnyekolok/08.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.rovarhalo_01, .products .productsList .col-sm-4 a.rovarhalo_01 {
  background: url(../images/termekek/rovarhalok/01.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.rovarhalo_02, .products .productsList .col-sm-4 a.rovarhalo_02 {
  background: url(../images/termekek/rovarhalok/02.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.rovarhalo_03, .products .productsList .col-sm-4 a.rovarhalo_03 {
  background: url(../images/termekek/rovarhalok/03.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.rovarhalo_04, .products .productsList .col-sm-4 a.rovarhalo_04 {
  background: url(../images/termekek/rovarhalok/04.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a.rovarhalo_05, .products .productsList .col-sm-4 a.rovarhalo_05 {
  background: url(../images/termekek/rovarhalok/05.jpg) no-repeat center center;
  background-size: cover;
}

.products .productsList .col-md-3 a:hover span.color, .products .productsList .col-sm-4 a:hover span.color {
  filter: alpha(opacity=0);
  opacity: 0;
}

.products .productsList .col-md-3 a:hover span.text, .products .productsList .col-sm-4 a:hover span.text {
  bottom: -80px;
}

.video video {
  position: absolute;
  height: 110%;
  top: 50%;
  margin-top: -110px;
  left: 50%;
  margin-left: -50%;
}

video::-webkit-media-controls {
  display: none !important;
}

/*
    carousel bottom
*/
.bottomCarousel {
  width: 60%;
  margin: auto;
  float: none;
  text-align: center;
}

.bottomCarousel p {
  padding: 10px;
  padding-top: 0;
  line-height: 25px;
  font-size: 16px;
}

.bottomCarousel p span {
  color: #377bb5;
  font-style: italic;
}

.media-carousel {
  /* Previous button  */
  /* Next button  */
  /* Changes the position of the indicators */
  /* Changes the colour of the indicators */
}

.media-carousel .carousel-control.left {
  left: -60px;
}

.media-carousel .carousel-control.right {
  right: -60px;
}

.media-carousel .carousel-control {
  background-image: none;
  border: solid 1px rgba(0, 0, 0, 0.5);
  border-radius: 23px 23px 23px 23px;
  height: 38px;
  width: 38px;
  line-height: 32px;
  margin-top: 22px;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.3);
  text-shadow: none;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.media-carousel .carousel-indicators {
  right: 50%;
  top: auto;
  bottom: 0px;
  margin-right: 0px;
}

.media-carousel .carousel-indicators .active {
  background: #333333;
}

.media-carousel .carouselSlogen {
  text-align: center;
  margin-top: 6px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  font-size: 16px;
}

/*
    instafeed
*/
.instafeed {
  background: url(../images/footer/instafeedBg.jpg) no-repeat center center;
  background: -webkit-image-set(url(../images/footer/instafeedBg.jpg) 1x, url(../images/footer/instafeedBg@2x.jpg) 2x) no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 10;
  padding-bottom: 15px;
}

.instafeed h2 {
  font-size: 15px;
  line-height: 15px;
  text-align: left;
  color: #333e48;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-top: 10px;
}

.instafeed h2 a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  background: #e55525;
  padding: 1px 3px;
}

.instafeed h2 a:hover {
  color: #e1ecff;
}

.instafeed .col-xs-2 {
  padding: 1px;
}

.instafeed .col-xs-2 a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.instafeed .col-xs-2 a img {
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.instafeed .col-xs-2 a img.start {
  filter: alpha(opacity=0);
  opacity: 0;
  animation-name: instaBlockAnimation;
  animation-duration: 0.4s;
  animation-delay: 0.3s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  -webkit-animation-name: instaBlockAnimation;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-delay: 0.3s;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
  margin-top: -10px;
}

.instafeed .col-xs-2 a img.start.img1 {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}

.instafeed .col-xs-2 a img.start.img2 {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}

.instafeed .col-xs-2 a img.start.img3 {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}

.instafeed .col-xs-2 a img.start.img4 {
  animation-delay: 0.7s;
  -webkit-animation-delay: 0.7s;
}

.instafeed .col-xs-2 a img.start.img5 {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
}

.instafeed .col-xs-2 a:hover img {
  -ms-transform: scale(1.08);
  /* IE 9 */
  -webkit-transform: scale(1.08);
  /* Safari */
  transform: scale(1.08);
}

/*
    footer
*/
footer {
  background: #ffffff;
  padding: 54px 0 0 0;
  color: #111;
  font-size: 13px;
  min-height: 300px;
  height: auto;
  position: relative;
  border-top: solid 1px #eee;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  color: #e55525;
}

footer .footerLeft, footer .footerRight {
  padding: 0;
}

footer .footerLeft a, footer .footerRight a {
  text-decoration: none;
}

footer .footerLeft h2, footer .footerRight h2 {
  margin: 0 0 10px 0;
  font-size: 21px;
  color: #e55525;
  font-family: DINPro-Bold, Helvetica;
}

footer .footerLeft p, footer .footerRight p {
  line-height: 26px;
  font-size: 15px;
}

footer .footerLeft {
  padding-left: 40px;
}

footer .footerLeft .footerSocialIcons {
  -ms-transform: scale(0.9, 0.9);
  /* IE 9 */
  -webkit-transform: scale(0.9, 0.9);
  /* Safari */
  transform: scale(0.9, 0.9);
  float: left;
  margin-left: -10px;
  margin-top: 5px;
}

footer .footerLeft .footerSocialIcons .footerSocialIcon {
  display: block;
  width: 36px;
  height: 36px;
  float: left;
  margin-right: 8px;
  background: url(../images/footer/roundSocialIcons.png) no-repeat;
  background-size: 180px 72px;
  background-position: 0 0;
  text-indent: -9999px;
}

footer .footerLeft .footerSocialIcons .footerSocialIcon.facebook {
  background-position: 0 0;
}

footer .footerLeft .footerSocialIcons .footerSocialIcon.facebook:hover {
  background-position: 0 -36px;
}

footer .footerLeft .footerSocialIcons .footerSocialIcon.twitter {
  background-position: -36px 0;
}

footer .footerLeft .footerSocialIcons .footerSocialIcon.twitter:hover {
  background-position: -36px -36px;
}

footer .footerLeft .footerSocialIcons .footerSocialIcon.google {
  background-position: -72px 0;
}

footer .footerLeft .footerSocialIcons .footerSocialIcon.google:hover {
  background-position: -72px -36px;
}

footer .footerLeft .footerSocialIcons .footerSocialIcon.instagram {
  background-position: -108px 0;
}

footer .footerLeft .footerSocialIcons .footerSocialIcon.instagram:hover {
  background-position: -108px -36px;
}

footer .footerLeft .footerSocialIcons .footerSocialIcon.youtube {
  background-position: -144px 0;
}

footer .footerLeft .footerSocialIcons .footerSocialIcon.youtube:hover {
  background-position: -144px -36px;
}

footer .footerCenter a {
  text-decoration: none;
}

footer .footerCenter ul {
  margin: 0;
  padding: 0;
  line-height: 31px;
  list-style: none;
  list-style-type: none;
  text-transform: uppercase;
  font-size: 14px;
  padding-left: 50px;
  border-left: solid 1px #ddd;
}

footer .footerRight {
  position: relative;
}

footer .footerRight .footerAluta {
  display: block;
  text-indent: -9999px;
  width: 70px;
  height: 70px;
  background: url(../images/footer/aluta.png) no-repeat 0 0;
  background-size: 70px 70px;
  position: absolute;
  right: 10px;
  top: 46px;
}

footer .footerRight .footerUED {
  display: block;
  text-indent: -9999px;
  width: 115px;
  height: 70px;
  background: url(../images/footer/uzletiEtikaiDij.png) no-repeat 0 0;
  background-size: 115px 70px;
  position: absolute;
  right: 132px;
  top: 46px;
}

footer .footerRight .footerAA {
  display: block;
  text-indent: -9999px;
  width: 72px;
  height: 70px;
  background: url(../images/footer/aaBisnode.png) no-repeat 0 0;
  background-size: 72px 70px;
  position: absolute;
  right: 300px;
  top: 46px;
}

footer .footerRight .footerMLV2017 {
  display: block;
  text-indent: -9999px;
  width: 123px;
  height: 99px;
  background: url(../images/footer/MLV2017@2x.png) no-repeat 0 0;
  background-size: 123px 99px;
  position: absolute;
  right: 419px;
  top: 32px;
}

footer .bottom {
  display: inline-block;
  text-align: right;
  position: absolute;
  bottom: 20px;
  right: 75px;
  font-size: 12px;
}

.contactSocialBlock {
  margin-bottom: 90px;
}

.contactSocialBlock .footerSocialIcon {
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-right: 8px;
  background: url(../images/footer/roundSocialIcons.png) no-repeat;
  background-size: 180px 72px;
  background-position: 0 0;
  text-indent: -9999px;
}

.contactSocialBlock .footerSocialIcon.facebook {
  background-position: 0 0;
}

.contactSocialBlock .footerSocialIcon.facebook:hover {
  background-position: 0 -36px;
}

.contactSocialBlock .footerSocialIcon.twitter {
  background-position: -36px 0;
}

.contactSocialBlock .footerSocialIcon.twitter:hover {
  background-position: -36px -36px;
}

.contactSocialBlock .footerSocialIcon.google {
  background-position: -72px 0;
}

.contactSocialBlock .footerSocialIcon.google:hover {
  background-position: -72px -36px;
}

.contactSocialBlock .footerSocialIcon.instagram {
  background-position: -108px 0;
}

.contactSocialBlock .footerSocialIcon.instagram:hover {
  background-position: -108px -36px;
}

.contactSocialBlock .footerSocialIcon.youtube {
  background-position: -144px 0;
}

.contactSocialBlock .footerSocialIcon.youtube:hover {
  background-position: -144px -36px;
}

/*
    other elements
*/
.highlighted {
  color: #ffffff;
  background: #e55525;
  padding: 0px 2px;
}

.workflowWrap {
  width: 100%;
  background: url(/images/hogyan_dolgozunk/dotted.png) repeat-y center top;
  position: relative;
}

.workflowWrap .step {
  width: 100%;
  padding-left: 50%;
  margin-left: 2px;
  height: auto;
  overflow: hidden;
}

.workflowWrap .step .num {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #ccc;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #111;
  font-family: DINPro-Medium, Helvetica;
  font-size: 16px;
  background: #ffffff;
  float: left;
  margin-left: -21px;
}

.workflowWrap .step h2 {
  text-align: left;
  padding-left: 60px;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-top: 8px;
  background: url(/images/hogyan_dolgozunk/dottedH.png) no-repeat left 20px #fbfbfb;
}

.workflowWrap .step h2 .glyphicon {
  color: #111;
  margin-right: 5px;
}

.workflowWrap .step p {
  text-align: left;
  width: 99%;
  padding-right: 50px;
  background: #fbfbfb;
  font-size: 15px;
  padding-left: 60px;
}

.workflowWrap .step.right {
  padding-left: 0;
  padding-right: 50%;
  margin-left: 0;
}

.workflowWrap .step.right .num {
  float: right;
  margin-left: 0;
  margin-right: -21px;
}

.workflowWrap .step.right h2, .workflowWrap .step.right p {
  text-align: right;
  margin-right: 2px;
}

.workflowWrap .step.right.sixth h2, .workflowWrap .step.right.sixth p {
  margin-right: -2px;
  margin-bottom: 0;
  padding-bottom: 20px;
}

.workflowWrap .step.right h2 {
  background: url(/images/hogyan_dolgozunk/dottedH.png) no-repeat right 20px #fbfbfb;
  padding-left: 0;
  padding-right: 60px;
}

.workflowWrap .step.right h2 .glyphicon {
  margin-right: 0;
  margin-left: 5px;
}

.workflowWrap .step.right p {
  padding-left: 50px;
  padding-right: 60px;
}

.workflowWrap .step.second {
  margin-top: -100px;
}

.workflowWrap .step.third {
  margin-top: -100px;
}

.workflowWrap .step.fourth {
  margin-top: -100px;
}

.workflowWrap .step.fifth {
  margin-top: -100px;
}

.workflowWrap .step.sixth {
  margin-top: -100px;
}

.homeAboutKav {
  width: 50%;
  font-size: 17px;
  line-height: 26px;
  margin: 40px auto 70px auto;
}

.productFilter .multi {
  display: inline;
  top: 0;
  left: 3px;
}

.productFilter .twelve {
  width: 40%;
  margin: auto;
}

.productFilter .programs,
.productFilter .courses {
  margin: 8px 0 0 0;
}

.productFilter .programs {
  font-size: 0;
  margin-bottom: 15px;
}

.productFilter .programs button {
  outline: none;
  background: #fafafa;
  width: 33%;
  height: auto;
  font-weight: normal;
  border: 1px solid #eee;
  color: #000000;
  font-size: 14px;
  padding: 8px 0;
  text-shadow: 0px 0px 0px #2f6627;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.productFilter .programs button:nth-child(1) {
  -webkit-border-radius: 4px 2px 2px 4px;
  -moz-border-radius: 4px 2px 2px 4px;
  -o-border-radius: 4px 2px 2px 4px;
  -ms-border-radius: 4px 2px 2px 4px;
  border-radius: 4px 2px 2px 4px;
}

.productFilter .programs button:nth-child(3) {
  -webkit-border-radius: 2px 4px 4px 2px;
  -moz-border-radius: 2px 4px 4px 2px;
  -o-border-radius: 2px 4px 4px 2px;
  -ms-border-radius: 2px 4px 4px 2px;
  border-radius: 2px 4px 4px 2px;
}

.productFilter .programs.arnyekolok button {
  width: 20%;
}

.productFilter .programs.arnyekolok button:nth-child(3) {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.productFilter .programs.arnyekolok button:nth-child(5) {
  -webkit-border-radius: 2px 4px 4px 2px;
  -moz-border-radius: 2px 4px 4px 2px;
  -o-border-radius: 2px 4px 4px 2px;
  -ms-border-radius: 2px 4px 4px 2px;
  border-radius: 2px 4px 4px 2px;
}

.productFilter .programs button:hover {
  background: #3c89ca;
  color: #ffffff;
}

.productFilter .programs button.active {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3) inset, 0px 0px 1px transparent;
  background: #377bb5;
  color: #ffffff;
}

.productFilter .courses a {
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.productFilter .courses .mix-target {
  display: none;
}

.breadcrumb {
  background: none;
  margin: 0 0 40px 0;
  text-transform: uppercase;
  font-size: 12px;
  color: #999;
  display: inline-block;
  padding: 10px 0 0 0;
  border-top: solid 2px #e55525;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

.breadcrumb span {
  color: #377bb5;
}

.breadcrumb a {
  color: #999;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #377bb5;
}

.separator {
  width: 100%;
  height: 1px;
  background: #ddd;
  margin: 40px 0;
}

.separator.slash {
  height: 6px;
  background: url(../images/separator.png) repeat-x 0 0;
}

.toTop {
  color: #cecece;
  font-size: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: solid 1px #cecece;
  width: 40px;
  height: 40px;
  line-height: 39px;
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 678;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.toTop:hover {
  color: #333e48;
  background: white;
  line-height: 34px;
}

.bigBg {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.bigBg .content {
  padding-left: 10%;
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -90px;
}

.bigBg .content h1 {
  font-family: DINPro-Black, Helvetica;
  color: #ffffff;
  text-shadow: 1px 1px 30px rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
  font-size: 56px;
  line-height: 64px;
  display: inline-block;
  margin-bottom: 15px;
}

.bigBg .content .btn-large {
  padding: 15px 30px;
  font-size: 18px;
}

.bigBg.buko-nyilo {
  background: url(../images/termekek/ablakok/buko-nyilo/big.jpg) no-repeat center center;
  background-size: cover;
}

.bigBg.big_kossuth {
  background: url(../images/termekek/ablakok/big_kossuth.jpg) no-repeat center center;
  background-size: cover;
}

.bigBg.big_napsugar {
  background: url(../images/termekek/ablakok/big_napsugar.jpg) no-repeat center center;
  background-size: cover;
}

.bigBg.big_hotelvinum {
  background: url(../images/termekek/bejarati_ajtok/big_hotelvinum.jpg) no-repeat center center;
  background-size: cover;
}

.bigBg.big_hunland {
  background: url(../images/termekek/bejarati_ajtok/big_hunland.jpg) no-repeat center center;
  background-size: cover;
}

.bigBg.big_zugliget {
  background: url(../images/termekek/bejarati_ajtok/big_zugliget.jpg) no-repeat center center;
  background-size: cover;
}

.bigBg.big_austria {
  background: url(../images/termekek/bejarati_ajtok/big_austria.jpg) no-repeat center center;
  background-size: cover;
}

.video_3d_embed {
  max-width: 720px;
  margin: auto;
}

.grayBg {
  position: relative;
  z-index: 2;
  background: #fbfbfb;
}

.transparentArea {
  width: 100%;
  height: 300px;
}

.certificateBg {
  width: 100%;
  height: 400px;
  background: url(../images/content/bisnode_certificate_bg.png) no-repeat center center;
  background-size: contain;
  text-align: center;
  margin: 40px 0;
}

.mega-dropdown-separator {
  clear: both;
  margin: 0;
  margin-bottom: 15px;
}

.thumbnail.myBlock {
  display: block;
  height: 430px;
  padding: 0;
  text-decoration: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border: none;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.11);
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.11);
  -o-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.11);
  -webkit-transition: all 0.15s ease-in;
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
  cursor: pointer;
  text-align: left;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: -20px;
  filter: alpha(opacity=0);
  opacity: 0;
  position: relative;
}

.thumbnail.myBlock.sajto span.label {
  margin-left: 10px;
}

.thumbnail.myBlock.start {
  animation-name: homeBlockAnimation;
  animation-duration: 0.4s;
  animation-delay: 1.2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  -webkit-animation-name: homeBlockAnimation;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-delay: 1.2s;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
}

.thumbnail.myBlock.block2 {
  animation-delay: 1.4s;
  -webkit-animation-delay: 1.4s;
}

.thumbnail.myBlock.block3 {
  animation-delay: 1.6s;
  -webkit-animation-delay: 1.6s;
}

.thumbnail.myBlock.block4 {
  animation-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
}

.thumbnail.myBlock img {
  display: block;
  -webkit-transition: all 0.15s ease-in;
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}

.thumbnail.myBlock .caption {
  display: block;
  position: relative;
  z-index: 1;
}

.thumbnail.myBlock .gradient {
  display: block;
  width: 100%;
  height: 80px;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 90%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 90%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 90%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
  /* IE6-9 */
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
}

.thumbnail.myBlock h2 {
  font-family: DINPro-Bold, Helvetica;
  font-size: 18px;
  color: #2b618e;
  height: 45px;
  line-height: 22px;
  margin-top: 10px;
  margin-bottom: 15px;
  padding: 0 12px;
}

.thumbnail.myBlock p {
  padding: 0 15px;
  text-align: left;
}

.thumbnail.myBlock:hover {
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.14);
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.14);
  -o-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.14);
}

.thumbnail.myBlock:hover img {
  filter: alpha(opacity=90);
  opacity: .9;
}

.killAnimation .thumbnail.myBlock {
  margin-top: 0;
  filter: alpha(opacity=100);
  opacity: 1.0;
}

.cookie {
  display: inline-block;
  height: 60px;
  float: left;
  font-size: 60px;
  line-height: 58px;
  margin-right: 15px;
}

.spacer {
  margin-bottom: 39px;
  height: 1px;
  line-height: 1px;
  clear: both;
}

.spacer-60 {
  margin-bottom: 59px;
}

.spacer-20 {
  margin-bottom: 19px;
}

.selected-text {
  display: inline-block;
  background: #e55525;
  color: #ffffff;
  padding: 0 2px;
}

.orangeLine {
  height: 2px;
  line-height: 2px;
  width: 200px;
  background: #e55525;
  margin: 0 auto 10px auto;
}

.orangeLine.bottomOffset {
  margin-bottom: 30px;
}

.sidebar {
  padding: 40px 0;
}

.sidebar h1 {
  font-size: 22px;
  margin-bottom: 20px;
}

.sidebar .sidebarNewsBlock {
  display: block;
  margin-bottom: 20px;
  height: 70px;
  overflow: hidden;
}

.sidebar .sidebarNewsBlock img {
  width: 90px;
  margin-right: 15px;
  display: block;
  float: left;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}

.sidebar .sidebarNewsBlock .caption {
  width: 250px;
  float: left;
}

.sidebar .sidebarNewsBlock .caption h2 {
  font-size: 13px;
  height: 16px;
  margin: 5px 0 10px 0;
  font-family: DINPro-Medium, Helvetica;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.sidebar .sidebarNewsBlock .caption p {
  font-size: 12px;
  color: #111;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar .sidebarNewsBlock:hover h2 {
  color: #e55525;
}

.sidebar .sidebarNewsBlock:hover img {
  filter: alpha(opacity=90);
  opacity: 0.9;
}

.sidebar .sidebarWorkflowBanner {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 180px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  text-decoration: none;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  margin: 20px 0;
}

.sidebar .sidebarWorkflowBanner .img {
  display: block;
  position: absolute;
  background: url(../images/sidebar/workflow.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 180px;
  z-index: 1;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.sidebar .sidebarWorkflowBanner h2 {
  color: #ffffff;
  font-size: 28px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  font-family: DINPro-Bold, Helvetica;
  text-align: center;
  padding-top: 64px;
  position: relative;
  z-index: 2;
}

.sidebar .sidebarWorkflowBanner h2 span {
  font-size: 16px;
  font-family: DINPro-Regular, Helvetica;
  color: #d2e7f7;
  letter-spacing: 8px;
}

.sidebar .sidebarWorkflowBanner:hover .img {
  -ms-transform: scale(1.2);
  /* IE 9 */
  -webkit-transform: scale(1.2);
  /* Safari */
  transform: scale(1.2);
}

.sidebar .products {
  margin-top: 15px;
}

.sidebar .products h2 {
  color: #e55525;
  font-size: 16px;
  margin: 15px 0 0 0;
}

.sidebar .products p {
  margin: 10px 0;
}

.sidebar .products a {
  text-decoration: none;
  color: #111;
}

.sidebar .sidebarDownloadBanner {
  background: #e55525;
  display: block;
  width: 100%;
  height: 150px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  margin: 20px 0;
}

.sidebar .sidebarDownloadBanner h2 {
  color: #ffffff;
  font-size: 28px;
  text-transform: uppercase;
  font-family: DINPro-Bold, Helvetica;
  padding-top: 40px;
}

.sidebar .sidebarDownloadBanner h2 span {
  font-size: 14px;
  font-family: DINPro-Regular, Helvetica;
  color: #111;
  text-transform: none;
  display: inline-block;
  padding: 0 15px;
  line-height: 20px;
  margin-top: 8px;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.sidebar .sidebarDownloadBanner:hover {
  background: #333e48;
}

.sidebar .sidebarDownloadBanner:hover h2 span {
  color: #d2e7f7;
}

.sidebar .sidebarGalleryBanner {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 220px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  text-decoration: none;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  margin: 20px 0;
}

.sidebar .sidebarGalleryBanner .img {
  display: block;
  position: absolute;
  background: url(../images/sidebar/gallery.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 220px;
  z-index: 1;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.sidebar .sidebarGalleryBanner h2 {
  color: #ffffff;
  font-size: 28px;
  text-transform: uppercase;
  font-family: DINPro-Bold, Helvetica;
  text-align: center;
  padding-top: 80px;
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.sidebar .sidebarGalleryBanner h2 span {
  font-size: 14px;
  font-family: DINPro-Regular, Helvetica;
  color: #d2e7f7;
  letter-spacing: 8px;
  display: inline-block;
  padding: 0 15px;
  line-height: 20px;
  margin-top: 8px;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.sidebar .sidebarGalleryBanner:hover .img {
  -ms-transform: scale(1.2);
  /* IE 9 */
  -webkit-transform: scale(1.2);
  /* Safari */
  transform: scale(1.2);
}

.sidebar .sidebarKarrierBanner {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 250px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  text-decoration: none;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  margin: 20px 0;
}

.sidebar .sidebarKarrierBanner .img {
  display: block;
  position: absolute;
  background: url(../images/sidebar/karrier.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 250px;
  z-index: 1;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.sidebar .sidebarKarrierBanner h2 {
  color: #ffffff;
  font-size: 28px;
  text-transform: uppercase;
  font-family: DINPro-Bold, Helvetica;
  text-align: center;
  padding-top: 96px;
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.sidebar .sidebarKarrierBanner h2 span {
  font-size: 14px;
  font-family: DINPro-Regular, Helvetica;
  color: #d2e7f7;
  letter-spacing: 8px;
  display: inline-block;
  padding: 0 15px;
  line-height: 20px;
  margin-top: 8px;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.sidebar .sidebarKarrierBanner:hover .img {
  -ms-transform: scale(1.2);
  /* IE 9 */
  -webkit-transform: scale(1.2);
  /* Safari */
  transform: scale(1.2);
}

.sidebarForm p {
  width: 90%;
}

.sidebarForm input, .sidebarForm textarea {
  width: 90%;
  margin-bottom: 15px;
}

.sidebarForm input[type="submit"] {
  width: 120px;
}

.sidebarForm input[type="text"] {
  height: 38px;
  line-height: 36px;
  padding-left: 10px;
}

.sidebarForm .spacer {
  margin-bottom: 25px;
}

.sidebarForm .form_error {
  border: 1px solid #eee;
  background: url(../images/warning.svg) no-repeat 97% 12px #fafafa;
  background-size: 19px 16px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding: 10px;
  margin: 12px 0;
  width: 90%;
}

.sidebarForm .form_error .glyphicon {
  float: right;
}

.sidebarForm .form_yes {
  border: 1px solid #7db53f;
  background: url(../images/yes.svg) no-repeat 97% 12px #fafafa;
  background-size: 21px 16px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding: 10px;
  margin: 12px 0;
  width: 90%;
}

.contentLeft {
  padding: 40px 0;
  text-align: left;
  padding-right: 20px;
  position: relative;
}

.contentLeft.newsContent h2 {
  font-size: 20px;
}

.contentLeft.newsContent p {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 20px;
  text-align: justify;
}

.contentLeft.newsContent .date {
  font-style: italic;
  font-size: 13px;
}

.contentLeft.newsContent .view p {
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

.contentLeft.newsContent .view h2 {
  font-size: 14px;
}

.contentLeft.newsContent p.bold, .contentLeft.newsContent span.bold {
  font-family: DINPro-Bold, Helvetica;
}

.contentLeft.about ul li {
  margin-bottom: 12px;
}

.contentLeft.about p, .contentLeft.about ul {
  text-align: justify;
  font-size: 15px;
}

.contentLeft.about p.lead, .contentLeft.about ul.lead {
  font-size: 18px;
  font-family: DINPro-Medium, Helvetica;
}

.contentLeft.about .view p {
  font-size: 12px;
  text-align: center;
}

.contentLeft.noPadding {
  padding-bottom: 0;
  padding-right: 0;
}

.contentLeft .logoutBtn {
  position: absolute;
  right: 15px;
  top: 45px;
}

.contentLeft h1.big {
  font-size: 64px;
  font-family: DINPro-Black, Helvetica;
  margin-bottom: 15px;
}

.contentLeft h1.medium {
  font-size: 34px;
  font-family: DINPro-Bold, Helvetica;
  margin-bottom: 10px;
}

.contentLeft h1 {
  margin-bottom: 15px;
}

.contentLeft .orangeLine {
  margin: 0 0 10px 0;
}

.contentLeft .breadcrumb {
  text-align: left;
  padding-left: 0;
  margin-left: 0;
  display: inline-block;
  padding-top: 5px;
  border-top: solid 2px #e55525;
}

.contentLeft.contact h2 {
  margin-bottom: 20px;
}

.contentLeft.contact p {
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.contentLeft.contact .spacer {
  margin-bottom: 10px;
}

.contentLeft .btn.btn-large {
  padding: 10px 20px;
  font-size: 18px;
}

.heavyText {
  font-size: 18px;
  font-family: DINPro-Bold, Helvetica;
}

.emphaticText {
  font-size: 16px;
  font-family: DINPro-Medium, Helvetica;
}

.text-block .text-justify {
  text-align: justify;
  font-size: 15px;
}

.text-block h1 {
  font-size: 30px;
}

.text-block h1 .glyphicon-comment {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 38px;
  vertical-align: text-top;
  margin-right: 8px;
}

.text-block p {
  display: block;
  width: 60%;
  line-height: 24px;
  font-size: 18px;
  margin: auto;
  margin-bottom: 30px;
}

.text-block p.leadBox {
  background: #ffffff;
  padding: 30px 40px;
  margin: 10px auto 50px auto;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  text-align: justify;
  font-size: 15px;
  box-shadow: 0px 0px 20px #ccc;
  -webkit-box-shadow: 0px 0px 20px #ccc;
  -moz-box-shadow: 0px 0px 20px #ccc;
  -o-box-shadow: 0px 0px 20px #ccc;
}

.text-block p.videoCaption {
  font-size: 14px;
  line-height: 20px;
  margin-top: 15px;
}

.text-block .fullsize {
  text-align: justify;
}

.text-block .fullsize h2 {
  text-align: left;
}

.text-block .fullsize p {
  width: 100%;
  font-size: 15px;
}

.text-block .tab-content p {
  width: 100%;
  line-height: 22px;
  font-size: 14px;
  text-align: justify;
}

.text-block .tab-content .view p {
  font-size: 12px;
  line-height: 16px;
  height: 56px;
  position: relative;
  color: #fff;
  padding: 10px 20px 20px;
  text-align: center;
  text-shadow: 0px 1px 2px #000000;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-block .small {
  font-size: 12px;
}

.text-block .btn {
  padding: 18px 30px;
  font-size: 19px;
}

.table-curved {
  border-collapse: separate;
}

.table-curved {
  border: solid #ccc 1px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  border-left: 0;
}

.table-curved td, .table-curved th {
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
}

.table-curved th {
  border-top: none;
}

.table-curved th:first-child {
  -webkit-border-radius: 4px 0 0 0;
  -moz-border-radius: 4px 0 0 0;
  -o-border-radius: 4px 0 0 0;
  -ms-border-radius: 4px 0 0 0;
  border-radius: 4px 0 0 0;
}

.table-curved th:last-child {
  -webkit-border-radius: 0 4px 0 0;
  -moz-border-radius: 0 4px 0 0;
  -o-border-radius: 0 4px 0 0;
  -ms-border-radius: 0 4px 0 0;
  border-radius: 0 4px 0 0;
}

.table-curved th:only-child {
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  -o-border-radius: 4px 4px 0 0;
  -ms-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}

.table-curved tr:last-child td:first-child {
  -webkit-border-radius: 0 0 0 4px;
  -moz-border-radius: 0 0 0 4px;
  -o-border-radius: 0 0 0 4px;
  -ms-border-radius: 0 0 0 4px;
  border-radius: 0 0 0 4px;
}

.table-curved tr:last-child td:last-child {
  -webkit-border-radius: 0 0 4px 0;
  -moz-border-radius: 0 0 4px 0;
  -o-border-radius: 0 0 4px 0;
  -ms-border-radius: 0 0 4px 0;
  border-radius: 0 0 4px 0;
}

.productPreferences {
  background: #333e48;
  height: auto;
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  margin: 0;
}

.productPreferences div {
  padding: 0;
}

.productPreferences div .image {
  position: relative;
  display: block;
  width: 90%;
  height: 300px;
  left: -10px;
  background: url(../images/termekek/toloajtok/elonyok.jpg) no-repeat center center;
  background-size: cover;
}

.productPreferences h2 {
  color: #e55525;
  text-transform: uppercase;
  font-family: DINPro-Bold, Helvetica;
  font-size: 26px;
}

.productPreferences ul {
  list-style: square;
}

.productPreferences ul li {
  margin-bottom: 15px;
}

.productPreferences .text {
  padding: 30px 30px 0 0;
}

.description {
  background: url(../images/termekek/toloajtok/textBg.jpg) no-repeat center center;
  background-size: cover;
  padding: 65px 0;
  text-align: center;
}

.description.arnyekolo {
  background: url(../images/termekek/arnyekolok/textBg.jpg) no-repeat center center;
  background-size: cover;
}

.description.ff {
  background: url(../images/termekek/fuggonyfalak/textBg.jpg) no-repeat center center;
  background-size: cover;
}

.description.ffrf {
  background: url(../images/termekek/fuggonyfalak/textBg-ffrf.jpg) no-repeat center center;
  background-size: cover;
}

.description.smart {
  background: url(../images/termekek/bejarati_ajtok/textBg-smart.jpg) no-repeat center center;
  background-size: cover;
}

.description h2 {
  color: #e55525;
  text-transform: uppercase;
  font-family: DINPro-Bold, Helvetica;
  font-size: 26px;
  padding: 0 15px;
}

.description p {
  width: 50%;
  text-shadow: 1px 1px #ffffff;
  margin: auto;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 30px;
}

.description .btn {
  text-shadow: none;
}

.description .btn.btn-large {
  padding: 10px 20px;
  font-size: 18px;
}

.types.biglist {
  padding-left: 15px;
  padding-right: 15px;
}

.types .block {
  height: 420px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.types .block.thumbnail-margin {
  margin-bottom: 30px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.types .block.thumbnail-margin:hover {
  -webkit-transform: scale(1.01, 1.01);
  -moz-transform: scale(1.01, 1.01);
  -o-transform: scale(1.01, 1.01);
  -ms-transform: scale(1.01, 1.01);
  transform: scale(1.01, 1.01);
}

.types .block.thumbnail-margin:focus {
  outline: none;
}

.types .block .info-btn {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  text-align: right;
}

.types .block.lista_img_1 {
  background: url(../images/termekek/toloajtok/popup/1.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_img_2 {
  background: url(../images/termekek/toloajtok/popup/2.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_img_3 {
  background: url(../images/termekek/toloajtok/popup/3.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_img_4 {
  background: url(../images/termekek/toloajtok/popup/4.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_img_5 {
  background: url(../images/termekek/toloajtok/popup/5.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_img_6 {
  background: url(../images/termekek/toloajtok/popup/6.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_img_7 {
  background: url(../images/termekek/toloajtok/popup/7.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_img_8 {
  background: url(../images/termekek/toloajtok/popup/8.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_img_9 {
  background: url(../images/termekek/toloajtok/popup/9.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_img_10 {
  background: url(../images/termekek/toloajtok/popup/10.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_img_11 {
  background: url(../images/termekek/toloajtok/popup/11.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_img_12 {
  background: url(../images/termekek/toloajtok/popup/12.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_img_13 {
  background: url(../images/termekek/toloajtok/popup/13.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_img_14 {
  background: url(../images/termekek/toloajtok/popup/14.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_img_15 {
  background: url(../images/termekek/toloajtok/popup/15.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_img_16 {
  background: url(../images/termekek/toloajtok/popup/16.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_img_17 {
  background: url(../images/termekek/toloajtok/popup/17.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_img_18 {
  background: url(../images/termekek/toloajtok/popup/18.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_img_19 {
  background: url(../images/termekek/toloajtok/popup/19.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_img_20 {
  background: url(../images/termekek/toloajtok/popup/20.jpg) no-repeat center center;
  background-size: cover;
}

.types .block .play {
  color: #ffffff;
  font-size: 52px;
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  margin-top: -25px;
  left: 50%;
  margin-left: -25px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.types .block.lista_video_1 {
  background: url(../images/mp4/tolo_3_2.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_video_2 {
  background: url(../images/mp4/tolo_3_3.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_video_3 {
  background: url(../images/mp4/tolo_3_4.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_video_4 {
  background: url(../images/mp4/tolo_3_5.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_video_5 {
  background: url(../images/mp4/tolo_3_6.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_video_6 {
  background: url(../images/mp4/tolo_3_7.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_video_7 {
  background: url(../images/mp4/tolo_3_8.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_video_8 {
  background: url(../images/mp4/tolo_3_9.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_video_9 {
  background: url(../images/mp4/tolo_3_10.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_video_10 {
  background: url(../images/mp4/tolo_3_11.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_video_11 {
  background: url(../images/mp4/tolo_3_12.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_video_12 {
  background: url(../images/mp4/tolo_3_13.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_video_13 {
  background: url(../images/mp4/tolo_3_14.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.lista_video_14 {
  background: url(../images/mp4/tolo_3_15.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.img_1 {
  background: url(../images/termekek/toloajtok/types/01.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.img_2 {
  background: url(../images/termekek/toloajtok/types/02.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.img_3 {
  background: url(../images/termekek/toloajtok/types/03.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.kilincs_1 {
  background: url(../images/termekek/ablakok/kilincs.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.uveg_1 {
  background: url(../images/termekek/ablakok/uveg.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.fogantyu_1 {
  background: url(../images/termekek/bejarati_ajtok/fogantyu.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.ajto_1 {
  background: url(../images/termekek/bejarati_ajtok/ajto.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.buko-nyilo {
  background: url(../images/termekek/ablakok/buko-nyilo.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.rejtett-szarny {
  background: url(../images/termekek/ablakok/rejtett-szarny.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.panorama-ablak {
  background: url(../images/termekek/ablakok/panorama-ablak.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.slim {
  background: url(../images/termekek/ablakok/slim.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.paralel {
  background: url(../images/termekek/ablakok/paralel.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.tomorszellozteto {
  background: url(../images/termekek/ablakok/tomorszellozteto.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.uvegezettszellozteto {
  background: url(../images/termekek/ablakok/uvegezettszellozteto.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.buko-nyilo-erkelyajto {
  background: url(../images/termekek/ablakok/buko-nyilo-erkelyajto.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.balkon {
  background: url(../images/termekek/ablakok/balkon.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.rejtett-erkelyajto {
  background: url(../images/termekek/ablakok/rejtett-erkelyajto.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.pd-erkelyajto {
  background: url(../images/termekek/ablakok/pd-erkelyajto.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.fuggonyfalba-rejtett-erkelyajto {
  background: url(../images/termekek/ablakok/fuggonyfalba-rejtett-erkelyajto.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.bejarati-uvegezett {
  background: url(../images/termekek/bejarati_ajtok/bejarati-uvegezett.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.bejarati-panelbetetes {
  background: url(../images/termekek/bejarati_ajtok/bejarati-panelbetetes.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.bejarati-rejtettpantos {
  background: url(../images/termekek/bejarati_ajtok/bejarati-rejtettpantos.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.bejarati-uvegburkolatos {
  background: url(../images/termekek/bejarati_ajtok/bejarati-uvegburkolatos.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.bejarati-design {
  background: url(../images/termekek/bejarati_ajtok/bejarati-design.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.bejarati-uvegbetetes {
  background: url(../images/termekek/bejarati_ajtok/bejarati-uvegbetetes.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.bejarati-uvegezettforgo {
  background: url(../images/termekek/bejarati_ajtok/bejarati-uvegezettforgo.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.bejarati-tomorforgo {
  background: url(../images/termekek/bejarati_ajtok/bejarati-tomorforgo.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.arnyekolas-fenybevetito {
  background: url(../images/termekek/arnyekolok/gallery/fenybevetito/cover.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.arnyekolas-fenyzaro {
  background: url(../images/termekek/arnyekolok/02.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.arnyekolas-clamellas {
  background: url(../images/termekek/arnyekolok/03.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.ffpd {
  background: url(../images/termekek/fuggonyfalak/ffpd.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.ffrf {
  background: url(../images/termekek/fuggonyfalak/ffrf.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.smart {
  background: url(../images/termekek/bejarati_ajtok/smart.jpg) no-repeat center center;
  background-size: cover;
}

.types .block.textblock {
  background: #333e48;
  color: #ffffff;
  text-align: justify;
  line-height: 24px;
  padding: 40px 50px;
}

.types .block.textblock h2 {
  color: #aeddf8;
  font-family: DINPro-Bold, Helvetica;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: left;
}

.types .block.textblock p {
  width: 100%;
  font-size: 16px;
}

.types .block.textblock .bigUL {
  font-size: 18px;
  line-height: 32px;
}

.types .block .title {
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  color: #333e48;
  font-size: 20px;
  text-transform: uppercase;
  padding: 15px 40px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.types .block .listtitle {
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  color: #333e48;
  font-size: 16px;
  text-transform: uppercase;
  padding: 15px 40px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.types .block:hover .listtitle {
  color: #e55525;
}

.types .block .caption {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.82);
  text-align: justify;
  line-height: 24px;
  color: #333e48;
}

.types .block .caption .close-btn {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  text-align: right;
}

.types .block .caption h2 {
  color: #333e48;
  font-size: 20px;
  text-transform: uppercase;
  padding: 30px 30px 0 30px;
  margin: 20px 0 0 0;
}

.types .block .caption p {
  width: 100%;
  font-size: 16px;
  padding: 30px 30px 0 30px;
  margin: 0;
}

.types .block .caption ul {
  margin-top: 30px;
  margin-left: 30px;
  font-size: 16px;
}

.productGallery {
  width: 70%;
  height: 460px;
  margin: 50px auto;
}

.productGallery h2 {
  color: #e55525;
  text-transform: uppercase;
  font-family: DINPro-Bold, Helvetica;
  font-size: 26px;
  text-align: left;
  margin-bottom: 10px;
}

.productGallery .pictures div {
  padding: 0;
  overflow: hidden;
}

.productGallery .pictures .image {
  display: block;
  height: 460px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.productGallery .pictures .image.image1 {
  background: url(../images/termekek/toloajtok/01.jpg) no-repeat center center;
  background-size: cover;
}

.productGallery .pictures .image.image2 {
  background: url(../images/termekek/toloajtok/02.jpg) no-repeat center center;
  background-size: cover;
  height: 230px;
}

.productGallery .pictures .image.image3 {
  background: url(../images/termekek/toloajtok/03.jpg) no-repeat center center;
  background-size: cover;
  height: 230px;
}

.productGallery .pictures .image.image4 {
  background: url(../images/termekek/ablakok/buko-nyilo/01.jpg) no-repeat center center;
  background-size: cover;
}

.productGallery .pictures .image.image5 {
  background: url(../images/termekek/ablakok/buko-nyilo/02.jpg) no-repeat center center;
  background-size: cover;
  height: 230px;
}

.productGallery .pictures .image.image6 {
  background: url(../images/termekek/ablakok/buko-nyilo/03.jpg) no-repeat center center;
  background-size: cover;
  height: 230px;
}

.productGallery .pictures .image:hover {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

h2.orange {
  color: #e55525;
  text-transform: uppercase;
  font-family: DINPro-Bold, Helvetica;
  font-size: 26px;
}

.downloadBox {
  width: 70%;
  margin: 20px auto;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  background: #ffffff;
  border: 1px solid #f1f1f1;
  padding: 20px 30px;
}

.downloadBox h2 {
  margin: 0 0 15px 0;
  font-size: 20px;
}

.downloadBox p {
  margin-bottom: 15px;
}

.downloadBox .orange {
  color: #e55525;
}

.downloadBox .btn-primary {
  font-size: 13px;
  padding: 5px 10px;
}

.productOffer {
  display: block;
  width: 800px;
  height: 152px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  background: #f1f1f1;
  border: 1px solid #f1f1f1;
  padding: 20px;
  text-align: left;
  text-decoration: none;
  color: #111;
  margin: 20px auto;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.productOffer img {
  display: block;
  width: 150px;
  height: 112px;
  float: left;
  margin-right: 30px;
}

.productOffer span {
  display: inline-block;
  color: #333e48;
  text-transform: uppercase;
  font-size: 22px;
  padding-bottom: 15px;
  font-family: DINPro-Bold, Helvetica;
}

.productOffer:hover {
  background: transparent;
  text-decoration: none;
}

/*
    pager
*/
.pager {
  display: inline-block;
  margin: auto;
  margin-bottom: 40px;
}

.pager .page {
  float: left;
  margin: 0 8px;
  width: 40px;
  height: 40px;
}

.pager .page a, .pager .page.first a, .pager .page.last a {
  display: block;
  width: 40px;
  height: 40px;
  background: #eee;
  border: solid 1px #ccc;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  color: #005a91;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
}

.pager .page a:hover, .pager .page.first a:hover, .pager .page.last a:hover {
  background: #fff;
}

.pager .page.active {
  border: solid 1px #ccc;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  color: #005a91;
  text-align: center;
  line-height: 40px;
  background: #fff;
}

.karrierHeader {
  background: url(../images/karrier/karrierHeader.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  position: relative;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.karrierHeader.karrierSub {
  background: none;
  margin-bottom: 20px;
}

.karrierHeader.karrierSub h1 {
  text-align: center;
  padding-bottom: 20px;
  color: #111;
  font-size: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 18px 0 10px 0;
  margin-bottom: 10px;
  text-shadow: none;
  line-height: 50px;
}

.karrierHeader.karrierSub h2 {
  text-transform: uppercase;
  color: #111;
  font-size: 26px;
  text-align: center;
  padding: 0 60px 20px 60px;
  background: transparent;
  line-height: 38px;
  margin-bottom: 0;
  text-shadow: none;
}

.karrierHeader.karrierSub h2 span {
  background: #fc9100;
  padding: 0 12px;
  font-family: DINPro-Bold, Helvetica;
}

.karrierHeader h1 {
  text-align: center;
  color: #fff;
  font-size: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 18px 0 10px 0;
  margin-bottom: 0;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.karrierHeader h2 {
  text-transform: uppercase;
  color: #fff;
  font-size: 23px;
  text-align: center;
  padding: 0 60px 20px 60px;
  background: transparent;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  line-height: 38px;
  margin-bottom: 0;
}

.karrierHeader h2 span {
  background: #fc9100;
  padding: 0 8px;
  font-family: DINPro-Bold, Helvetica;
}

.openPositions a {
  display: block;
  color: #e55525;
  font-size: 18px;
  font-family: DINPro-Bold, Helvetica;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 15px;
  border: solid 1px #eee;
  background: #ffffff;
  margin-top: 20px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.openPositions a:hover {
  color: #333e48;
}

.openPositions a span {
  font-size: 15px;
  text-decoration: none;
  color: #111;
  font-family: DINPro-Regular, Helvetica;
}

.justOnMobile {
  display: none;
}

.quote {
  width: 90%;
  padding: 15px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  box-shadow: 0px 0px 20px #eee;
  -webkit-box-shadow: 0px 0px 20px #eee;
  -moz-box-shadow: 0px 0px 20px #eee;
  -o-box-shadow: 0px 0px 20px #eee;
  margin: 0 auto 50px auto;
  display: table;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.quote .img-circle {
  border: solid 1px #eee;
  display: inline-block;
  float: left;
  margin-left: -30px;
  margin-right: 20px;
  width: 70px;
  height: 70px;
}

.quote p {
  display: table-cell;
  vertical-align: middle;
  font-size: 15px;
}

.quote p em {
  font-size: 12px;
}

.quote:hover {
  box-shadow: 0px 0px 10px #ccc;
  -webkit-box-shadow: 0px 0px 10px #ccc;
  -moz-box-shadow: 0px 0px 10px #ccc;
  -o-box-shadow: 0px 0px 10px #ccc;
}

.reading p, .reading ul, .reading h2 {
  margin-bottom: 20px;
}

.reading .btn {
  margin-bottom: 10px;
}

.upperBlock {
  padding: 0 20px 30px 0;
  position: relative;
  z-index: 2;
  background: #fbfbfb;
}

.upperBlock.paddingMore {
  padding-top: 30px;
}

.gap {
  height: 280px;
  position: relative;
  z-index: 2;
  display: none;
}

.gap.show {
  display: block;
}

.bannerWrap {
  position: relative;
  padding: 0;
  z-index: 1;
  width: 730px;
  height: 280px;
}

.bannerWrap.slipBelow.fixed {
  position: fixed;
}

.postPicture {
  display: block;
  float: left;
  margin: 0 20px 10px 0;
  border: none;
  background: none;
}

.date {
  font-style: italic;
  font-size: 12px;
}

.noMarginRight {
  margin-right: 0;
}

.nextPost {
  display: inline-block;
  background: #f2f2f2;
  border: solid 1px #dfdfdf;
  margin: 30px auto;
  padding: 12px 20px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.roundCornerImageWithBorder {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  border: solid 1px #eee;
  margin: 20px 0;
}

/* checkbox btn */
span.checkbox {
  width: 32px;
  height: 31px;
  padding: 0 8px 0 0;
  background: url(../images/checkbox_bg.png) no-repeat;
  display: block;
  clear: left;
  float: left;
  cursor: pointer;
}

/*
    overwrite basics
*/
.badge-remastered {
  background: #ffffff;
  color: #6c879f;
  display: inline;
  position: relative;
  top: -2px;
  margin-left: 4px;
  font-family: Helvetica, Arial;
  font-weight: normal;
  border: 1px solid #eee;
  padding: 2px 4px 1px 4px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -o-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
}

.tooltip-inner {
  background-color: #333e48;
}

.tooltip-arrow {
  border-top-color: #333e48 !important;
}

.navbar-default .navbar-nav > .active {
  background: none;
}

.navbar-fixed-top .navbar-collapse {
  max-height: 500px;
}

/*
    plugins
*/
/* ACCORDION */
/* GALLERY EFFECT */
.view {
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
  display: block;
  border: 10px solid #fff;
  overflow: hidden;
  position: relative;
  text-align: center;
  -webkit-box-shadow: 0 1px 3px #ccc;
  -moz-box-shadow: 0 1px 3px #ccc;
  box-shadow: 0 1px 3px #ccc;
  cursor: pointer;
  background: #fff;
}

.view .mask, .view .content {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
}

.view img {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.view h2 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 14px;
  padding: 6px 4px;
  background: rgba(0, 90, 154, 0.8);
  margin: 30px 0 0px 0;
}

.view p {
  font-size: 12px;
  height: 56px;
  position: relative;
  color: #fff;
  padding: 10px 20px 20px;
  text-align: center;
  text-shadow: 0px 1px 2px #000000;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.view .info {
  width: 100px;
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  background: rgba(0, 90, 154, 0.8);
  color: #fff;
  text-transform: uppercase;
  -webkit-box-shadow: 0 0 1px #000;
  -moz-box-shadow: 0 0 1px #000;
  box-shadow: 0 0 1px #000;
}

.view-first img {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.view-first .mask {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.view-first h2 {
  -webkit-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  -o-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  transform: translateY(-100px);
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.view-first p {
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -o-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.view-first:hover img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.view-first .info {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.view-first:hover .mask {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}

.view-first:hover h2,
.view-first:hover p,
.view-first:hover .info {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.view-first:hover p {
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  -ms-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.view-first:hover .info {
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  -ms-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

#cssmenu,
#cssmenu ul,
#cssmenu li,
#cssmenu a {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  font-weight: normal;
  text-decoration: none;
  line-height: 42px;
  position: relative;
}

#cssmenu {
  width: 100%;
  margin-top: 30px;
}

#cssmenu a {
  display: block;
  border-bottom: solid 1px #eee;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}

#cssmenu a:hover {
  border-color: #ccc;
}

#cssmenu > ul > li {
  position: relative;
}

#cssmenu > ul > li > a {
  font-size: 16px;
  text-transform: uppercase;
  font-family: DINPro-Bold, Helvetica;
}

#cssmenu > ul > li > a:hover {
  color: #e55525;
}

#cssmenu ul ul {
  display: none;
}

#cssmenu ul ul li {
  background: url(../images/breadcrumbArrow.png) no-repeat 1px 17px;
  background: -webkit-image-set(url(../images/breadcrumbArrow.png) 1x, url(../images/breadcrumbArrow@2x.png) 2x) no-repeat 1px 17px;
  background-size: 4px 8px;
  padding-left: 20px;
}

#cssmenu ul ul li:last-child {
  border-bottom: none;
}

#cssmenu ul ul a {
  color: #333e48;
}

#cssmenu ul ul a:hover {
  color: #e55525;
}

#cssmenu a span.openCloseIcon {
  display: block;
  width: 18px;
  height: 18px;
  background: url(../images/open.svg) no-repeat;
  background-size: 18px 18px;
  position: absolute;
  right: 10px;
  top: 12px;
}

#cssmenu ul li.has-sub.active a span.openCloseIcon {
  background: url(../images/close.svg) no-repeat;
  background-size: 18px 18px;
}

/* MODAL */
.portfolio-modal {
  margin: 10px;
}

.portfolio-modal .productOffer {
  width: 100%;
}

.portfolio-modal .modal-dialog {
  margin: 0;
  height: 100%;
  width: auto;
}

.portfolio-modal .modal-content {
  border-radius: 0;
  background-clip: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  min-height: 100%;
  padding: 100px 0;
  text-align: center;
  text-transform: none;
}

.portfolio-modal .modal-content h2 {
  margin-bottom: 25px;
  font-size: 30px;
  font-family: DINPro-Bold, Helvetica;
  color: #333e48;
  text-transform: uppercase;
}

.portfolio-modal .modal-content h4 {
  margin-bottom: 20px;
  font-size: 22px;
  font-family: DINPro-Bold, Helvetica;
  color: #e55525;
  text-transform: uppercase;
  text-align: left;
  font-family: DINPro-Bold, Helvetica;
}

.portfolio-modal .modal-content h4.offer {
  text-align: center;
}

.portfolio-modal .modal-content p {
  margin-bottom: 30px;
  font-size: 16px;
  text-align: justify;
}

.portfolio-modal .modal-content p.lead {
  font-size: 20px;
}

.portfolio-modal .modal-content .img-left {
  float: left;
  margin-right: 20px;
  margin-bottom: 15px;
}

.portfolio-modal .modal-content ul.list-inline {
  margin-bottom: 30px;
  margin-top: 0;
}

.portfolio-modal .modal-content img {
  margin-bottom: 30px;
}

.portfolio-modal .modal-content .separator {
  height: 1px;
  background: #eee;
  margin: 20px 0;
}

.portfolio-modal .brand {
  width: 162px;
  height: 40px;
  display: block;
  background: url(../images/kavLogo.svg) no-repeat 0 0;
  background-size: 162px 40px;
  text-indent: -9999px;
  position: absolute;
  left: 20px;
  top: 20px;
}

.portfolio-modal .close-modal {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: transparent;
  top: 15px;
  right: 15px;
  cursor: pointer;
  filter: alpha(opacity=40);
  opacity: 0.4;
}

.portfolio-modal .close-modal:hover {
  filter: alpha(opacity=90);
  opacity: 0.9;
}

.portfolio-modal .close-modal .lr {
  height: 50px;
  width: 1px;
  margin-left: 25px;
  background-color: #333e48;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Safari and Chrome */
  z-index: 1051;
}

.portfolio-modal .close-modal .lr .rl {
  height: 50px;
  width: 1px;
  background-color: #333e48;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  /* Safari and Chrome */
  z-index: 1052;
}

.portfolio-modal .modal-backdrop {
  opacity: 0.8;
  display: none;
}

/*
    RESPONSIVE
    media queries
*/
@media (hover: none) {
  .products .productsList .col-md-3 a:hover span.text, .products .productsList .col-sm-4 a:hover span.text {
    bottom: 0;
  }
}

@media only screen and (min-width: 1960px) {
  .productsList .col-xs-6 {
    display: block;
    width: 14%;
  }
}

@media only screen and (min-width: 1560px) {
  .thumbnail.myBlock {
    width: 350px;
    margin: auto;
  }
}

@media only screen and (min-width: 1560px) and (max-width: 1960px) {
  .products.thumbnailsPage h1.big {
    text-align: left;
    margin-left: 20px;
  }
  .products.thumbnailsPage .breadcrumb {
    float: left;
    margin-left: 20px;
  }
  .products.thumbnailsPage .lead {
    float: right;
    text-align: left;
    margin-right: 30px;
    margin-bottom: 0;
    position: relative;
    top: -56px;
    width: 70%;
    padding: 18px 25px;
    border: 1px solid #eee;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    font-size: 17px;
  }
  .products.thumbnailsPage .lead.smaller {
    width: 50%;
  }
  .productsList .col-xs-6 {
    display: block;
    width: 20%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1560px) {
  .products.thumbnailsPage h1.big {
    text-align: left;
    margin-left: 20px;
  }
  .products.thumbnailsPage .breadcrumb {
    float: left;
    margin-left: 20px;
  }
  .products.thumbnailsPage .lead {
    float: right;
    text-align: left;
    margin-right: 30px;
    margin-bottom: 0;
    position: relative;
    top: -56px;
    width: 60%;
    padding: 18px 25px;
    border: 1px solid #eee;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    font-size: 17px;
  }
  .products.thumbnailsPage .lead.smaller {
    width: 48%;
  }
}

@media only screen and (min-width: 320px) and (max-width: 1200px) {
  .product-teaser .productsHome .col-md-4 a span.text, .product-teaser .productsHome .col-sm-6 a span.text, .product-teaser .productsHome .col-xs-12 a span.text {
    font-size: 26px;
  }
  .productFilter .twelve {
    width: 60%;
  }
  .hero-spacer {
    height: 500px;
  }
  .hero-spacer .hero-spacerContent {
    width: 92%;
    padding: 90px 4% 0 4%;
  }
  .hero-spacer .hero-spacerContent h1 {
    margin-bottom: 16px;
    font-size: 36px;
  }
  .hero-spacer .hero-spacerContent p.text {
    width: 100%;
    margin-bottom: 16px;
  }
  .hero-spacer .hero-spacerContent .btn {
    padding: 12px 22px;
  }
  .hero-spacer.landingPageHeader {
    height: 600px;
  }
  .hero-spacer.landingPageHeader h1 {
    font-size: 32px;
    margin-left: 25px;
  }
  .hero-spacer.landingPageHeader .btn_1, .hero-spacer.landingPageHeader .btn_2, .hero-spacer.landingPageHeader .btn_3, .hero-spacer.landingPageHeader .btn_4 {
    margin-left: 30px;
    height: auto;
    line-height: 22px;
  }
  .hero-spacer.landingPageHeader .btn_1 img, .hero-spacer.landingPageHeader .btn_2 img, .hero-spacer.landingPageHeader .btn_3 img, .hero-spacer.landingPageHeader .btn_4 img {
    width: 140px;
  }
  .hero-spacer.landingPageHeader .btn_4 {
    display: none;
  }
  .hero-spacer.workflow {
    height: auto;
  }
  .hero-spacer.workflow .hero-spacerContent h1 {
    margin-bottom: 10px;
  }
  .hero-spacer.workflow .hero-spacerContent p.text {
    font-size: 17px;
  }
  .hero-spacer.workflow .handdraw {
    width: 90%;
    background-size: contain;
    margin: 0;
  }
  footer {
    text-align: center;
    background: #ffffff;
    padding: 30px 0 0 0;
  }
  footer .footerLeft {
    padding-left: 0;
  }
  footer .footerLeft .footerSocialIcons {
    float: none;
    display: inline-block;
    margin: auto;
    margin-bottom: 40px;
  }
  footer .footerCenter {
    display: none;
  }
  footer .footerRight {
    position: relative;
    clear: both;
    display: inline-block;
    margin: auto;
  }
  footer .footerRight .footerAluta {
    position: relative;
    right: 0;
    top: 0;
    float: left;
  }
  footer .footerRight .footerUED {
    position: relative;
    right: 0;
    top: 0;
    float: left;
    margin: 0 20px;
  }
  footer .footerRight .footerAA {
    position: relative;
    right: 0;
    top: 0;
    float: left;
  }
  footer .footerRight .footerMLV2017 {
    position: relative;
    right: 0;
    top: -15px;
    float: left;
    margin: 0 0 0 30px;
  }
  footer .bottom {
    text-align: center;
    position: relative;
    bottom: 0;
    right: 0;
    padding: 40px 0 20px 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1300px) {
  .types .block.textblock .bigUL {
    font-size: 15px;
    line-height: 26px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .sidebar .sidebarNewsBlock .caption {
    display: inline-block;
    width: 180px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 992px) {
  .landingpage .referenciaKepek {
    height: 120px;
  }
  .sidebar .sidebarNewsBlock .caption {
    display: inline-block;
    width: auto;
  }
  .workflowWrap .step {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: 0;
    height: auto;
  }
  .workflowWrap .step .num {
    float: none;
    margin: auto;
  }
  .workflowWrap .step h2 {
    text-align: center;
    padding-left: 0;
    background: #fbfbfb;
    margin-bottom: 0;
    padding-bottom: 20px;
    margin-top: 20px;
  }
  .workflowWrap .step p {
    padding-right: 0;
    padding-left: 0;
    text-align: justify;
    padding-bottom: 20px;
  }
  .workflowWrap .step.right {
    padding-left: 30px;
    padding-right: 30px;
    margin-left: 0;
  }
  .workflowWrap .step.right .num {
    float: none;
    margin: auto;
  }
  .workflowWrap .step.right h2, .workflowWrap .step.right p {
    margin-right: 0;
  }
  .workflowWrap .step.right.sixth h2, .workflowWrap .step.right.sixth p {
    margin-right: 0;
    padding-bottom: 20px;
  }
  .workflowWrap .step.right h2 {
    text-align: center;
    padding-right: 0;
    background: #fbfbfb;
  }
  .workflowWrap .step.right p {
    padding-left: 0;
    padding-right: 0;
    text-align: justify;
  }
  .workflowWrap .step.second {
    margin-top: 20px;
  }
  .workflowWrap .step.third {
    margin-top: 20px;
  }
  .workflowWrap .step.fourth {
    margin-top: 20px;
  }
  .workflowWrap .step.fifth {
    margin-top: 20px;
  }
  .workflowWrap .step.sixth {
    margin-top: 20px;
  }
  .downloadBox {
    width: 99%;
  }
  .types.biglist {
    padding-left: 15px;
    padding-right: 15px;
  }
  .types .block.textblock {
    height: auto;
  }
  .types .block.textblock h2 {
    font-size: 23px;
  }
  .types .block.textblock p {
    font-size: 15px;
  }
  .types .block.imgblock {
    height: 320px;
  }
  .types .block .title {
    font-size: 18px;
    padding: 15px 30px;
  }
  .types .block .listtitle {
    font-size: 18px;
    padding: 15px 30px;
  }
  .types .block .caption h2 {
    font-size: 18px;
    text-transform: uppercase;
    padding: 20px 20px 0 20px;
    margin: 10px 0 0 0;
  }
  .types .block .caption p {
    font-size: 15px;
    padding: 20px 20px 0 20px;
  }
  .types .block .caption ul {
    margin-top: 20px;
    margin-left: 20px;
    font-size: 15px;
  }
  .page-tabs-wrap {
    width: 90%;
  }
  .description p {
    width: 70%;
  }
  .text-block p {
    width: 80%;
  }
  .sidebarForm {
    width: 100%;
    padding-left: 15px;
  }
  .hero-spacer {
    height: 400px;
  }
  .hero-spacer.landingPageHeader {
    height: 600px;
  }
  .hero-spacer.landingPageHeader h1 {
    font-size: 24px;
    margin-left: 20px;
  }
  .hero-spacer.landingPageHeader p {
    margin-left: 20px;
  }
  .hero-spacer.landingPageHeader .btn_1, .hero-spacer.landingPageHeader .btn_2, .hero-spacer.landingPageHeader .btn_3, .hero-spacer.landingPageHeader .btn_4 {
    margin-left: 30px;
    height: auto;
    line-height: 22px;
    font-size: 12px;
  }
  .hero-spacer.landingPageHeader .btn_1 img, .hero-spacer.landingPageHeader .btn_2 img, .hero-spacer.landingPageHeader .btn_3 img, .hero-spacer.landingPageHeader .btn_4 img {
    width: 110px;
  }
  .hero-spacer.landingPageHeader .btn_4 {
    display: none;
  }
  .hero-spacer .hero-spacerContent {
    padding-top: 50px;
  }
  .hero-spacer .hero-spacerContent h1 {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 38px;
  }
  .thumbnail.myBlock {
    width: 300px;
    margin: auto;
  }
}

@media only screen and (min-width: 320px) and (max-width: 890px) {
  .productPreferences h2 {
    margin-bottom: 18px;
  }
  .productPreferences ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .productOffer {
    width: 94%;
  }
  .productOffer img {
    margin-right: 15px;
  }
  .productOffer span {
    font-size: 20px;
    padding-bottom: 10px;
  }
  .justOnSmallDisplay {
    display: block !important;
  }
  .mega-dropdown {
    display: none !important;
  }
  .searchTrigger {
    display: none;
  }
  .searchTriggerMobile {
    display: block;
  }
  .navbar-header {
    float: none;
  }
  .navbar-header .navbar-toggle {
    display: block;
    border: none;
  }
  .navbar-header .navbar-toggle .icon-bar {
    background: #333e48;
  }
  .navbar-header .navbar-toggle:hover {
    background: none;
  }
  .navbar-header .navbar-toggle:hover .icon-bar {
    background: #e55525;
  }
  .navbar-collapse {
    border-top: none;
    width: 100%;
  }
  .navbar-collapse.collapse {
    display: none !important;
  }
  .navbar-nav {
    float: none !important;
    margin: 20px auto;
    width: 290px;
    text-align: center;
    border-top: 1px solid #eee;
  }
  .navbar-nav > li {
    float: none;
    border-bottom: 1px solid #eee;
  }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 8px 0;
  }
  .navbar-text {
    float: none;
    margin: 15px 0;
  }
  /* since 3.1.0 */
  .navbar-collapse.collapse.in {
    display: block !important;
  }
  .collapsing {
    overflow: hidden !important;
  }
  .nav li a.markedMenuItem {
    background: none;
    color: #333e48;
  }
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
  .reg {
    padding-left: 0;
    margin-top: 30px;
  }
  .productGallery {
    width: 70%;
  }
  .productGallery .pictures .image {
    height: 230px;
  }
  .productOffer {
    height: auto;
  }
  .productOffer img {
    display: none;
  }
  .description h2 {
    font-size: 24px;
  }
  .description p {
    width: 90%;
    font-size: 16px;
    line-height: 28px;
  }
  .productPreferences div .image {
    width: 100%;
    left: 0;
  }
  .productPreferences .text {
    padding: 20px;
  }
  footer .bottom {
    width: 90%;
    margin: auto;
  }
  .bottomCarousel {
    width: 90%;
  }
  .media-carousel {
    /* Previous button  */
    /* Next button  */
  }
  .media-carousel .carousel-control.left {
    left: -40px;
  }
  .media-carousel .carousel-control.right {
    right: -40px;
  }
  .container-fluid > .navbar-header {
    margin-left: 0;
    margin-right: 15px;
  }
  .productFilter .twelve {
    width: 90%;
  }
  .karrierHeader {
    height: auto;
  }
  .karrierHeader h1 {
    font-size: 30px;
  }
  .karrierHeader h2 {
    font-size: 22px;
  }
  .karrierHeader .openPositions a {
    margin-bottom: 20px;
  }
  .karrierSub {
    height: auto;
  }
  .hero-spacer.landingPageHeader {
    height: 400px;
  }
  .hero-spacer.landingPageHeader .productMenuBoxes {
    height: 110px;
  }
  .hero-spacer.landingPageHeader h1 {
    font-size: 32px;
    margin-left: 0;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
  }
  .hero-spacer.landingPageHeader p {
    margin-left: 0;
    text-align: center;
    display: block;
    margin-top: 10px;
    padding-top: 10px;
  }
  .hero-spacer.landingPageHeader #hashlink {
    display: none;
  }
  .hero-spacer.landingPageHeader .btn_1, .hero-spacer.landingPageHeader .btn_2, .hero-spacer.landingPageHeader .btn_3, .hero-spacer.landingPageHeader .btn_4 {
    margin-left: 30px;
    height: auto;
    line-height: 22px;
  }
  .hero-spacer.landingPageHeader .btn_1 img, .hero-spacer.landingPageHeader .btn_2 img, .hero-spacer.landingPageHeader .btn_3 img, .hero-spacer.landingPageHeader .btn_4 img {
    width: 140px;
  }
  .hero-spacer.landingPageHeader .btn_4 {
    display: none;
  }
  .hero-spacer.workflow .handdraw {
    width: 99%;
    height: 78px;
    background: url(../images/home/workflow_handdraw_mobile.png) no-repeat center center;
    background-size: contain;
  }
  .landingpage h2 {
    font-size: 22px;
  }
  .landingpage p {
    font-size: 15px;
    text-align: justify;
  }
  .landingpage .features .featureBlock {
    width: 90%;
    margin: 0 5%;
    float: left;
    text-align: center;
    margin-bottom: 20px;
  }
  .landingpage .fullwidthBtn {
    width: 100%;
    height: 50px;
    line-height: 50px;
    display: block;
    color: #ffffff;
    background: #377bb5;
    text-align: center;
    font-size: 18px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
  }
  .landingpage .fullwidthBtn.orange {
    background: #e55525;
    height: auto;
    line-height: 22px;
    padding: 12px 0;
  }
  .landingpage .fullwidthBtn.orange span {
    display: none;
    font-size: 13px;
  }
  .landingpage .fullwidthBtn.orange span img {
    margin-right: 10px;
  }
  .landingpage .fullwidthBtn:hover {
    text-decoration: none;
    background: #333e48;
  }
  .landingpage .factoryBlock {
    background: url(../images/landing_page/factory_bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 20px;
  }
  .landingpage .factoryBlock h1, .landingpage .factoryBlock p {
    text-align: center;
  }
  .landingpage .factoryBlock h1 {
    color: #e55525;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 22px;
  }
  .landingpage .factoryBlock p {
    display: block;
    width: 90%;
    margin: 5px auto 0 auto;
    line-height: 24px;
    font-size: 15px;
  }
  .landingpage .factoryBlock a.highslide img {
    margin: 0 0 20px 0;
  }
  .landingpage .factoryBlock.kavBlock {
    background: none;
  }
  .landingpage .factoryBlock.kavBlock p {
    width: 86%;
    position: relative;
  }
  .landingpage .factoryBlock.kavBlock p .quotemarkfirst {
    display: block;
    position: absolute;
    left: -20px;
    top: 0px;
    width: 27px;
    height: 17px;
    background: url(/images/landing_page/quotemarkfirst.png) no-repeat 0 0;
    background-size: 27px 17px;
  }
  .landingpage .factoryBlock.kavBlock p .quotemarkend {
    display: block;
    position: absolute;
    right: -20px;
    bottom: 0px;
    width: 27px;
    height: 17px;
    background: url(/images/landing_page/quotemarkend.png) no-repeat 0 0;
    background-size: 27px 17px;
  }
  .landingpage .referenciaKepek {
    display: block;
    width: 20%;
    height: 80px;
    float: left;
    text-indent: -9999px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
  }
  .landingpage .referenciaKepek:hover {
    filter: alpha(opacity=80);
    opacity: 0.8;
  }
  .landingpage .referenciaKepek.kep_1 {
    background: url(/images/landing_page/ref_1.jpg) no-repeat top center;
    background-size: cover;
  }
  .landingpage .referenciaKepek.kep_2 {
    background: url(/images/landing_page/ref_2.jpg) no-repeat top center;
    background-size: cover;
  }
  .landingpage .referenciaKepek.kep_3 {
    background: url(/images/landing_page/ref_3.jpg) no-repeat top center;
    background-size: cover;
  }
  .landingpage .referenciaKepek.kep_4 {
    background: url(/images/landing_page/ref_4.jpg) no-repeat top center;
    background-size: cover;
  }
  .landingpage .referenciaKepek.kep_5 {
    background: url(/images/landing_page/ref_5.jpg) no-repeat top center;
    background-size: cover;
  }
  .landingpage .productMenu {
    background: #f1f1f1;
    height: auto;
  }
  .landingpage .productMenu h2 {
    font-size: 20px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .landingpage .productMenu ul {
    width: 100%;
    padding: 20px 0;
    margin: auto;
    text-align: center;
  }
}

@media only screen and (min-width: 320px) and (max-width: 640px) {
  .sidebar .sidebarNewsBlock .caption {
    display: inline-block;
    width: 250px;
  }
  footer .footerLeft .footerSocialIcons {
    margin-bottom: 10px;
  }
  footer .footerRight {
    width: 100%;
    height: 80px;
  }
  footer .footerRight .footerAluta, footer .footerRight .footerUED, footer .footerRight .footerAA, footer .footerRight .footerMLV2017 {
    float: left;
    width: 15%;
    margin: 0 5%;
    background-position: center center;
    -webkit-background-size: contain;
    background-size: contain;
  }
  footer .bottom {
    padding: 0 0 10px 0;
  }
  .text-block p {
    width: 96%;
  }
  .justOnMobile {
    display: block;
  }
}

@media only screen and (min-width: 320px) and (max-width: 520px) {
  .page-tabs-wrap {
    width: 98%;
  }
  .productGallery {
    width: 100%;
  }
  .product-teaser h1.big {
    font-size: 30px;
  }
  .product-teaser-smaller h1.big {
    font-size: 24px;
  }
  .products .productsList .col-md-3 a, .products .productsList .col-sm-4 a {
    height: 280px;
  }
  .video video {
    margin-top: -150px;
  }
  .productsList .col-xs-6 {
    display: block;
    width: 100%;
  }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
  .sidebar .sidebarNewsBlock .caption {
    display: inline-block;
    width: 240px;
  }
  .hero-spacer {
    height: 300px;
    text-align: center;
  }
  .hero-spacer .hero-spacerContent {
    padding-top: 50px;
  }
  .hero-spacer .hero-spacerContent h1 {
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 21px;
  }
  .hero-spacer .hero-spacerContent p.text {
    font-size: 16px;
    line-height: 17px;
  }
  .hero-spacer .hero-spacerContent .btn {
    padding: 8px 16px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 400px) {
  .sidebar .sidebarNewsBlock .caption {
    display: inline-block;
    width: 180px;
  }
  .hero-spacer {
    height: 300px;
    text-align: center;
  }
  .hero-spacer .hero-spacerContent {
    padding-top: 45px;
  }
  .hero-spacer .hero-spacerContent h1 {
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 21px;
  }
  .hero-spacer .hero-spacerContent p.text {
    font-size: 15px;
    line-height: 17px;
  }
  .hero-spacer.map {
    height: 380px;
    margin-bottom: 60px;
  }
  .hero-spacer.map .mapOverlay {
    height: 380px;
  }
  .hero-spacer.map .iframeMap {
    width: 100%;
    height: 380px;
  }
  .hero-spacer.map .mapContent {
    width: 300px;
    padding: 10px;
    margin-left: -150px;
    bottom: 0;
    text-align: left;
  }
  .hero-spacer.map .mapContent h2 {
    margin-bottom: 8px;
    font-size: 16px;
  }
  .hero-spacer.map .mapContent p {
    font-size: 12px;
    line-height: 20px;
  }
  .hero-spacer.map .mapContent .img-circle {
    border: solid 1px #eee;
    display: inline-block;
    float: left;
    margin-right: 15px;
    width: 80px;
    height: 80px;
  }
  .products .productsList .col-md-3 a, .products .productsList .col-sm-4 a {
    height: 200px;
  }
  .video video {
    margin-top: -110px;
  }
}

.navbar-toggle .icon-bar {
  position: relative;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.navbar-toggle.active .icon-bar:nth-of-type(1) {
  top: 6px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar-toggle.active .icon-bar:nth-of-type(2) {
  background-color: transparent;
}

.navbar-toggle.active .icon-bar:nth-of-type(3) {
  top: -6px;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
