/*Google Fonts*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:500,600,700');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700');

body, html {
	height: 100%;
	width:100%;
}
body {
	font-size: 1rem;
	font-family: 'Source Sans Pro', sans-serif;
}

h1,h2,h3,h4,h5 {
	position: relative;
	font-family: 'Montserrat', sans-serif;
}
h6 {
	position: relative;
	text-transform: uppercase;
}
a {
	color: #fade8b;
}
a:hover {
	color: #fade8b;
	text-decoration: underline;
}
.bg-primary {
	background-color: #960000!important;
}
.text-inverse {
	color: #074052;
}
.text-primary {
	color: #960000!important;
}
.btn {
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	
}
.btn-primary {
	background-color: #960000;
	border-color: #960000;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.4)
}
.btn-primary:hover,.btn-primary:focus {
	background-color: #00BED7;
	border-color: #00BED7;
}
.btn-capsul {
	border-radius: 50px;
}
i.box-circle-outline {
	border-color: inherit;
	border-width: 1px;
	border-style:solid;
	border-radius: 50%;
	height: 50px;
	line-height: 50px;
	text-align: center;
	width: 50px;
}
i.box-circle-solid {
	background-color:#960000;
	border-radius: 50%;
	color: #fff;
	font-size: 22px;
	height: 55px;
	line-height: 55px;
	text-align: center;
	width: 55px;
}
.text-underline-white:before {
	content:"";
	position: absolute;
	width:100px;
	height: 4px;
	left:50%;
	margin-left:-50px;
	background:#fff;
	bottom: -15px;
	border-radius: 10px;
}
.text-underline-rb-white:before {
	content:"";
	position: absolute;
	width:100px;
	height: 4px;
	left:0;
	background:#fff;
	bottom: -15px;
	border-radius: 10px;
}
.text-underline-primary:before {
	content:"";
	position: absolute;
	width:50px;
	height: 4px;
	left:50%;
	margin-left:-25px;
	background:#960000;
	bottom: -15px;
	border-radius: 10px;
}
.text-underline-rb-primary:before {
	content:"";
	position: absolute;
	width:100px;
	height: 4px;
	left:0;
	background:#960000;
	bottom: -15px;
	border-radius: 10px;
}
.bg-overlay:before {
	content:"";
	background:rgba(0,0,0,0.7);
	position: absolute;
	height: 100%;
	width:100%;
	left:0;
	top:0;
	z-index: -1;
}
.bg-overlay-light:before {
	content:"";
	background:rgba(0,0,0,0.4);
	position: absolute;
	height: 100%;
	width:100%;
	left:0;
	top:0;
	z-index: -1;
}
.parallax {
	background-attachment: fixed!important;
}

.navbar-toggler-icon {
	color: #fff;
}

/* ========== Top Navigation ========== */

.top-nav {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	height: 80px;
	transition: 0.5s ease-in;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
}
.top-nav .navbar-nav li .nav-link {
	/* background: #960000; */
	color: #fff;
	font-size: 14px;
	padding:9px 15px;
	font-weight: 600;
	text-transform: uppercase;
	transition: 0.5s ease-in;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
}
.top-nav li a.nav-link:hover, .top-nav .nav-item.active a.nav-link {
	border-bottom: 3px solid #960000;
	color: #960000;
	transition: 0.5s ease-in;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
}
.top-nav .navbar-brand {
	font-size: 28px;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
}
.top-nav.light-header {
	height: 60px;
	background: #960000;
	box-shadow: 0 0 10px rgba(0,0,0,0.23);
	transition: 0.5s ease-in;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
}
.top-nav.light-header .navbar-brand {
	color: #fff;
}
.top-nav.light-header .navbar-nav li .nav-link {
	background: #960000;
	color: #fff;
	padding: 9px 15px;
	transition: 0.5s ease-in;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
}

.top-nav.light-header li a.nav-link:hover, .top-nav.light-header .nav-item.active a.nav-link {
	border-bottom: 3px solid #fade8b;
	color: #fade8b;
	transition: 0.5s ease-in;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
}

/* ========== Intro Header ========== */

.intro {
	float: left;
	width:100%;
	display: flex;
	align-items:center;
	height:100%;
	position: relative;
	z-index: 1;
}
.intro.intro-small {
	height: 60%;
}
.intro-bg {
	background:url("../img/intro-bgbcv-03.jpg");
	background-repeat:no-repeat;
	background-position: center center;
	background-size:cover;
}
.caption-container {
	width:50rem;
	margin:0 auto;
}
.caption-two-panel {
	display: flex;
	align-items:center;
}
.intro h1 {
	font-weight: 700;
}
.intro-caption .btn i {
	float: left;
	margin-right:15px;
}
.intro .carousel-item {
	height: 100vh;
}
.intro .carousel-item::before {
	content:"";
	background:rgba(0,0,0,0.6);
	position: absolute;
	width:100%;
	height: 100vh;
}
.intro .carousel-caption {
	top:25%;
}

/* ========== About Us ========== */

.aboutus-section {
	float: left;
	width:100%;
	padding:5rem 0;
	position: relative;
	z-index: 1;
}
.aboutus-section h2 {
	font-weight: 700;
	font-size: 2.5rem;
}
.aboutus-section .head-sec {
	float: left;
	width:100%;
}
.aboutus-section h3 {
	font-size: 1.4rem;
}
.aboutus-section p {
	font-size: 1rem;
	line-height: 1.3rem;
}
.aboutus-section .box h2 {
	font-size:24px;
	margin-bottom:20px;
	margin-top:0;
}
.aboutus-section .box i {
	font-size:20px;
}
.aboutus-section .box {
	display:flex;
}
.aboutus-section .text-box {
	flex:1 1 0;
	text-align:left;
}
.aboutus-section .icon-box {
	line-height: 1.2;
	width:70px;
}
.aboutus-section .service-block-overlay {
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
}
.aboutus-section .service-block-overlay:hover {
	background: #fff none repeat scroll 0 0;
	border-radius: 5px;
	box-shadow: 0 0 90px rgba(0, 0, 0, 0.1);
	float: left;
	margin-top: -10px;
	position: relative;
	width: 100%;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
}

/* ========== Service ========== */

.service-section {
	float: left;
	width:100%;
	padding:5rem 0;
	position: relative;
	z-index: 1;
	background-color: #999;
}
.service-section h2 {
	font-weight: 700;
	font-size: 2.5rem;
}

.service-section .head-sec {
	float: left;
	width:100%;
}

.service-section h3 {
	font-size: 1.4rem;
}
.service-section p {
	font-size: 1rem;
	line-height: 1.3rem;
}
.service-section .box h2 {
	font-size:24px;
	margin-bottom:20px;
	margin-top:0;
}

.service-section .box i {
	font-size:20px;
}
.service-section .box {
	display:flex;
}
.service-section .text-box {
	flex:1 1 0;
	text-align:left;
}
.service-section .icon-box {
	line-height: 1.2;
	width:70px;
}
.service-section .service-block-overlay {
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
}
.service-section .service-block-overlay:hover {
	background: #fff none repeat scroll 0 0;
	border-radius: 5px;
	box-shadow: 0 0 90px rgba(0, 0, 0, 0.1);
	float: left;
	margin-top: -10px;
	position: relative;
	width: 100%;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
}
.content-half {
	color:#fff;
}
.content-half ul {
	padding:0;
	list-style:none;
}
.content-half ul li {
	margin:15px 0;
	float:left;
	width:100%;
}
.content-half ul li i {
	float:left;
	font-size:30px;
	padding-top:10px;
	padding-bottom:10px;
}
.content-half ul li .list-content {
	float:left;
	margin-left:20px;
}
.content-half ul li strong {
	font-size:19px;
	font-weight:700;
}
.content-half .btn {
	margin-top:20px;
}
/*--- three Block Panel ---*/
.three-panel-block {
	float: left;
	width: 100%;
}
.three-panel-block i {
	font-size: 1.5rem;
	margin-bottom: 15px;
}
.three-panel-block i.box-round {
	border-color: inherit;
	border-width: 1px;
	border-style:solid;
	padding:16px;
	border-radius: 50%;
}

/*--- Two Block Panel ---*/
.two-panel-block {
	float: left;
	width: 100%;
}
.two-panel-block p {
	font-size:16px;
}


/*--- Two Block Panel ---*/
.four-panel-block {
	float: left;
	width:100%;
}

/* ========== Contact ========== */

.contact-section {
	float: left;
	width:100%;
	padding:5rem 0rem 0rem 0rem;
	position: relative;
	z-index: 1;
}
.contact-section h2 {
	font-weight: 700;
	font-size: 2.5rem;
}
.contact-section .head-sec {
	float: left;
	width:100%;
}
.contact-section h3 {
	font-size: 1.4rem;
}
.contact-section p {
	font-size: 1rem;
	line-height: 1.3rem;
}
.contact-section .box h2 {
	font-size:24px;
	margin-bottom:20px;
	margin-top:0;
}
.contact-section .box i {
	font-size:20px;
}
.contact-section .box {
	display:flex;
}
.contact-section .text-box {
	flex:1 1 0;
	text-align:left;
}
.contact-section .icon-box {
	line-height: 1.2;
	width:70px;
}
.contact-section .service-block-overlay {
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
}
.contact-section .service-block-overlay:hover {
	background: #fff none repeat scroll 0 0;
	border-radius: 5px;
	box-shadow: 0 0 90px rgba(0, 0, 0, 0.1);
	float: left;
	margin-top: -10px;
	position: relative;
	width: 100%;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
}
.contact-section #map {
		height: 400px
}

/* ========== Footer Section ========== */

.footer-section {
	float: left;
	width:100%;
	position: relative;
	z-index: 1;
}
.footer-section .list-box img {
	width: 70px;
}
.footer-section .list-box a.title {
	font-size: 14px;
	line-height: 0;
}
.footer-section .copy-text {
	font-size: 12px;
	border-top: 1px solid #555;
}
.social-box a.icoRss:hover {
	background-color: #F56505;
}
.social-box a.fa-box:hover {
	background-color:#3B5998;
}
.social-box a.tw-box:hover {
	background-color:#33ccff;
}
.social-box a.go-box:hover {
	background-color:#BD3518;
}
.social-box a.ld-box:hover {
	background-color:#007bb7;
}
ul.social-box {
	list-style: none;
	display: inline;
	margin-left:0 !important;
	padding: 0;
}
ul.social-box li {
	display: inline;
	margin: 0 5px;
}
.social-box li a {
	background: #414344;
	border-radius: 50%;
	display: inline-block;
	font-size: 13px;
	height: 30px;
	margin: 0 auto;
	position: relative;
	text-align: center;
	width: 30px;
}
.social-box li i {
	margin:0;
	line-height:30px;
	text-align: center;
}
.social-box li a:hover i, .triggeredHover {
	-moz-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	-ms--transform: rotate(360deg);
	transform: rotate(360deg);
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transition: all 0.2s;
	transition: all 0.2s;
}
.social-box i {
	color: #fff;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-o-transition: all 0.8s;
	-ms-transition: all 0.8s;
	transition: all 0.8s;
}

.copy-footer {
	float: left;
	width:100%;
	font-size: 14px;
	background: #111;
}
.copy-footer a {
	color: #fff;
}
.copy-footer a:hover {
	text-decoration: underline;
}
