/*
Theme Name: BootBIZ Framework
Theme URI: https://infobiz1.tv/
Author: Ion Burdianov
Author URI: https://ionburdianov.com/
Description: BootBIZ Framework
Version: 0.0.1
*/
/**
 * Navbar
 * =========================================== */
@media (min-width: 992px) and (max-width: 1199px) {
	.navbar-nav {
		font-size: 18px;
	}
	.nav > li > a {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.navbar-nav {
		font-size: 16px;
	}
	.nav > li > a {
		padding-left: 8px;
		padding-right: 8px;
	}
}

/**
 * Masthead
 * =========================================== */
.masthead-cover {
    min-height: 580px;
}

@media (min-width: 1200px) and (max-width: 1440px) {
	.masthead-cover h1 {
		font-size: 66px;
		font-weight: 300;
	}
}
@media (min-width: 1441px) and (max-width: 1799px) {
	.masthead-cover h1 {
		font-size: 81px;
	}
}
@media (min-width: 1800px) {
	.masthead-cover h1 {
		font-size: 96px;
	}
}
@media (min-width: 1200px) and (max-width: 1440px) {
	.masthead-cover h2 {
		font-size: 24px;
		font-weight: 300;
	}
}
@media (min-width: 1441px) and (max-width: 1799px) {
	.masthead-cover h2 {
		font-size: 29px;
		font-weight: 300;
	}
}
@media (min-width: 1800px) {
	.masthead-cover h2 {
		font-size: 35px;
	}
}
@media (max-height: 579px) and (min-width: 1200px) and (max-width: 1440px) {
	.mouse-scroll {
		display: none;
	}
}
@media (max-height: 613px) and (min-width: 1441px) and (max-width: 1799px) {
	.mouse-scroll {
		display: none;
	}
}
@media (max-height: 664px) and (min-width: 1800px) {
	.mouse-scroll {
		display: none;
	}
}

/**
 * Services
 * =========================================== */
#services {
	padding-top: 60px;
	background-color: #fff;
}
.service-item {
	display: block;
	position: relative;
	z-index: 1;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	margin-bottom: 30px;
	overflow: hidden;
}
.service-item:after {
	content: '';
	display: block;
	padding-top: 65%;
}
.service-item:before {
	content: '';
	display: block;
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba( 0, 0, 0, 0);
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
}
.service-item:hover:before {
	background-color: rgba( 0, 0, 0, .5);
}
.service-item-header {
	position: absolute;
	z-index: 3;
	bottom: 50%;
	margin-bottom: -40px;
	left: 0;
	width: 100%;
	text-align: center;
	-webkit-transform: scale(0.9);
	   -moz-transform: scale(0.9);
			transform: scale(0.9);
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
			transition: all 0.3s;
}
.service-item:hover .service-item-header {
	margin-bottom: -20px;
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
			transform: scale(1);
}
.service-item-title {
	padding: 5px 15px;
	display: inline-block;
	vertical-align: top;
	background-color: rgba( 255, 255, 255, .8);
	font-size: 24px;
	font-weight: 300;
	border-radius: 2px;
}
.service-item:hover .service-item-title {
	background-color: rgba( 255, 255, 255, 1);
}
.service-item-footer {
	position: absolute;
	z-index: 3;
	width: 100%;
	bottom: 0;
	top: auto;
	margin-bottom: -70px;
	left: 0;
	background-color: rgba( 0, 0, 0, .8);
	text-align: center;
	padding: 15px;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
			transition: all 0.3s;
}
.service-item:hover .service-item-footer {
	margin-bottom: 0;
}

/**
 * Footer
 * =========================================== */
.footer {
	background-color: #212121;
	text-align: center;
	padding: 10px 0;
}
.navbar-footer {
	padding: 10px 0;
}
.footer-top {
	padding: 15px 0;
}
.footer .social-menu {
	display: inline-block;
	vertical-align: top;
}
.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-block;
	vertical-align: top;
}
.footer-menu:before,
.footer-menu:after {
	content: '';
	display: table;
	clear: both;
}
.footer-menu > li {
	float: left;
}
.footer-menu > li:after {
	content: '|';
	position: relative;
	color: #e53935;
	padding-left: 5px;
	padding-right: 8px;
}
.footer-menu > li:last-child:after {
	content: none;
}
.footer-menu > li > a:focus {
	text-decoration: none;
}
.footer-menu > li > a:hover {
	text-decoration: none;
	border-bottom: 1px dotted #e53935;
}
.footer-bottom {
	color: #999;
}
@media (max-width: 1199px) {
	.footer-contact {
		display: block;
	}
}
@media (max-width: 991px) {
	.footer-menu > li {
		float: none;
		display: block;
	}
	.footer-menu > li:after {
		content: none;
	}
}
@media (max-width: 767px) {
	.footer-bottom p > span,
	.footer-bottom p > .footer-contact span {
		display: block;
	}
}

/**
 * Modal
 * =========================================== */
.modal-header p:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}
.modal-header .progress {
	margin-bottom: 10px;
}