/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
@font-face{
	font-family:'Gotham 700';
	src:url('./fonts/Gotham-Bold.eot?');
	src:url('./fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
		url('./fonts/Gotham-Bold.woff2') format('woff2'), 
		url('./fonts/Gotham-Bold.woff') format('woff'),
		url('./fonts/Gotham-Bold.ttf') format('truetype'),
		url('./fonts/Gotham-Bold.svg?#svgFontName') format('svg');
	font-style:normal;
}


@font-face{
	font-family:'Gotham 400';
	src:url('./fonts/Gotham-Book.eot?');
	src:url('./fonts/Gotham-Book.eot?#iefix') format('embedded-opentype'),
		url('./fonts/Gotham-Book.woff2') format('woff2'), 
		url('./fonts/Gotham-Book.woff') format('woff'),
		url('./fonts/Gotham-Book.ttf') format('truetype'),
		url('./fonts/Gotham-Book.svg?#svgFontName') format('svg');
	font-style:normal;
}

@font-face{
	font-family:'Cadiz 400';
	src:url('./fonts/Cadiz-Regular.eot?');
	src:url('./fonts/Cadiz-Regular.eot?#iefix') format('embedded-opentype'),
		url('./fonts/Cadiz-Regular.woff2') format('woff2'), 
		url('./fonts/Cadiz-Regular.woff') format('woff'),
		url('./fonts/Cadiz-Regular.ttf') format('truetype'),
		url('./fonts/Cadiz-Regular.svg?#svgFontName') format('svg');
	font-style:normal;
}

@font-face{
	font-family:'Cadiz 700';
	src:url('./fonts/Cadiz-Bold.eot?');
	src:url('./fonts/Cadiz-Bold.eot?#iefix') format('embedded-opentype'),
		url('./fonts/Cadiz-Bold.woff2') format('woff2'), 
		url('./fonts/Cadiz-Bold.woff') format('woff'),
		url('./fonts/Cadiz-Bold.ttf') format('truetype'),
		url('./fonts/Cadiz-Bold.svg?#svgFontName') format('svg');
	font-style:normal;
}

@font-face{
	font-family:'Nantes';
	src:url('./fonts/Nantes-Regular.eot?');
	src:url('./fonts/Nantes-Regular.eot?#iefix') format('embedded-opentype'),
		url('./fonts/Nantes-Regular.woff2') format('woff2'), 
		url('./fonts/Nantes-Regular.woff') format('woff'),
		url('./fonts/Nantes-Regular.ttf') format('truetype'),
		url('./fonts/Nantes-Regular.svg?#svgFontName') format('svg');
	font-style:normal;
}

*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html,
body {
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color: inherit;
	text-decoration:none;
}
a:hover {
	color: inherit;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	max-width:1280px;
	width:95%;
	margin:0 auto;
	position:relative;
}
.menu-item-mob-float{
	display: inline-block;
}
.banner-header{
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url('./img/background.jpg'); 
	position: relative;
}
.banner-header.home-banner{
	min-height: 800px;

}
.banner-header.bottom{
	background-position: left bottom;
	min-height: 800px;
}

.banner-image{
	position: absolute;
	top:47%;
	left: 50%;
	width: 62%;
	max-width: 880px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform:  translateX(-50%) translateY(-50%);
}
.hamburger-menu{
	display: none;
}
.menu-container{
	position: fixed;
	top: 0;
	width: 100%;
	height: 100px;
	z-index: 5;
	background: rgb(24,63,120);
	background: -moz-linear-gradient(106deg, rgba(24,63,120,1) 50%, rgba(18,119,83,1) 100%);
	background: -webkit-linear-gradient(106deg, rgba(24,63,120,1) 50%, rgba(18,119,83,1) 100%);
	background: linear-gradient(106deg, rgba(24,63,120,1) 50%, rgba(18,119,83,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#183f78",endColorstr="#127753",GradientType=1);
}
.menu-container.active{
	height: 100px;
}
.info-container-wrapper{
	width: 100%;
	position: relative;
	height: auto;
	background-color: #419175;

}
.menu-logo{
    width: auto;
    height: 58px;
    float: left;
    margin-top: 20px;
    margin-left: 30px;
    cursor: pointer;
}
.menu-items-container{
	float: right;
	display: inline-block;
    margin-top: 39px;
    margin-right: 60px;
}
.menu-items{
	float: left;
	display: inline-block;
	color: white;
	cursor: pointer;
	font-family:'Cadiz 400';
    font-size: 18px;
    line-height: 22px;
    margin-left: 80px;
}
.menu-items:nth-of-type(0){
	margin-left: 0;
}

.info-container{
	width: 50%;
	float: left;
	padding: 75px 135px 100px;
	font-family: 'Source Sans Pro', sans-serif;
}
.info-title{
	text-align: center;
	font-family:'Cadiz 700';
	font-size: 30px;
	line-height: 40px;
	color: white;
	margin-bottom: 20px;
	font-weight: 600;

}
.intro-floater{
	position: absolute;
	top:55%;
	left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform:  translateX(-50%) translateY(-50%);
    text-align: center;
    max-width: 800px;
}
.intro-img-banner{
    width: 280px;
    height: auto;
    margin-bottom: 40px;
    opacity: 0.6;
}
.intro-banner-title{
	font-family:'Cadiz 700';
	font-size: 60px;

	color: white;
	line-height: 70px;
	margin-bottom: 40px;
}
.intro-banner-link{
	display: inline-block;
    font-family: 'Cadiz 400';
    font-size: 18px;
    line-height: 22px;
    color: white;
    border-bottom: white 2px dotted;
    cursor:pointer;
}
.info-desc{
	text-align: center;
    font-size: 18px;
    line-height: 28px;
	color: white;
	font-weight: 400;
    font-family: 'Cadiz 400';

}
.info-container.left{
	background-color: #70c5a5;
}
.info-container.right{
	background-color: #419175;
}
.footer-container{
	background: rgb(214,178,164);
	background: -moz-radial-gradient(at 20% 10%, rgba(214,178,164,1) 0%, rgba(126,187,154,1) 100%);
	background: -webkit-radial-gradient(20% 10%, rgba(214,178,164,1) 0%, rgba(126,187,154,1) 100%);
	background: radial-gradient(at 20% 10%, rgba(214,178,164,1) 0%, rgba(126,187,154,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d6b2a4",endColorstr="#7ebb9a",GradientType=1);
	padding: 65px 0;
	text-align: center;
	position: relative;
}
.contact-button{
	width: 220px;
	margin: 0 auto 40px;
	font-size: 18px;
	color: white;
	text-transform: uppercase;
	border: white 2px solid;
    font-family: 'Cadiz 400';
	line-height: 48px;
	cursor: pointer;
	-webkit-transition:background-color 250ms ease-in-out, color 250ms ease-in-out;
	  -moz-transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
	  -o-transition: background-color 250ms ease-in-out, color 250ms ease-in-out;
    transition:  background-color 250ms ease-in-out, color 250ms ease-in-out;
}
.intro-cards-container{
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 100px 58px;
}
.intro-cards-title{
	text-align: center;
    font-family: 'Cadiz 400';
    font-size: 42px;
    line-height: 50px;
    color: #025157;
    margin-bottom: 65px;
}
.cards-wrapper{
	float: left;
	width: 33.33%;
	padding: 0 23px;
}
.cards-actual-container{
	width: 100%;
	position: relative;
	border: 2px #e5e5e5 solid;
	overflow: hidden;
	border-radius: 20px;
}
.cards-actual-container:after{
	content: '';
	display: inline-block;
	padding-top: 68.763848%;
}

.cards-blob-1{
	position: absolute;
    width: 32%;
    height: auto;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform:  translateY(-50%);
}
.cards-blob-2{
	position: absolute;
    width: 32%;
    height: auto;
    left: 0;
    bottom: 0;
    -webkit-transform: translateX(-48%) translateY(-4%) rotateZ(53deg);
    -ms-transform: translateX(-48%) translateY(-4%) rotateZ(53deg);
    transform:  translateX(-48%) translateY(-4%) rotateZ(53deg);
}

.cards-blob-3{
	position: absolute;
    width: 45%;
    height: auto;
    right: 0;
    -webkit-transform: translateY(-63%) translateX(18%);
    -ms-transform: translateY(-63%) translateX(18%);
    transform:  translateY(-63%) translateX(18%);
}

.cards-blob-4{
	position: absolute;
    width: 60%;
    height: auto;
    left: 0;
    bottom: 0;
    -webkit-transform: translateY(58%) translateX(-17%);
    -ms-transform: translateY(58%) translateX(-17%);
    transform:  translateY(58%) translateX(-17%);
}

.cards-blob-5{
	position: absolute;
    width: 50%;
    height: auto;
    left: 0;
    -webkit-transform: translateY(-76%) translateX(-13%) rotateZ(287deg);
    -ms-transform: translateY(-76%) translateX(-13%) rotateZ(287deg);
    transform:  translateY(-76%) translateX(-13%) rotateZ(287deg);
}
.cards-blob-6{
	position: absolute;
    width: 52%;
    height: auto;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(41%) translateX(29%) rotateZ(-74deg);
    -ms-transform: translateY(41%) translateX(29%) rotateZ(-74deg);
    transform:  translateY(41%) translateX(29%) rotateZ(-74deg);
}
.card-info-container{
	position: absolute;
	width: 100%;
	height: 100%;
	padding-top: 45px;
}
.card-title{
	text-align: center;
	color: #025157;
    font-family: 'Cadiz 400';
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 14px;
}
.card-description{
	color: black;
    font-family: 'Cadiz 400';
	text-align: center;
	font-size: 18px;
    line-height: 22px;
	width: 100%;
	max-width: 245px;
	margin:  0 auto;
}
.card-description a{
	color: #025157;
	border-bottom: 2px #025157 dotted;

}
.contact-button:hover{
	color: rgba(24,63,120,1);
	background-color: white;
}
.footer-info{
	width: 80%;
	margin:0 auto;
}
.footer-left{
	display: inline-block;
	float: left;

}
.footer-right{
	display: inline-block;
	float: right;
}
.social-btn{
	width: 40px;
    height: 40px;
    display: inline-block;
    margin: 0 5px 15px;
    cursor: pointer;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
	-webkit-transition:opacity 250ms ease-in-out;
	  -moz-transition: opacity 250ms ease-in-out;
	  -o-transition: opacity 250ms ease-in-out;
    transition:  opacity 250ms ease-in-out;
}
.social-btn.fb{
	background-image: url('./img/fb-hollow.png');
}
.social-btn.fb:hover{
	background-image: url('./img/facebook.png');
}
.social-btn.twt{
	background-image: url('./img/twitter.png');
}
.footer-logo{
	width: 260px;
	margin-bottom: 15px;
}

.footer-circle-logo {
    width: 85px;
    position: absolute;
    right: 60px;
    top: 115px;
}


.line {
	position: absolute;
    right: 0;
    height: 1px;
    background-color: red;
    width: 900px;
    top: 114px;
}

.line-bottom {
    position: absolute;
    right: 0;
    height: 1px;
    background-color: red;
    width: 1008px;
    top: 200px;
}
.footer-contact-info{
    font-family: 'Cadiz 400';
    width: 100%;
    text-align: center;
    max-width: 303px;
    color: white;
    font-size: 15px;
    line-height: 22px;
    margin: 0 auto;
}

.floating-information-container{
	width: 100%;
	max-width: 1030px;
	border-radius: 15px 15px 0 0;
	background-color: white;
    margin: -260px auto 0;
    position: relative;
    padding: 55px 68px 150px;
}
.float-section-header{
    font-family: 'Cadiz 400';
    text-align: center;
    line-height: 22px;
    color: #025157;
    font-size: 18px;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.float-section-title{
    font-family: 'Cadiz 700';
    text-align: center;
    line-height: 64px;
    color: black;
    font-size: 54px;
    margin-bottom: 25px;
}
.left-description-section{
	float: left;
	width: 50%;
	text-align: left;
	font-size: 18px;
	line-height: 22px;
    font-family: 'Nantes';
    padding-right: 16px;
}
.right-description-section{
	float: left;
	width: 50%;
	text-align: left;
	font-size: 18px;
	line-height: 22px;
    font-family: 'Nantes';
    padding-left: 16px;
}
.circle-product-container{
	width: 100%;
	height: 350px;
	position: relative;
	margin-top: 80px;
}
.center-product-circle{
	position: relative;
	width: 350px;
	height: 350px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center left;
	border-radius: 50em;
	margin: 0 auto ;
	z-index: 1;
}
.text-floater-center-left{
	width: 50%;
	position: absolute;
	top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform:  translateY(-50%);
    left: 0;
    font-family: 'Cadiz 700';
    font-size: 16px;
    line-height: 20px;
}
.text-floater-center-right{
	width: 50%;
	position: absolute;
	top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform:  translateY(-50%);
    right: 0;
    font-family: 'Cadiz 700';
    font-size: 16px;
    line-height: 20px;
    text-align: right;
}
.text-floater-top-left{
	width: -webkit-calc(50% - 90px);
	width: calc(50% - 90px);
	position: absolute;
	top: 15px;
    left: 90px;
    font-family: 'Cadiz 700';
    font-size: 16px;
    line-height: 20px;
}
.text-floater-top-right{
	width: -webkit-calc(50% - 90px);
	width: calc(50% - 90px);
	position: absolute;
	top: 20px;
    right: 90px;
    font-family: 'Cadiz 700';
    font-size: 16px;
    line-height: 20px;
    text-align: right;
}
.text-floater-bottom-left{
	width: -webkit-calc(50% - 90px);
	width: calc(50% - 90px);
	position: absolute;
	bottom: 15px;
    left: 90px;
    font-family: 'Cadiz 700';
    font-size: 16px;
    line-height: 20px;
}
.text-floater-bottom-right{
	width: -webkit-calc(50% - 60px);
	width: calc(50% - 60px);
	position: absolute;
	bottom: 15px;
    right: 60px;
    font-family: 'Cadiz 700';
    font-size: 16px;
    line-height: 20px;
    text-align: right;
}
.text-floater-center-left:before,
.text-floater-center-right:before,
.text-floater-top-left:before,
.text-floater-top-right:before,
.text-floater-bottom-left:before,
.text-floater-bottom-right:before{
	content: '';
	height: 1px;
	background-color: #000000;
	width: 100%;
	position: absolute;
	top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform:  translateY(-50%);
    z-index: 0;
    left: 0;
}
div.text-inside{
	background-color: white;
	max-width: 155px;
	padding-left: 10px;
	padding-right: 10px;
	display: inline-block;
	text-align: left;
	    z-index: 0;
    position: relative;
}
.text-floater-top-left div.text-inside,
.text-floater-top-right div.text-inside,
.text-floater-bottom-left div.text-inside{
    max-width: 125px;
}
.float-section-subtitle{
	font-size: 26px;
	line-height: 30px;
	width: 100%;
	max-width: 580px;
	margin:0 auto 35px ;
    font-family: 'Cadiz 400';
    color: #025157;
    text-align: center;
}

.next-section-with-bg{
	width: 100%;
	position: relative;
	padding-top: 380px;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: top center;
	margin-top: -350px;
	background-image:url('./img/cropped-blob.png')
}
.next-section-with-bg.our-prod {
    padding-top: 320px;
    margin-top: -320px;
}
.next-about-section-with-bg{
	width: 100%;
	position: relative;
    padding-top: 130px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
    margin-top: -280px;
	background-image:url('./img/cropped-blob-about.png')
}
.next-section-floater{
	width: 100%;
	max-width: 1030px;
    position: relative;
    padding: 55px 68px;
    margin: 0 auto;
}
.next-section-floater .float-section-title{
	margin-bottom: 10px;
}
.production.next-section-floater{
    padding: 75px 68px;
}
.next-section-subtitle{
    font-family: 'Cadiz 400';
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    color: #025157;
    margin-bottom: 40px;
}
.circle-steps-container{
	margin-top: 40px;
	width: 100%;
	position: relative;
	margin-bottom: 30px;
	height: 325px;
}
.circle-steps-one,
.circle-steps-two,
.circle-steps-tre{
	width: 36%;
	border: 6px solid #025157;
	position: absolute;
	border-radius: 50em;
	min-width: 325px;
}
.circle-steps-one:after,
.circle-steps-two:after,
.circle-steps-tre:after{
	content: '';
	display: inline-block;
	padding-top: 100%;
}
.circle-steps-one{
	left: 0;
}
.circle-steps-two{
	left: 50%;
	border: 6px solid #4bbd95;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform:  translateX(-50%);
}
.circle-steps-tre{
	right: 0;
	border: 6px solid #14487f;
}
.circle-step-inside{
	position: absolute;
	width: 100%;
	padding-top: 25px;
	text-align: center;
}
.circle-number-text{
	font-family: 'Cadiz 700';
    font-size: 42px;
    line-height: 46px;
    margin-bottom: 12px;
}
.circle-desc-text{
    font-family: 'Cadiz 400';
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    margin: 0 auto;
    max-width: 70%;

}
.circle-steps-one .circle-number-text{
	color: #025157;
}
.circle-steps-two .circle-number-text{
	color: #4bbd95;
}
.circle-steps-tre .circle-number-text{
	color: #14487f;
}
.circle-divider-container{
	width: 78.65%;
	position: relative;
	margin:0 auto;
}
.circle-divider-container:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: black;
	top: 20px;
}
.circle-divider-container div{
	width: 100%;
	max-width: 320px;
	padding: 0 10px;
	text-align: center;
    font-family: 'Cadiz 400';
    font-size: 16px;
    line-height: 20px;
    margin:0 auto;
    background-color: white;
    z-index: 0;
    position: relative;
}
.next-section-img-left{
	width: 50%;
	float: left;
	padding-right: 16px;
	margin-top: 40px;
}
.left-circle-img{
	width: 100%;
	max-width: 355px;
	background-position: center left;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 50em;
}
.left-circle-img:after{
	content: '';
	display: inline-block;
	padding-top: 100%;
}
.next-section-info-right{
	width: 50%;
	float: left;
	padding-left: 16px;
	margin-top: 40px;
}
.info-sec-title{
	font-family: 'Cadiz 700';
    text-align: left;
    font-size: 54px;
    color: black;
    line-height: 60px;
    margin-bottom: 25px;
}
.kontakt-title{
	font-family: 'Cadiz 700';
    text-align: left;
    font-size: 54px;
    color: black;
    line-height: 60px;
    margin-bottom: 35px;
    margin-top: 125px;
}
.info-sec-subtitle{
	font-family: 'Cadiz 400';
    text-align: left;
    line-height: 30px;
    color: #025157;
    font-size: 24px;
    margin-bottom: 35px;
}

.info-sec-desc{
    text-align: left;
    font-size: 18px;
    line-height: 22px;
    font-family: 'Nantes';
}

.info-sec-link{
	display: inline-block;
    font-size: 18px;
    line-height: 22px;
    font-family: 'Cadiz 400';
    border-bottom: #025157 2px dotted;
    color: #025157;
    margin-top: 35px;
}
.contact-section-header{
    font-family: 'Cadiz 700';
    font-size: 19px;
    line-height: 22px;
    color: #035257;
    margin-bottom: 20px;
}
.contact-person-name{
    font-family: 'Cadiz 700';
    font-size: 16px;
    line-height: 20px;
}
.contact-person-name span{
    font-family: 'Cadiz 400';
    font-size: 12px;
    line-height: 14px;
}
.contact-person-position{
    font-family: 'Cadiz 400';
    font-size: 14px;
    line-height: 18px;
}
.contact-person-email{
    font-family: 'Cadiz 400';
    font-size: 14px;
    line-height: 18px;
    display: inline-block;
    text-decoration: underline;
    margin-bottom: 20px;
}
.about-floater-banner{
	position: absolute;
	top: -webkit-calc(50% - 80px);
	top: calc(50% - 80px);
	left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform:  translateX(-50%) translateY(-50%);
    max-width: 740px;
    width: 100%;
}
.about-banner-title{
    font-family: 'Cadiz 700';
    font-size: 80px;
    color: white;
    text-align: center;
    line-height: 88px;
}
.about-banner-subtitle{
	margin-top: 20px;
    font-family: 'Cadiz 400';
    font-size: 30px;
    line-height: 36px;
    color: white;
    text-align: center;

}
/*------------------------------------*\
    PAGES
\*------------------------------------*/



/*------------------------------------*\
    IMAGES
\*------------------------------------*/



/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'Font-Name';
	src:url('fonts/font-name.eot');
	src:url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
    font-weight:normal;
    font-style:normal;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (max-width:1600px) {
	
	.next-about-section-with-bg{
	    padding-top: 0px;
	    margin-top: -150px;
	}
	.next-section-with-bg.product-next-bg {
	    margin-top: -300px;
	    padding-top: 300px;
	}
	.next-section-with-bg.our-prod {
	    padding-top: 280px;
	    margin-top: -280px;
	}
}
@media only screen and (max-width:1440px) {
	.next-section-with-bg {
	    margin-top: -300px;
	}
	.cards-wrapper {
	    padding: 0 15px;
	}
	.card-info-container {
	    padding-top: 40px;
	}
	.next-section-with-bg.product-next-bg {
	    margin-top: -280px;
	    padding-top: 280px;
	}
	.next-section-with-bg.our-prod {
	    padding-top: 250px;
	    margin-top: -250px;
	}
	.next-about-section-with-bg{
		background-position: center 50px;
	}
}
@media only screen and (max-width:1300px) {
	.info-container {
	    padding: 75px 100px 100px;
	}
	.cards-wrapper {
	    padding: 0 10px;
	}
	.card-info-container {
	    padding-top: 35px;
	}
	.card-title {
	    font-size: 26px;
	    line-height: 30px;
	    margin-bottom: 10px;
	}
	.card-description {
	    font-size: 16px;
	    line-height: 20px;
	    max-width: 205px;
	}
	.next-section-with-bg {
	    margin-top: -250px;
	    padding-top: 250px;
	}
	.next-section-with-bg.product-next-bg {
	    margin-top: -250px;
	    padding-top: 250px;
	}
	.next-section-with-bg.our-prod {
	    padding-top: 210px;
	    margin-top: -250px;
	}
	.next-about-section-with-bg {
	    padding-top: 0px;
	    margin-top: -180px;
	    background-position: center 100px;
	}
}
@media only screen and (max-width:1200px) {
	.info-container {
	    padding: 70px 70px 80px;
	}
	.intro-img-banner {
	    width: 200px;
	    height: auto;
	    margin-bottom: 30px;
	}
	.intro-banner-title {
	    font-size: 56px;
	    line-height: 62px;
	    margin-bottom: 30px;
	}
	.cards-wrapper {
	    float: none;
	    width: 100%;
	    max-width: 441px;
	    padding: 0 23px;
	    margin: 0 auto 50px;
	}
	.card-info-container{
		padding-top: 45px;
	}
	.card-title {
	    font-size: 30px;
	    line-height: 36px;
	    margin-bottom: 14px;
	}
	.card-description {
	    font-size: 18px;
	    line-height: 22px;
	    max-width: 245px;
	}
}
@media only screen and (max-width:1100px) {
	.info-container {
	    padding: 75px 60px 100px;
	}
	.next-section-with-bg.product-next-bg {
	    margin-top: -200px;
	    padding-top: 200px;
	}
	.hamburger-menu {
    	display: block;
	    position: absolute;
	    right: 35px;
	    width: 38px;
	    top: 36px;
	    height: 28px;
	    cursor: pointer;
	}
	.hamburger-menu div{
		position: absolute;
		width: 100%;
		background-color: white;
		height: 4px;
		top:50%;
	    -webkit-transform: translateY(-50%) ;
	    -ms-transform: translateY(-50%) ;
	    transform: translateY(-50%) ;
	}
	.hamburger-menu:before{
		content: '';
		display: block;
		position: absolute;
		width: 100%;
		background-color: white;
		height: 4px;
		top: 0;
	}
	.hamburger-menu:after{
		content: '';
		display: block;
		position: absolute;
		width: 100%;
		background-color: white;
		height: 4px;
		bottom: 0;

	}
	.hamburger-menu.active div.left{
		top: 50%;
    	transform: rotateZ(45deg);
	}
	.hamburger-menu.active div.right{
		top: 50%;
    	transform: rotateZ(-45deg);
	}
	.hamburger-menu.active:before,
	.hamburger-menu.active:after{
		opacity: 0;
	}
	.menu-items-container {
	    float: none;
	    display: block;
	    margin-top: 0;
	    margin-right: 0;
	    position: absolute;
	    top: 100px;
	    width: 100%;
	    height: -webkit-calc(100vh - 100px);
	    height: calc(100vh - 100px);
	}

	.menu-container.active{
		height: 100vh;
	}
	.menu-item-mob-float {
	    position: absolute;
	    left: 50%;
	    -webkit-transform: translateY(-50%) translateX(-50%);
	    -ms-transform: translateY(-50%) translateX(-50%);
	    transform: translateY(-50%) translateX(-50%);
	    top: -webkit-calc(50% - 50px);
	    top: calc(50% - 50px);
	    width: 100%;
	}
	.menu-items {
	    float: none;
	    display: block;
	    color: white;
	    cursor: pointer;
	    font-family: 'Cadiz 400';
	    font-size: 35px;
	    line-height: 80px;
	    margin-left: 0;
	}
	.menu-logo {
	    margin-left: 0;
	    float: none;
	}
	.menu-container {
	    text-align: center;
	    overflow: hidden;
	    -webkit-transition: height 500ms ease-in-out;
	    -moz-transition: height 500ms ease-in-out;
	    -o-transition: height 500ms ease-in-out;
	    transition: height 500ms ease-in-out;
	}
	.floating-information-container {
	    width: -webkit-calc(100% - 80px);
	    width: calc(100% - 80px);
	    max-width: 100%;
	    padding: 45px 45px 120px;
	}
	.circle-product-container {
	    height: 280px;
	    margin-top: 60px;
	}
	.center-product-circle {
	    width: 280px;
	    height: 280px;
	}
	.next-section-with-bg.our-prod {
	    padding-top: 160px;
	    margin-top: -200px;
	}
	.circle-steps-one, .circle-steps-two, .circle-steps-tre {
	    position: relative;
	    width: 100%;
	    max-width: 325px;
	}
	.circle-steps-one {
	    left: 0;
	    margin: 0 auto;
	    margin-bottom: 30px;
	}
	.circle-steps-two {
	    left: 0;
	    -webkit-transform: none;
	    -ms-transform: none;
	    transform: none;
	    margin: 0 auto;
	    margin-bottom: 30px;
	}
	.circle-steps-tre {
	    right: 0;
	    margin: 0 auto;
	    margin-bottom: 30px;
	}
	.circle-steps-container {
	    height: auto;
	}
	.next-about-section-with-bg {
	    padding-top: 0px;
	    margin-top: -120px;
	    background-position: center 150px;
	}
}
@media only screen and (max-width:900px) {
	.hamburger-menu{
		display: block;
		position:absolute;
		right: 35px;
	    width: 38px;
		top: 36px;
		height: 28px;
	}
	.info-sec-title {
	    font-size: 46px;
	    line-height: 52px;
	    margin-bottom: 25px;
	}
	.info-sec-subtitle {
	    line-height: 30px;
	    font-size: 22px;
	    margin-bottom: 32px;
	}
	.about-floater-banner {
	    position: absolute;
	    top: -webkit-calc(50% - 60px);
	    top: calc(50% - 60px);
	}
	.hamburger-menu div{
		position: absolute;
		width: 100%;
		background-color: white;
		height: 4px;
		top:50%;
	    -webkit-transform: translateY(-50%) ;
	    -ms-transform: translateY(-50%) ;
	    transform: translateY(-50%) ;
	}
	.hamburger-menu:before{
		content: '';
		display: block;
		position: absolute;
		width: 100%;
		background-color: white;
		height: 4px;
		top: 0;
	}
	.hamburger-menu:after{
		content: '';
		display: block;
		position: absolute;
		width: 100%;
		background-color: white;
		height: 4px;
		bottom: 0;

	}
	.hamburger-menu.active div.left{
		top: 50%;
    	transform: rotateZ(45deg);
	}
	.hamburger-menu.active div.right{
		top: 50%;
    	transform: rotateZ(-45deg);
	}
	.hamburger-menu.active:before,
	.hamburger-menu.active:after{
		opacity: 0;
	}
	.menu-container {
		text-align: center;
		overflow: hidden;
		-webkit-transition:height 500ms ease-in-out;
		  -moz-transition: height 500ms ease-in-out;
		  -o-transition: height 500ms ease-in-out;
	    transition:  height 500ms ease-in-out;
	}
	.menu-logo {
		margin-left: 0;
    	float: none;
	}
	.menu-items-container {
	    float: none;
	    display: block;
	    margin-top: 0;
	    margin-right: 0;
	    position: absolute;
	    top: 100px;
	    width: 100%;
	    height: -webkit-calc(100vh - 100px);
	    height: calc(100vh - 100px);
	}

	.menu-container.active{
		height: 100vh;
	}
	.menu-item-mob-float{
		position: absolute;
	    left: 50%;
	    -webkit-transform: translateY(-50%) translateX(-50%);
	    -ms-transform: translateY(-50%) translateX(-50%);
	    transform: translateY(-50%) translateX(-50%);
		top: -webkit-calc(50% - 50px);
		top: calc(50% - 50px);
		width: 100%;
	}
	.menu-items {
	    float: none;
	    display: block;
	    color: white;
	    cursor: pointer;
	    font-family: 'Cadiz 400';
	    font-size: 35px;
	    line-height: 80px;
	    margin-left: 0;
	}
	.intro-floater {
	    top: 55%;
	}
	.intro-img-banner{
	    width: 180px;
	}
	.info-container {
	    padding: 75px 80px 100px;
	    width: 100%;
	}
	.next-section-with-bg.product-next-bg {
	    margin-top: -120px;
	    padding-top: 240px;
	}
	
	.footer-container {
	    background: rgb(214,178,164);
	    background: -moz-radial-gradient(at 20% 10%, rgba(214,178,164,1) 30%, rgba(126,187,154,1) 100%);
	    background: -webkit-radial-gradient(20% 10%, rgba(214,178,164,1) 30%, rgba(126,187,154,1) 100%);
	    background: radial-gradient(at 20% 10%, rgba(214,178,164,1) 30%, rgba(126,187,154,1) 100%);
	}
	.about-floater-banner {
	    max-width: 540px;
	    width: 100%;
	}
	.about-banner-title {
	    font-size: 70px;
	    line-height: 76px;
	}
	.about-banner-subtitle {
	    margin-top: 40px;
	    font-size: 24px;
	    line-height: 34px;
	}
	.floating-information-container {
	    width: -webkit-calc(100% - 90px);
	    width: calc(100% - 90px);
   		margin: -220px auto 0;
	    padding: 55px 55px 80px;
	}
	.float-section-header {
	    line-height: 22px;
	    font-size: 16px;
	    margin-bottom: 30px;
	}
	.float-section-title {
	    line-height: 54px;
	    font-size: 46px;
	    margin-bottom: 30px;
	}
	.float-section-subtitle {
	    font-size: 24px;
	    line-height: 30px;
	    max-width: 580px;
	    margin: 0 auto 35px;
	}
	.floating-information-container .left-description-section,
	.floating-information-container .right-description-section{
	    width: 100%;
	    display: inline;
	    font-size: 18px;
	    float: none;
	    line-height: 24px;
	    padding-left: 0;
	    padding-right: 0;
	}
	.next-section-floater {
	    padding: 0 68px 55px;
	    margin: 0 auto;
	}
	.next-section-img-left {
	    width: 100%;
	    max-width: 300px;
	    float: none;
	    padding-right: 0;
	    margin-top: 0;
	    margin: 0 auto;
	}
	.next-section-info-right {
	    width: 100%;
	    float: none;
	    padding-left: 0;
	    margin: 0 auto;
	    padding: 25px 25px 0;
	    margin-top: 0px;
	}
	.kontakt-title {
	    margin-bottom: 35px;
	    margin-top: 70px;
	    padding: 0 25px;
	    font-size: 46px;
	    color: black;
	    line-height: 52px;
	}
	.next-about-section-with-bg .left-description-section{
		padding-left: 25px;
		padding-right: 10px;
	}
	.next-about-section-with-bg .right-description-section{
		padding-right: 25px;
		padding-left: 10px;
	}
	.next-about-section-with-bg {
	    padding-top: 0px;
	    margin-top: 0px;
	    background-position: center 0;
	}
	.circle-product-container {
	    margin-top: 50px;
	    width: 100%;
	    height: auto;
	    position: relative;
	}
	.text-floater-top-left {
	    width: 50%;
	    position: relative;
	    top: 0;
	    left: 0;
	    float: left;
	    text-align: right;
	    margin-top: 25px;
	    padding-right: 10px;
	}
	.text-floater-top-right {
	    width: 50%;
	    position: relative;
	    top: 0;
	    right: 0;
	    text-align: left;
	    float: left;
	    min-height: 40px;
	    margin-top: 25px;
	    padding-left: 10px;
	}
	.text-floater-center-left {
	    width: 50%;
	    position: relative;
	    top: 0;
	    -webkit-transform: none;
	    -ms-transform: none;
	    transform: none;
	    left: 0;
	    float: left;
	    margin-top: 20px;
	    text-align: right;
	    padding-right: 10px;
	}
	.text-floater-center-right {
	    width: 50%;
	    position: relative;
	    top: initial;
	    -webkit-transform: none;
	    -ms-transform: none;
	    transform: none;
	    right: 0;
	    text-align: left;
	    float: left;
	    margin-top: 20px;
	    padding-left: 10px;
	}
	.text-floater-bottom-left {
	    width: 50%;
	    position: relative;
	    bottom: initial;
	    left: 0;
	    float: left;
	    margin-top: 20px;
	    text-align: right;
	    padding-right: 10px;
	}
	.text-floater-bottom-right {
	    width: 50%;
	    position: relative;
	    bottom: initial;
	    right: 0;
	    text-align: left;
	    float: left;
	    margin-top: 20px;
	    padding-left: 10px;
	}
	.text-floater-center-left:before, .text-floater-center-right:before, .text-floater-top-left:before, .text-floater-top-right:before, .text-floater-bottom-left:before, .text-floater-bottom-right:before {
	    content: '';
	    background-color: transparent;
	}
	div.text-inside {
	    max-width: 215px;
	}
	.text-floater-top-left div.text-inside, .text-floater-top-right div.text-inside, .text-floater-bottom-left div.text-inside {
	    max-width: 190px;
	}
	.text-floater-top-left div.text-inside,
	.text-floater-center-left div.text-inside,
	.text-floater-bottom-left div.text-inside{
		    text-align: right;
	}
	.next-section-with-bg {
	    margin-top: -120px;
        padding-top: 220px;
        background-size: 120% auto;
	    background-position: top left;
	}
	.next-section-subtitle {
	    font-size: 22px;
	    line-height: 30px;
	    margin: 0 auto;
	    margin-bottom: 30px;
	    max-width: 480px;
	}
	.product-next-bg .left-description-section,
	.product-next-bg .right-description-section{
	    /*padding: 0;*/
    	display: inline;
	}
	.circle-steps-container {
	    margin-top: 40px;
	    width: 100%;
	    position: relative;
	    margin-bottom: 0;
	    height: auto;
	}
	.circle-steps-one, .circle-steps-two, .circle-steps-tre {
	    position: relative;
	    width: 100%;
	    max-width: 325px;
	}
	.circle-steps-one {
	    left: 0;
	    margin: 0 auto;
	    margin-bottom: 30px;
	}
	.circle-steps-two {
	    left: 0;
	    -webkit-transform: none;
	    -ms-transform: none;
	    transform: none;
	    margin: 0 auto;
	    margin-bottom: 30px;
	}
	.circle-steps-tre {
	    right: 0;
	    margin: 0 auto;
	    margin-bottom: 30px;
	}
	.circle-divider-container {
	    width: 100%;
	}
	.next-section-with-bg.our-prod{
	    margin-top: 0;
	    padding-top: 0;
	}
	.production.next-section-floater {
	    padding: 0px 68px 75px;
	}
}
@media only screen and (max-width:640px) {
	.intro-img-banner {
	    width: 140px;
	}
	.intro-banner-title {
	    font-size: 50px;
	    line-height: 56px;
	    margin-bottom: 30px;
	}
	.intro-banner-link {
	    font-size: 16px;
	    line-height: 22px;
	}
	.info-container {
	    padding: 70px 50px 70px;
	    width: 100%;
	}
	.info-title {
	    font-size: 26px;
	    line-height: 36px;
	    margin-bottom: 20px;
	}
	.kontakt-title {
	    margin-bottom: 50px;
	    margin-top: 100px;
	    font-size: 38px;
	    line-height: 44px;
	}
	.info-desc {
	    font-size: 16px;
	    line-height: 26px;
	    font-weight: 400;
	}
	.intro-cards-container {
	    padding: 75px 30px;
	}
	.intro-cards-title {
	    font-size: 36px;
	    line-height: 42px;
	    margin-bottom: 50px;
	}
	.cards-wrapper {
	    float: none;
	    width: 100%;
	    max-width: 400px;
	    padding: 0 23px;
	    margin: 0 auto 30px;
	}
	.card-info-container {
	    padding-top: 35px;
	}
	.card-title {
	    font-size: 28px;
	    line-height: 32px;
	    margin-bottom: 10px;
	}
	.card-description {
	    font-size: 16px;
	    line-height: 20px;
	    max-width: 200px;
	}
	.floating-information-container {
	    width: -webkit-calc(100% - 80px);
	    width: calc(100% - 80px);
	    margin: -200px auto 0;
	    padding: 45px 40px 80px;
	}
	.float-section-header {
	    line-height: 22px;
	    font-size: 16px;
	    margin-bottom: 30px;
	}
	.float-section-title {
	    line-height: 44px;
	    font-size: 38px;
	    margin-bottom: 30px;
	}
	.floating-information-container .left-description-section, .floating-information-container .right-description-section {
	    width: 100%;
	    display: inline;
	    font-size: 16px;
	    float: none;
	    line-height: 22px;
	    padding-left: 0;
	    padding-right: 0;
	}
	.center-product-circle {
	    width: 280px;
	    height: 280px;
	}
	div.text-inside {
	    max-width: 100%;
	    width: 100%;
	    padding: 0;
	    text-align: center;
	}
	.text-floater-top-left div.text-inside, .text-floater-center-left div.text-inside, .text-floater-bottom-left div.text-inside {
	    text-align: center;
	}
	.text-floater-top-left div.text-inside, .text-floater-top-right div.text-inside, .text-floater-bottom-left div.text-inside {
	    max-width: 100%;
	}
	.text-floater-top-left {
	    width: 100%;
	    position: relative;
	    top: 0;
	    left: 0;
	    float: none;
	    text-align: center;
	    margin-top: 15px;
	    padding-right: 0px;
	}
	.text-floater-top-right {
	    width: 100%;
	    position: relative;
	    top: 0;
	    right: 0;
	    text-align: center;
	    float: none;
	    min-height: auto;
	    margin-top: 10px;
	    padding-left: 0px;
	}
	.text-floater-center-right {
	    width: 100%;
	    position: relative;
	    top: initial;
	    -webkit-transform: none;
	    -ms-transform: none;
	    transform: none;
	    right: 0;
	    text-align: center;
	    float: none;
	    margin-top: 10px;
	    padding-left: 0px;
	}
	.text-floater-center-left {
	    width: 100%;
	    position: relative;
	    top: 0;
	    -webkit-transform: none;
	    -ms-transform: none;
	    transform: none;
	    left: 0;
	    float: none;
	    margin-top: 10px;
	    text-align: center;
	    padding-right: 0px;
	}
	.text-floater-bottom-left {
	    width: 100%;
	    position: relative;
	    bottom: initial;
	    left: 0;
	    float: none;
	    margin-top: 10px;
	    text-align: right;
	    padding-right: 0px;
	}
	.text-floater-bottom-right {
	    width: 100%;
	    position: relative;
	    bottom: initial;
	    right: 0;
	    text-align: center;
	    float: none;
	    margin-top: 10px;
	    padding-left: 0px;
	}
	.next-section-subtitle {
	    font-size: 20px;
	    line-height: 28px;
	    margin: 0 auto;
	    margin-bottom: 30px;
	    max-width: 420px;
	}
	.product-next-bg .left-description-section, .product-next-bg .right-description-section {
	    padding: 0;
	    display: inline;
	    width: 100%;
	    float: none;
	    font-size: 16px;
    	line-height: 22px;
	}
	.next-section-floater {
	    padding: 0 80px 55px;
	    margin: 0 auto;
	}
	.info-sec-title {
	    font-size: 38px;
	    line-height: 44px;
	    margin-bottom: 25px;
	    text-align: center;
	}
	.info-sec-subtitle {
	    line-height: 28px;
	    text-align: center;
	    font-size: 20px;
	    margin-bottom: 30px;
	}
	.about-floater-banner {
	    max-width: 460px;
	    width: 100%;
        top: -webkit-calc(50% - 50px);
    	top: calc(50% - 50px);
	}
	.about-banner-title {
	    font-size: 56px;
	    line-height: 58px;
	}
	.about-banner-subtitle {
	    margin-top: 25px;
	    font-size: 20px;
	    line-height: 32px;
	}
	.float-section-subtitle {
	    font-size: 22px;
	    line-height: 28px;
	    max-width: 580px;
	    margin: 0 auto 35px;
	}
	.next-section-img-left {
	    max-width: 240px;	
	}
	.info-sec-desc,
	.info-sec-link{
	    font-size: 16px;
	    line-height: 22px;
	}
	.next-section-floater {
	    padding: 0 55px 55px;
	    margin: 0 auto;
	}
	.next-about-section-with-bg .left-description-section,
	.next-about-section-with-bg .right-description-section{
		padding-left: 0;
		padding-right: 0;
		width: 100%;
	    display: inline;
	    float: none;
	}
	.contact-section-header,
	.contact-person-name,
	.contact-person-position,
	.contact-person-email{
	    padding: 0 25px;
	}
	.banner-header.bottom {
	    background-position: left bottom;
	    min-height: 580px;
	}

	.footer-circle-logo {
	    right: -webkit-calc(50% - 151px);
	    right: calc(50% - 205px);
	    width: 50px;
	}
}
@media only screen and (max-width:480px) {
	.float-section-subtitle {
	    font-size: 20px;
	    line-height: 26px;
	}
	.hamburger-menu {
	    display: block;
	    position: absolute;
	    right: 20px;
	    width: 26px;
	    top: 30px;
	    height: 20px;
	}
	.hamburger-menu div {
	    height: 2px;
	}
	.hamburger-menu:before {
	    content: '';
	    height: 2px;
	}
	.hamburger-menu:after {
	    content: '';
	    height: 2px;
	}
	.menu-logo{
	    height: 40px;
	    margin-top: 20px;
	}
	.menu-container {
        height: 80px;
	}
	.menu-items {
	    font-size: 26px;
	    line-height: 65px;
	}
	.intro-img-banner {
	    width: 100px;
	    margin-bottom: 20px;
	}
	.intro-banner-title {
	    font-size: 40px;
	    line-height: 44px;
	    margin-bottom: 30px;
	}
	.intro-banner-link {
	    font-size: 16px;
	    line-height: 20px;
	}
	.info-container {
	    padding: 50px 30px 50px;
	    width: 100%;
	}
	.info-title {
	    font-size: 24px;
	    line-height: 32px;
	    margin-bottom: 20px;
	}
	.info-desc {
	    font-size: 16px;
	    line-height: 26px;
	}
	.intro-cards-container {
	    padding: 50px 30px 10px;
	}
	.intro-cards-title {
	    font-size: 32px;
	    line-height: 38px;
	    margin-bottom: 45px;
	}
	.cards-wrapper {
	    float: none;
	    width: 100%;
	    max-width: 315px;
	    padding: 0 0;
	    margin: 0 auto 30px;
	}
	.cards-actual-container:after{
		content: '';
		display: none;
		padding-top: 0%;
	}
	.card-info-container {
	    position: relative;
	    width: 100%;
	    height: 100%;
	    padding-top: 33px;
	    padding-bottom: 33px;
	}
	.card-title {
	    font-size: 26px;
	    line-height: 28px;
	    margin-bottom: 12px;
	}
	.card-description {
	    font-size: 14px;
	    line-height: 18px;
	    max-width: 190px;
	    margin: 0 auto;
	}
	.contact-button {
	    width: 180px;
	    margin: 0 auto 30px;
	    font-size: 14px;
	    line-height: 46px;
	}
	.footer-logo {
	    width: 200px;
	    margin-bottom: 15px;
	}

	.footer-circle-logo {
		right: -webkit-calc(50% - 151px);
		right: calc(50% - 151px);
	    width: 35px;
	    top: 132px;
	}
	.social-btn {
	    width: 35px;
	    height: 35px;
	}
	.footer-contact-info {
	    max-width: 303px;
	    font-size: 14px;
	    line-height: 20px;
	    margin: 0 auto;
	}
	.floating-information-container {
	    width: -webkit-calc(100% - 40px);
	    width: calc(100% - 40px);
	    max-width: 680px;
	    padding: 35px 25px 0px;
	    margin: -180px auto 0;
	}
	.float-section-header {
	    line-height: 20px;
	    font-size: 14px;
	    margin-bottom: 20px;
	}
	.float-section-title {
	    line-height: 42px;
	    font-size: 36px;
	    margin-bottom: 20px;
	}
	.left-description-section, 
	.right-description-section, 
	.floating-information-container .left-description-section, 
	.floating-information-container .right-description-section {
	    width: 100%;
	    display: inline;
	    font-size: 16px;
	    float: none;
	    line-height: 22px;
	    padding-left: 0;
	    padding-right: 0;
	}
	.circle-product-container {
	    margin-top: 40px;
	}
	.center-product-circle {
	    width: 200px;
	    height: 200px;
	}
	.text-floater-top-left,
	.text-floater-top-right,
	.text-floater-center-right,
	.text-floater-center-left,
	.text-floater-bottom-left,
	.text-floater-bottom-right {
	    font-size: 14px;
	    line-height: 20px;
	}
	.next-section-with-bg {
	    margin-top: 0;
	    padding-top: 140px;
	    background-size: 120% auto;
	    background-position: top left;
	}
	.next-section-floater {
	    padding: 0 45px 55px;
	    margin: 0 auto;
	}
	.float-section-title {
        line-height: 38px;
    	font-size: 32px;
	}
	.next-section-floater .float-section-title {
	    margin-bottom: 20px;
	}
	.next-section-subtitle {
	    font-size: 18px;
	    line-height: 22px;
	    margin: 0 auto;
	    margin-bottom: 30px;
	    max-width: 480px;
	}
	.circle-steps-one, .circle-steps-two, .circle-steps-tre {
	    position: relative;
	    width: 100%;
	    min-width: 0;
	    border-width: 3px;
	    max-width: 285px;
	}
	.circle-step-inside {
	    position: absolute;
	    width: 100%;
	    padding-top: 0;
	    text-align: center;
	    top: 46%;
	    -webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	    transform:  translateY(-50%);
	}
	.circle-number-text {
	    font-family: 'Cadiz 700';
	    font-size: 32px;
	    line-height: 36px;
	    margin-bottom: 5px;
	}
	.circle-desc-text {
	    font-family: 'Cadiz 400';
	    font-size: 14px;
	    line-height: 20px;
	    text-align: center;
	    margin: 0 auto;
	    max-width: 75%;
	}
	.circle-divider-container div {
	    font-size: 14px;
	    line-height: 20px;
	}
	.next-section-with-bg.our-prod {
	    margin-top: 60px;
	    padding-top: 0;
	}
	.production.next-section-floater {
	    padding: 0px 20px 75px;
	}
	.next-section-img-left {
	    max-width: 200px;
	}
	.next-section-info-right {
	    width: 100%;
	    float: none;
	    padding-left: 0;
	    margin: 0 auto;
	    padding: 25px 25px 0;
	    margin-top: 0px;
	}
	.info-sec-title {
	    font-size: 32px;
	    line-height: 38px;
	    margin-bottom: 20px;
	    text-align: center;
	}
	.info-sec-subtitle {
	    line-height: 24px;
	    font-size: 20px;
	    margin-bottom: 30px;
	    text-align: center;
	}
	.info-sec-desc {
	    font-size: 16px;
	    line-height: 22px;
	}
	.info-sec-link {
	    font-size: 16px;
	    line-height: 22px;
	    margin-top: 35px;
	}
	.about-floater-banner {
	    max-width: 540px;
	    width: 100%;
	    padding: 0 25px;
        top: -webkit-calc(50% - 40px);
    	top: calc(50% - 40px);
	}
	.about-banner-title {
	    font-size: 40px;
	    line-height: 44px;
	}
	.about-banner-subtitle {
	    margin-top: 20px;
	    font-size: 18px;
	    line-height: 24px;
	}
	.next-about-section-with-bg {
	    padding-top: 0px;
	    margin-top: 80px;
	}
	.next-section-floater.about-next{
		    padding: 0 20px 55px;
	}
	.kontakt-title {
	    margin-bottom: 35px;
	    margin-top: 80px;
	    padding: 0 25px;
	    font-size: 32px;
	    line-height: 42px;
	}
	.contact-section-header {
	    font-size: 18px;
	    line-height: 22px;
	    margin-bottom: 20px;
	    padding: 0 25px;
	}
	.contact-person-name,
	.contact-person-position,
	.contact-person-email {
	    padding: 0 25px;
	}
}
/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
