/*Import Google Fonts*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
@import url('https://fonts.googleapis.com/css?family=Montserrat');

/*GENERAL*/
body {
	font-family: 'Open Sans', 'Helvetica', 'Arial', 'sans-serif';
}
h1, h2 {
	font-family: 'Montserrat', 'Helvetica', 'Arial', 'sans-serif';
	text-transform: uppercase;
}
hr {
	margin-top: 4px;
	margin-bottom: 20px;
}
.red-line {
	border-bottom: 3px solid #FF0000;
	width: 100px;
}
.yellow-line {
	border-bottom: 3px solid #FFE400;
	width: 100px;
}
.bold-text {
	font-weight: bold;
}
.no-padding {
	padding: 0;
}
.btn {
	padding-left: 50px;
	padding-right: 50px;
}
.btn-send {
	background: #FE9601;
	color: #fff;
	border: none;
}
.btn-send:hover,
.btn-send:focus,
.btn-send:active,
.btn-send.active {
	color: #fff;
	background: #CC7702;
}

/*NAV*/
.navbar-default {
	background-color: rgba(255, 255, 255, 0.7);
	border: none;
	font-weight: bold;
	letter-spacing: 1px;
	font-family: 'Open Sans', 'Helvetica', 'Arial', 'sans-serif';
	text-transform: uppercase;
	font-size: 12px;
}
.navbar-default .navbar-toggle {
	font-size: 14px;
	background:  linear-gradient(#747474, #303030);
	color: #fff;
	border: none;
	padding: 8px 10px;
}
.navbar-default .navbar-header .navbar-brand img {
	max-height: 35px;
	width: auto;
	margin-top: -7px;
}
.divider {
	padding-top: 14px;
	color: #404040;
}
.navbar-default .collapse, .navbar-default .navbar-collapse {
	border: none;
}
.navbar-collapse .navbar-nav li a {
	color: #404040;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
	color: #fff;
	background: #404040;;
}
@media (max-width: 360px) {
	.navbar-default .navbar-header .navbar-brand img {
		max-height: 25px;
		width: auto;
		margin-top: 0;
	}
}
/*HEADER*/
header {
	background: no-repeat center center;
	background-attachment: scroll;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
	background-image: url('../img/main-block.jpg');
	min-height:300px;
}
@media (min-width: 768px) {
	header {
		min-height:500px;
	}
}
@media (min-width: 992px) {
	header {
		min-height:600px;
	}
}

/*SECTION(COMMON)*/
section {
	text-align: center;
	padding: 50px 0 50px 0;
}
section h1 {
	margin: 0 0 5px;
}
section .sub-title {
	margin: 0 0 50px;
	font-weight: bold;
}

/*MAIN BLOCK SECTION*/
section.main_block {
	color: #404040;
	background-color: #fff;	
}
section.main_block h2 {
	margin-top: 50px;
	margin-bottom: 0;
	font-size: 20px;
}
section.main_block .call-us {
	margin-top: 50px;
	margin-bottom: 0;
	text-transform: uppercase;
}
@media (max-width: 768px) {
	section.main_block .quality {
		margin-bottom: 50px;
	}
	section.main_block .call-us {
		font-size: 18px;;
	}
}

/*ABOUT US SECTION*/
section.about_us {
	color: #fff;
	background-color: #272727;	
}
section.about_us .col-left {
	text-align: center;
}
section.about_us .col-left p{
	font-size: 26px;
}
section.about_us .col-right {
	text-align: center;
}
@media (min-width: 992px) {
	section.about_us .col-left{
		text-align: right;
	}
	section.about_us .col-right {
		text-align: left;
	}
}

/*CONTACT US SECTION*/
section.contact_us {
	background: no-repeat center center;
	color: #fff;
	background-attachment: scroll;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
	background-image: url('../img/contact-us.jpg');
}
@media (max-width: 768px) {
	.margin-fix {
		margin-bottom: 10px;
	}
}section.page {	color: #fff;	background-color: #272727;		padding-top: 100px;}

/*FOOTER*/
footer {
	padding-top: 10px;
	margin:none;
	padding-bottom: 2px;
}


ul.list-social {
  margin-bottom: 0;
}
ul.list-social li a {
  display: block;
  height: 25px;
  width: 25px;
  line-height: 25px;
  font-size: 12px;
  border-radius: 100%;
  color: white;
  background: #404040;
}
ul.list-social li a:hover {
  background: #808080;
}
.copyright {
	text-align: right;
	overflow: hidden;
	text-transform: uppercase;
	margin-top: 2px;
	font-family: 'Montserrat', 'Helvetica', 'Arial', 'sans-serif';
}
@media (max-width: 768px) {
	.social-icons {
		text-align: center;
		margin-bottom: 10px;
	}
	.copyright {
		text-align: center;
	}
}

/*IMAGE MOUSEOVER*/
.img-mouseover {
	position: relative;
	display:block;
}
.img-mouseover-container {
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.72);
	color: #fff;
	visibility: hidden;
	opacity: 0;
}
.img-mouseover-container h2{
	vertical-align: middle;
	margin: 0;
}
.img-mouseover-container hr {
	margin-bottom: 10px;
}
.img-mouseover:hover .img-mouseover-container {
	visibility: visible;
	opacity: 1;
}
.img-mouseover-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.meta-text {
	background: #ddd;
}

.alert-success {
	background: rgba(46, 204, 113,0.8);
	border: none;
	color: #fff;
}
.alert-success .close {
	color: #000;
}
.alert-danger {
	background: rgba(192, 57, 43,0.8);
	border: none;
	color: #fff;
}
.alert-danger .close {
	color: #000;
}
.error {
	background: #ff9999;
	border-color: #ff9999;
}.image-container {		margin-top: 30px;	}



