/**
 * 
 * Bowenite css
 *
 * Author: Fix Software
 * Web: www.fixsoftware.cz
 * 
 */

* {
	margin:0;
	padding:0;
	box-sizing: border-box;
}

body {
	background: #fff;
	font-size: 16px;
	font-family: 'Lato', sans-serif;
}

/**
 * Navbar
 */
.navbar-default {
	min-height: 155px;
	background: none;
	border: 0px;
	transition: all ease .2s;
}

.navbar-default.scrolled {
	background: #fff;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
	min-height: 67px;
}

.navbar-default .navbar-brand {
	color: #fff;
	padding: 30px 0 10px 0;
	height: 155px;
	transition: all ease .2s;
}

.navbar-default.scrolled .navbar-brand {
	padding: 0 5px 0 5px;
	height: 67px;
}

.navbar-default .navbar-brand>.logo {
	background: url('../img/logo.svg');
	background-color: #fff;
	background-size: 320px;
	background-repeat: no-repeat !important;
	background-position: 15px;
	width: 350px;
	height: 100px;
	margin-top: 7px;
	display: block;
	transition: all ease .2s;
}

.navbar-default.scrolled .navbar-brand>.logo {
	height: 50px;
	width: 215px;
	margin-top: 9px;
	background-size: 215px;
	background-position: 0;
}

.navbar-default .navbar-nav {
	padding-top: 50px;
	transition: all ease .2s;
}

.navbar-default.scrolled .navbar-nav {
	padding-top: 0;
}

.navbar-default .navbar-nav>li>a {
	color: #fff;
	letter-spacing: 1px;
	font-size: 37px;
	padding: 30px 30px; 
	margin-left: 70px;
	background-color: #fff;
	color: #797779;
	transition: all ease .2s;
	opacity: 0.9;
}

.navbar-default.scrolled .navbar-nav>li>a {
	padding: 23px 15px 24px 15px;
	font-size: 20px;
	margin-left: 50px;
}

.navbar-default .navbar-nav>li>a:hover {
	transition: all .2s ease;
	opacity: 1;
	background-color: #fff;
}

/**
 * Navbar-End
 */

/**
 * Home
 */

#home {
	background: url('../img/home.jpg');
	background-size: cover;
	background-position: bottom center;
	height: 90vh;
	width: 100%;
}

#home .vision-block-wrapper {
	height: 100vh;
	position: relative;
}

#home .vision-block {
	width: 750px;
	display: block;	
	position: absolute;
	top: 50%;
	left: 50%;	
	text-align: center;
	color: #fff;
	transform: translateX(-50%) translateY(-50%);
}

#home .vision-block .headline {
	font-size: 85px;
	margin-top: 40px;
	margin-bottom: 45px;
}

#home .vision-block .uppertext {
	font-weight: 300;
	letter-spacing: 2px;
	font-size: 16px;
	text-transform: uppercase;
}

#home .btn-vision,
#home .btn-vision:focus,
#home .btn-vision:active {
	border: 2px solid #fff;
	font-size: 15px;
	border-radius: 0px;
	background: none;
	z-index: 99;
	opacity: .8;
	padding: 15px 25px;
	letter-spacing: 2px;
	transition: all .2s ease;
}

#home .btn-vision:hover {
	opacity: 1;
	background: rgba(52,152,219,1);
	border-color: rgba(52,152,219,1);
	transition: all .2s ease;
}

/**
 * Home-End
 */

/**
 * Blockquote-Banner
 */

#blockquote-banner .slide {
	width: 100%;
}

#blockquote-banner .slide p {
	width: 700px;
	margin-left: auto;
	margin-right: auto;
	display: block;
}

#blockquote-banner {
	padding-top: 80px;
	padding-bottom: 40px;
	background-image: linear-gradient(to bottom right, rgb(0,112,192), rgb(0,65,121));
}

/**
 * Blockquote-Banner-end
 */

section#contacts i.fa {
	color: #2980b9;
	margin-right: 10px;
}

section#contacts b {
	color: rgb(0,112,192);
}


section#about-us > .container {
	padding-top: 50px;
	padding-bottom: 85px;
}

section#about-us p {
	line-height: 35px;
	padding-top: 25px;
	padding-right: 20px;
	font-size: 25px;
}

section#about-us .about-text-content {
	padding-top: 15px;
}

section#about-us .about-text-content b {
	color: #2980b9;
}

section#about-us .about-picture-wrapper {
	margin-top: 24px;
	padding-top: 20px;
	width: 100%;
	height: 370px;
	display: block;
	overflow: hidden;
 
}
section#about-us .about-picture {
	display: block;
	width: 100%;
	height: 345px;
	margin-left: auto;
	margin-right: auto;
	background: url('../img/about-picture.jpg');	
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transition: all .2s ease;
}

section#about-us .about-picture-wrapper:hover .about-picture {
	transform: scale(1.05);
	transition: all .2s ease;	
}


.input-form {
	border: 2px solid rgb(0,112,192);
	width: 100%;	
	font-size: 20px;
	height: 46px;
	line-height: 46px;
	color: #333;
	padding: 10px;
	margin-bottom: 20px;
}
.input-form::placeholder
.textarea-form::placeholder {
	color: #777;
}

.textarea-form {
	border: 2px solid rgb(0,112,192);
	width: 100%;	
	font-size: 20px;
	color: #333;
	height: 150px;
	margin-bottom: 20px;
	transition: all .2s ease;
	resize: none;
	padding: 10px;
}

.input-form:focus,
.textarea-form:focus {
	border: 2px solid rgb(0,65,121);
	outline: none;
}

.input-form.has-error,
.textarea-form.has-error,
.input-form.has-error:focus,
.textarea-form.has-error:focus {
	border: 2px solid rgba(255,0,0,.6);
}

.button-form {
	border: 2px solid rgb(0,112,192);
	background-color: rgb(0,112,192);
	color: #fff;
	border-radius: 0px;
	width: 202px;
	font-size: 20px;
	padding: 10px 30px;
	margin-bottom: 20px;
	transition: all .2s ease;
}

.button-form:hover,
.button-form:active,
.button-form:focus {
	border: 2px solid rgb(0,65,121);
	background: rgb(0,65,121);
	color: #fff;
	border-radius: 0px;	
	transition: all .2s ease;
}

.button-form:focus {
	outline: none;
}

.blue-text {
	color: #2980b9;	
}

header {
	background-color: #3b3838;
	border-top: 3px solid #767174;
	margin: 0 -15px;
}
header h2 {
	color: #fff;
	font-size: 40px;
	text-align: left;
	text-transform: uppercase;
}

.about-picture-col {
	padding-right: 30px;
}

.contact-map {
	padding: 0;	
}

#map {
	width: 100%;
	height: 500px;
	background: #333;
	display: block;
	color: #fff;
}

.contact-content {
	padding: 45px 70px;
	background: #fff;
	height: 500px;
}

.contact-company-name {
	font-size: 18px;
	font-weight: 700;
	line-height: 50px;
	display: block;
	color: #2980b9;
}

.contact-item {
	font-size: 16px;
	font-weight: 400;
	line-height: 27px;
	padding-top: 7px;
	padding-bottom: 7px;
	display: block;
}

.contact-secondary-item {
	font-size: 16px;
	font-weight: 400;
	line-height: 40px;
	display: block;
	padding-left: 30px;
}

.contact-divider {
	display: block;
	width: 100%;
	height:40px;
}

#page-footer {
	background: rgb(0,65,121);
	padding-top: 20px;
	padding-bottom: 10px;
	color: #fff;
}

#page-footer p {
	padding: 0px;
}

#contact-form {
	padding-top: 75px;
	padding-bottom: 75px;
}

#contact-form h3 {
	text-align: center;
	text-transform: uppercase;
	font-size: 30px;
	margin-bottom: 50px;
}

.contact-second-wrapper {
	/*background: url('../img/pattern-blue.jpg');*/
	background-position: center center;
	background: #f5f5f5;
	color: #111;
}

.contact-second-col-first {
	padding-top: 50px;
	padding-bottom: 50px;
}

.contact-second-col-second {
	padding-left: 80px;
	padding-top: 50px;
	padding-bottom: 50px;
}

.logos-wrapper {
	width: 100%;
	display: block;
	text-align: center;
}

.cycle-pager {
	margin-top: 30px;
}

.cycle-pager span.cycle-pager-active {
	color: #fff;
	transition: all .2s ease;
}

.cycle-pager span {
	color: rgba(255,255,255,.5);
	padding-right: 3px;
	padding-left: 3px;
	font-size: 20px;
	cursor: pointer;
	transition: all .2s ease;
}

.send-button-wrapper {
	text-align: right;	
	padding-top: 4px;
	padding-right: 30px;
}

.recaptcha-wrapper {
	text-align: left;
}

.g-recaptcha {
	float: left;
	margin-left: 17px;
}

.form-right-items {
	text-align: right;
}

.form-left-items {
	text-align: left;
}

.text-slide-show-wrapper h4 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
}

.text-slide-show-wrapper p {
    color: #fff;
    text-align: justify;
    width: 750px;
    max-width: 100%;
    line-height: 30px;
}

.slide-small-text p {
    padding-top: 15px;
}

.text-slide-show-text-wrapper {
    height: 120px;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {

	.navbar-default .navbar-nav>li>a {
		margin-left: 50px;
	}

}