@charset "utf-8";
/* CSS Document */

/* 

	Template Name: Apokhava - Boostrap 5 Multipage HTML Website Template
	Author: Rainbow Design
	
*/

/*=====================================================================

--------------- Table of Content ---------------
	
	01. Global Settings
	02. Header
	03. Slider
	04. Features Section
	05. About Area
	06. Faq Area
	07. Services Area
	08. Testimonials Area
	09. Counter Area
	10. Portfolio Section
	11. Call To Action
	12. Blog
	13. Partner
	14. Footer
	15. Inner Page Title
	16. Team
	17. Contact Us

=====================================================================*/

/*--------------------------------------------------------------
	01. Global Settings
--------------------------------------------------------------*/

/* Theme Font */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
/* font-family: 'Open Sans', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* font-family: 'Rubik', sans-serif; */
body {
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	color: #6C6D74;
	letter-spacing: 0.5px;
}
img {
	max-width: 100%;
}
p {
	line-height: 24px;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
	color: #333;
	padding: 0px;
	font-family: 'Rubik', sans-serif;
}
h1 {
	font-size: 60px;
	font-weight: 700;
}
h2 {
	font-size: 36px;
	font-weight: 700;
}
h3 {
	font-size: 26px;
	font-weight: 700;
}
h4 {
	font-size: 24px;
	font-weight: 700;
}
h5 {
	font-size: 18px;
	font-weight: 700;
}
h6 {
	font-size: 16px;
	font-weight: 700;
}
ul, ol, li {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
a {
	text-decoration: none;
	cursor: pointer;
}
a:hover {
	text-decoration: none;
}
/* Buttons */
.btn-style-1 {
	background-color: #0f4ea3;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	padding: 15px 30px 15px 30px;
	text-decoration: none;
	font-size: 14px;
	display: inline-block;
	border-radius: 4px;
	position: relative;
	overflow: hidden;
	z-index: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.btn-style-1:before {
	content: "";
	width: 100%;
	height: 0;
	position: absolute;
	background-color: #0c4899;
	top: 50%;
	left: 0;
	z-index: -1;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.btn-style-1:after {
	content: "";
	width: 100%;
	height: 0;
	position: absolute;
	background-color: #0c4899;
	left: 0;
	bottom: 50%;
	z-index: -1;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.btn-style-1:hover {
	color: #fff;
}
.btn-style-1:hover:before, .btn-style-1:hover:after {
	height: 50%;
	color: #fff;
}
.btn-style-2 {
	background-color: #f6ab34;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	padding: 15px 30px 15px 30px;
	text-decoration: none;
	font-size: 14px;
	display: inline-block;
	border-radius: 4px;
	position: relative;
	overflow: hidden;
	z-index: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.btn-style-2:before {
	content: "";
	width: 100%;
	height: 0;
	position: absolute;
	background-color: #e79c23;
	top: 50%;
	left: 0;
	z-index: -1;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.btn-style-2:after {
	content: "";
	width: 100%;
	height: 0;
	position: absolute;
	background-color: #e79c23;
	left: 0;
	bottom: 50%;
	z-index: -1;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.btn-style-2:hover {
	color: #fff;
}
.btn-style-2:hover:before, .btn-style-2:hover:after {
	height: 50%;
	color: #fff;
}
.btn-style-3 {
	background-color: #0f4ea3;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	padding: 8px 16px 8px 16px;
	text-decoration: none;
	font-size: 12px;
	display: inline-block;
	border-radius: 4px;
	position: relative;
	overflow: hidden;
	z-index: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.btn-style-3:before {
	content: "";
	width: 100%;
	height: 0;
	position: absolute;
	background-color: #0c4899;
	top: 50%;
	left: 0;
	z-index: -1;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.btn-style-3:after {
	content: "";
	width: 100%;
	height: 0;
	position: absolute;
	background-color: #0c4899;
	left: 0;
	bottom: 50%;
	z-index: -1;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.btn-style-3:hover {
	color: #fff;
}
.btn-style-3:hover:before, .btn-style-3:hover:after {
	height: 50%;
	color: #fff;
}
/* loading */
#preloader {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99999;
	width: 100%;
	text-align: center;
	height: 100%;
	vertical-align: middle;
	height: 100%;
	overflow: visible;
	background-color: #fff;
}
#preloader .spinner-border {
	top: 50%;
	position: relative;
}
/* Top Scroll */
.scroll-top {
	display: none;
	position: fixed;
	bottom: 2px;
	text-align: center;
	right: 2%;
	width: 30px;
	border: 2px solid #f6ab34;
	height: 30px;
	line-height: 26px;
	font-size: 12px;
	color: #fff;
	background-color: #f6ab34;
	text-decoration: none;
	border-radius: 4px;
	z-index: 9999;
}
.scroll-top:hover {
	color: #fff!important;
	text-decoration: none;
}
/* Section Title */
.section-title {
	position: relative;
}
.section-title .subtitle {
	font-weight: 700;
	text-transform: uppercase;
	color: #0f4ea3;
	display: block;
}
.section-title .title {
	font-size: 40px;
	position: relative;
	font-weight: 700;
	display: inline-block;
}
.section-title .title:after {
	position: absolute;
	content: "";
	width: 60px;
	height: 2px;
	bottom: 3px;
	left: 41%;
	transform: translateX(-41%);
	background-color: #0f4ea3;
}
.section-title .title:before {
	position: absolute;
	content: "";
	width: 60px;
	height: 2px;
	bottom: -3px;
	right: 41%;
	transform: translateX(41%);
	background-color: #0f4ea3;
}
/*--------------------------------------------------------------
	02. Header
--------------------------------------------------------------*/
.header-area .navbar-brand {
	margin-right: 0px;
	position: relative;
	padding: 0px 15px 0px 0px;
	border-right: 1px solid rgba(0,0,0,0.1);
}
.header-area .navbar-nav .nav-link {
	padding: 24px 0px;
	color: #0f4ea3;
	font-size: 12px;
	font-family: 'Rubik', sans-serif;
	text-transform: uppercase;
}
.header-area .navbar-nav .nav-link span {
	padding: 18px 10px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.header-area .navbar-nav .nav-item:hover .nav-link span {
	background-color: #0f4ea3;
	color: #fff;
	border-radius: 3px;
	padding: 6px 10px;
}
.header-area .navbar-nav .nav-item.active .nav-link span {
	background-color: #0f4ea3;
	color: #fff;
	border-radius: 3px;
	padding: 6px 10px;
}
.header-area .navbar-nav .nav-link span i {
	padding-left: 4px;
}
.header-area .navbar-nav .nav-link:after {
	display: none;
}
.header-area .header-phone .nav-link {
	padding: 16px 0px;
	margin-left: 8px;
	border-left: 1px solid rgba(0,0,0,0.1);
}
.header-area .header-phone .nav-link .phone-color {
	padding: 8px 14px;
	color: #fff;
	border-radius: 3px;
	margin-left: 18px;
	background-color: #0f4ea3;
}
.header-area .dropdown-menu {
	margin: 0px;
	padding: 6px 0px;
	border: 0px;
	background-color: #393d46;
}
.header-area .dropdown-menu .dropdown-item {
	padding: 6px 40px 6px 25px;
	font-size: 13px;
	border-left: 3px solid #393d46;
	color: #94989e;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.header-area .dropdown-menu .dropdown-item:hover, .header-area .dropdown-menu .dropdown-item:focus, .header-area .dropdown-menu .dropdown-item:active {
	border-left: 3px solid #f6ab34;
	background-color: #42464f;
}
/* sticky */
.sticky {
	position: fixed;
	top: 0px;
}
.is-sticky .header-area {
	border-bottom: 1px solid rgba(0,0,0,0.1);
	z-index: 999 !important;
	background-color: #fff;
}
@media screen and (min-width: 992px) {
/*shows the dropdown menu on hover */
.navbar .dropdown:hover .dropdown-menu, .navbar .dropdown .dropdown-menu:hover {
	display: block!important;
}
}
/*--------------------------------------------------------------
	03. Slider
--------------------------------------------------------------*/
.slider .carousel-item:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 0;
	background-color: rgba(0,0,0,0.7);
}
.slider .carousel-caption {
	top: 50%;
	bottom: auto;
	padding-top: 0px;
	padding-bottom: 0px;
	transform: translateY(-50%);
}
.slider .carousel-caption .slider-caption-box {
	border: 2px solid rgba(255,255,255,0.1);
	background-color: rgba(255,255,255,0.1);
	padding: 20px 30px;
	text-align: center;
}
.slider .carousel-caption h2 {
	margin-bottom: 10px;
	font-size: 42px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
}
.slider .carousel-caption h2 span {
	text-decoration: underline;
	color: #f6ab34;
}
.slider .carousel-caption p {
	color: #fff;
}
.slider .carousel-control-next, .slider .carousel-control-prev {
	border-radius: 100%;
	color: #fff;
	line-height: 50px;
	background-color: rgba(255,255,255,0.6);
	border: 2px solid rgba(255,255,255,0.6);
	font-size: 18px;
}
.slider .carousel-control-next {
	width: 50px;
	bottom: auto;
	top: 50%;
	height: 50px;
	right: 60px;
	transform: translateY(-50%);
}
.slider .carousel-control-prev {
	left: 60px;
	width: 50px;
	display: inline-block;
	bottom: auto;
	top: 50%;
	height: 50px;
	transform: translateY(-50%);
}
/*--------------------------------------------------------------
	04. Features Section
--------------------------------------------------------------*/
.features-section {
	background-color: #eeeeee;
	z-index: 2;
	position: relative;
}
.feature-item {
	margin-top: -50px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.feature-item:hover {
 box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
.feature-item h5 a {
	font-size: 18px;
	color: #0f4ea3;
}
/*--------------------------------------------------------------
	05. About Area
--------------------------------------------------------------*/
.about-content h6 {
	color: #0f4ea3;
	font-style: italic;
	font-weight: 600;
}
.about-content h2 {
	color: #18222e;
	font-size: 40px;
	font-weight: 800;
}
/*--------------------------------------------------------------
	06. Faq Area
--------------------------------------------------------------*/
.faq-box .accordion-item .accordion-header .accordion-button .fa-minus {
	display: inline-block;
	color: #f6ab34;
}
.faq-box .accordion-item .accordion-header .accordion-button i {
	margin-right: 6px;
}
.faq-box .accordion-item .accordion-header .accordion-button.collapsed .fa-minus {
	display: none;
}
.faq-box .accordion-item .accordion-header .accordion-button.collapsed .fa-plus {
	display: inline-block;
}
.faq-box .accordion-item .accordion-header .accordion-button .fa-plus {
	display: none;
}
.faq-box .accordion-item .accordion-header .accordion-button .fa-minus, .faq-box .accordion-item .accordion-header .accordion-button .fa-plus {
	padding-top: 4px;
}
.faq-box .accordion-item .accordion-header {
	background-color: transparent;
}
.faq-box .accordion-item .accordion-header .accordion-button.collapsed {
	color: #333 !important;
	background-color: #e8f3f5;
	padding: 10px 15px;
	border: 2px solid #e8f3f5;
}
.faq-box .accordion-item {
	border: 0px;
	border-radius: 0px;
	margin-bottom: 10px;
}
.faq-box .accordion-item:last-child {
	margin-bottom: 0px;
}
.faq-box .accordion-item .accordion-header {
	border: 0px;
	padding: 0px;
}
.faq-box .accordion-item .accordion-body {
	line-height: 24px;
	padding: 15px;
	color: #959595;
	background-color: #e8f3f5;
}
.faq-box .accordion-item .accordion-header .accordion-button {
	color: #fff !important;
	padding: 10px 15px;
	background-color: #0f4ea3;
}
.faq-box .accordion-item .accordion-header .accordion-button:after{
	display:none;
}
/*--------------------------------------------------------------
	07. Services Area
--------------------------------------------------------------*/
.services-bg {
	position: relative;
	background-image: url(../img/background/services-bg.jpg);
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 0;
}
.services-bg:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 0;
	background-color: rgba(0,0,0,0.7);
}
.single-services-item {
	border: 1px solid #e5e5e5;
	position: relative;
	padding: 40px 40px;
	overflow: hidden;
}
.single-services-item i {
	color: #fff;
	background-color: #0f4ea3;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	line-height: 60px;
	text-align: center;
	font-size: 18px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.single-services-item h4 {
	font-size: 22px;
	font-weight: 700;
	color: #a0a0a0;
}
.single-services-item .number {
	position: absolute;
	bottom: 0px;
	right: 0px;
	font-weight: 800;
	line-height: 70px;
	opacity: 0.05;
	font-size: 80px;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.single-services-item:hover .number {
	bottom: 100%;
	opacity: 0.1;
	transform: translateY(100%);
}
.single-services-item:hover i {
	background-color: #f6ab34;
}
/* sidebar service link */
.service-link ul {
	background-color: #f6f6f6;
	border-top: 2px solid #0f4ea3;
}
.service-link ul li a {
	padding: 10px 0px 10px 12px;
	font-size: 13px;
	display: inline-block;
	border-left: 3px solid #f6f6f6;
	width: 100%;
	border-bottom: 1px solid #e9e9e9;
	color: #333;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.service-link ul li a:hover {
	border-left: 3px solid #f6ab34;
	background-color: #0f4ea3;
	color: #fff;
}
.service-link ul li.active a {
	border-left: 3px solid #f6ab34;
	background-color: #0f4ea3;
	color: #fff;
}
/* download brochure */
.download-brochure a {
	width: 100%;
	display: inline-block;
	background-color: #f6ab34;
	color: #fff;
	font-size: 16px;
	padding: 10px 12px;
	line-height: 20px;
	position: relative;
}
.download-brochure a small {
	width: 100%;
	display: inline-block;
	font-size: 11px;
}
.download-brochure a i {
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
}
/* How can we help you */
.help-you {
	background-color: #0f4ea3;
	padding: 25px;
	color: #fff;
}
.help-you h2 {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
}
/* single service img carousel */
.single-service-img-carousel .owl-nav {
	width: 100%;
	position: absolute;
	bottom: 0px;
	right: 0px;
	text-align: right;
}
.single-service-img-carousel .owl-nav .owl-prev {
	border-radius: 4px 0px 0px 4px;
}
.single-service-img-carousel .owl-nav .owl-next {
	border-radius: 0px 4px 4px 0px;
}
.single-service-img-carousel .owl-nav .owl-prev, .single-service-img-carousel .owl-nav .owl-next {
	border-radius: 100%;
	color: #fff !important;
	line-height: 30px;
	font-size: 12px;
	width: 30px;
	border: 0 !important;
	height: 30px;
	background-color: #212121 !important;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.single-service-img-carousel .owl-nav .owl-prev:hover, .single-service-img-carousel .owl-nav .owl-next:hover {
	background-color: #0f4ea3 !important;
	color: #fff !important;
}
/* service contant */
.service-contant h2 {
	font-weight: 500;
	font-size: 26px;
}
.service-contant h3 {
	font-weight: 500;
	font-size: 22px;
}
/* video img box */
.video-img-box {
	border-radius: 14px;
	overflow: hidden;
	position: relative;
}
.video-img-box .hoverlay {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	background-color: rgba(0,0,0,0.1);
}
.video-img-box .hoverlay a i {
	background-color: #fff;
	color: #ef800d;
	border-radius: 100%;
	width: 50px;
	height: 50px;
	text-align: center;
	font-size: 16px;
	line-height: 50px;
	padding: 0;
}
/* blockquote */
.service-contant blockquote {
	background-color: #f7f7f7;
	border-left: 4px solid #dde1e4;
	padding: 15px;
	font-style: italic;
}
.service-contant blockquote p {
	font-size: 18px;
	line-height: 28px;
}
/*--------------------------------------------------------------
	08. Testimonials Area
--------------------------------------------------------------*/
.testimonial-item {
	overflow: hidden;
	text-align: center;
	border: 1px solid rgba(0,0,0,0.1);
}
.testimonial-item .testimonial-des {
	background-color: #0f4ea3;
	padding: 35px 25px 50px 25px;
	position: relative;
}
.testimonial-item .testimonial-des i {
	position: absolute;
	font-size: 130px;
	color: #fff;
	z-index: 0;
	top: 50%;
	left: 0px;
	right: 0px;
	opacity: 0.15;
	margin: auto;
	transform: translateY(-50%);
}
.testimonial-item .testimonial-des p {
	color: #fff;
	font-style: italic;
	line-height: 30px;
	font-size: 18px;
	z-index: 1;
	position: relative;
}
.testimonial-item h5 {
	font-size: 18px;
	font-weight: 600;
}
.testimonial-item h5 small {
	font-style: italic;
}
.testimonial-item .author-box {
	position: relative;
	padding: 45px 10px 35px 10px;
}
.testimonial-item .author-box .author-img {
	position: absolute;
	width: 70px;
	height: 70px;
	left: 0px;
	border-radius: 100%;
	overflow: hidden;
	border: 4px solid #fff;
	top: -30px;
	right: 0px;
	margin: auto;
}
.testimonial-carousel .owl-nav {
	width: 100%;
	margin-top: 30px;
}
.testimonial-carousel .owl-nav .owl-prev {
	border-radius: 4px 0px 0px 4px;
}
.testimonial-carousel .owl-nav .owl-next {
	border-radius: 0px 4px 4px 0px;
}
.testimonial-carousel .owl-nav .owl-prev, .testimonial-carousel .owl-nav .owl-next {
	border-radius: 100%;
	color: #fff !important;
	line-height: 40px;
	font-size: 12px;
	width: 40px;
	border: 0 !important;
	height: 40px;
	background-color: #212121 !important;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.testimonial-carousel .owl-nav .owl-prev:hover, .testimonial-carousel .owl-nav .owl-next:hover {
	background-color: #0f4ea3 !important;
	color: #fff !important;
}
/*--------------------------------------------------------------
	09. Counter Area
--------------------------------------------------------------*/
.counter-section {
	background-color: #121212;
	position: relative;
	z-index: 0;
	background-image: url(../img/background/counter-area-bg.jpg);
	background-size: cover;
	background-position: center;
}
.counter-section:before {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	background-color: rgba(31,39,50,0.7);
	content: "";
	z-index: 0;
	width: 100%;
	height: 100%;
}
.single-counter-box {
	padding: 30px;
	position: relative;
	background-color: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.3);
}
.single-counter-box i {
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 18px;
	border-radius: 4px;
	background-color: #f6ab34;
	color: #fff;
	margin-bottom: 10px;
}
.single-counter-box .content {
	position: relative;
	padding-bottom: 20px;
}
.single-counter-box .content:after {
	position: absolute;
	width: 50px;
	height: 2px;
	bottom: 0px;
	left: 0px;
	content: "";
	background-color: #f6ab34;
}
.single-counter-box .content .counter-info-text {
	font-size: 40px;
	font-weight: 700;
	line-height: 50px;
	margin-bottom: 0px;
	color: #fff;
}
.single-counter-box .content .title {
	font-size: 16px;
	text-transform: capitalize;
	font-weight: 500;
	color: #b9b9b9;
}
/*--------------------------------------------------------------
	10. Portfolio Section
--------------------------------------------------------------*/
#portfoliolist .portfolio {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	display: none;
	overflow: hidden;
}
.filter1 {
	margin: auto auto 40px auto;
	display: inline-block;
	background-color: #0f4ea3;
}
.filter1 li span {
	cursor: pointer;
	padding: 8px 20px;
	font-size: 12px;
	display: inline-block;
	color: #fff;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.filter1 li span:hover {
	background-color: #f6ab34;
	color: #fff;
}
.filter1 li span.active {
	background-color: #f6ab34;
	color: #fff;
}
.filter1 li span:after {
	position: absolute;
	content: "";
	width: 1px;
	background-color: #ccc;
	height: 18px;
	top: 50%;
	transform: translateY(-50%);
	right: -7px;
}
.filter1 li:last-child span:after {
	display: none;
}
.filter1 li span.active:before {
	background-color: #1FCB67;
}
.portfolio-item .box-content {
	position: relative;
}
.portfolio-item .portfolio-item-img img {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.portfolio-item .portfolio-item-img {
	position: relative;
	overflow: hidden;
}
.portfolio-item:hover .portfolio-item-img img {
	transform: scale(1.2);
}
.portfolio-item .portfolio-item-img:after {
	content: "";
	width: 100%;
	left: 0;
	position: absolute;
	z-index: 0;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	top: 0;
	opacity: 1;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.portfolio-item .box-content {
	margin-bottom: 20px;
	position: absolute;
	top: 20px;
	right: 20px;
	bottom: 0;
	z-index: 1;
}
.portfolio-item .title {
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0px;
	color: #fff;
}
.portfolio-item .box-content .post {
	color: #ccc;
}
.portfolio-item .social {
	list-style: none;
	opacity: 0;
	z-index: 2;
	position: absolute;
	top: 50%;
	left: 0px;
	right: 0px;
	transform: translateY(-50%);
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.portfolio-item:hover .social {
	opacity: 1;
}
.portfolio-item .social li {
	display: inline-block
}
.portfolio-item .social li a {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: #f6ab34;
	margin-right: 2px;
	border-radius: 100%;
	font-size: 16px;
	color: #fff;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.portfolio-item .social li a:hover {
	background-color: #1a1a1c;
}
.portfolio-item .social li:last-child a {
	margin-right: 0
}
/* single portfolio */
.project-info h2 {
	font-weight: 500;
	font-size: 32px;
	text-transform: capitalize;
}
.single-project-dis h2 {
	font-weight: 500;
	font-size: 22px;
	text-transform: capitalize;
}
.project-info h4 {
	font-weight: 300;
	font-size: 24px;
	line-height: 34px;
}
.project-info-box {
	background-color: #f5f5f5;
	padding: 25px;
}
.project-info-box ul li h5 {
	font-size: 18px;
	font-weight: 600;
	padding-bottom: 2px;
}
/* single portfolio img carousel */
.single-project-img-carousel .owl-nav {
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0px;
}
.single-project-img-carousel .owl-nav .owl-prev {
	border-radius: 4px 0px 0px 4px;
	float: left;
}
.single-project-img-carousel .owl-nav .owl-next {
	border-radius: 0px 4px 4px 0px;
	float: right;
}
.single-project-img-carousel .owl-nav .owl-prev, .single-project-img-carousel .owl-nav .owl-next {
	border-radius: 0;
	color: #333 !important;
	line-height: 40px;
	font-size: 12px;
	margin: 0px;
	width: 40px;
	border: 0 !important;
	height: 40px;
	background-color: rgba(255,255,255,0.8) !important;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.single-project-img-carousel .owl-nav .owl-prev:hover, .single-project-img-carousel .owl-nav .owl-next:hover {
	background-color: #0f4ea3 !important;
	color: #fff !important;
}
/*--------------------------------------------------------------
	11. Call To Action
--------------------------------------------------------------*/
.call-to-action-section {
	background-image: url(../img/background/call-to-action-bg.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	position: relative;
	z-index: 0;
}
.call-to-action-section:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100% !important;
	top: 0px;
	height: 0px;
	z-index: -1;
	background-color: rgba(0,0,0,0.8);
}
.call-to-action-box-contact h3 {
	color: #fff;
	font-weight: 700;
	margin: 0 0 4px 0;
	font-size: 45px;
}
.call-to-action-box-contact p {
	color: #fff;
}
.call-to-action-btn a {
	color: #f6ab34;
	display: inline-block;
	font-size: 36px;
	font-weight: 700;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.call-to-action-btn a:hover {
	color: #fff;
}
/*--------------------------------------------------------------
	12. Blog
--------------------------------------------------------------*/
.single-news-post-item {
	padding: 20px;
	border: 1px solid rgba(0, 0, 0, 0.05);
}
.single-news-post-item .post-thumbnail {
	position: relative;
	overflow: hidden;
}
.single-news-post-item .hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: rgba(0, 0, 0, 0.6);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.single-news-post-item:hover .hover {
	opacity: 1;
}
.single-news-post-item .post-link {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 10px;
	left: 10px;
}
.single-news-post-item .post-link li {
	display: inline-block;
	list-style: none;
}
.single-news-post-item .post-link li a {
	color: #fff;
	font-size: 12px;
	width: 30px;
	height: 30px;
	border-radius: 3px;
	line-height: 30px;
	display: inline-block;
	text-align: center;
	border: 1px solid #fff;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.single-news-post-item .post-link li a:hover {
	color: #fff;
	text-decoration: none;
	background-color: #f6ab34;
	border-color: #f6ab34;
}
.single-news-post-item .post-date {
	position: absolute;
	top: 10px;
	border-radius: 4px;
	overflow: hidden;
	right: 10px;
}
.single-news-post-item .date {
	display: block;
	padding: 5px 10px;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	background: #0f4ea3;
	width: 100%;
}
.single-news-post-item .month {
	display: block;
	padding: 5px 13px;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	background: #f6ab34;
	height: 35px;
}
.single-news-post-item .post-content {
	padding: 20px 0px 0px 0px;
}
.single-news-post-item .post-title a {
	font-size: 20px;
	font-weight: 700;
	color: #333;
	display: inline-block;
	text-transform: capitalize;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.single-news-post-item .post-title a:hover {
	text-decoration: none;
	color: #0f4ea3;
}
.single-news-post-item .read-more {
	color: #333;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
	transition: color 0.20s linear;
	display: inline-block;
	margin-bottom: 6px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.single-news-post-item .read-more:hover {
	text-decoration: none;
	color: #0f4ea3;
}
.single-news-post-item .read-more:after {
	content: "";
	position: absolute;
	width: 30%;
	bottom: -6px;
	display: block;
	border: 1px solid #0f4ea3;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.single-news-post-item .read-more:hover:after {
	width: 100%;
}
/* widget */
.widget {
	background-color: #f8f9fb;
	width: 100%;
	display: inline-block;
	border: 1px solid #e8ebf1;
}
.widget .widget-title {
	font-family: 'Rubik', sans-serif;
	position: relative;
}
.widget .widget-title:after {
	position: absolute;
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 100%;
	content: "";
	background-color: #0f4ea3;
}
/* widget search */
.widget .widget-search {
	position: relative;
	width: 100%;
	display: inline-block;
}
.widget .widget-search input[type="search"] {
	background: #fff;
	border: 0;
	padding: 12px 12px;
	float: left;
	border-radius: 3px 0px 0 3px;
	width: 100%;
}
.widget .widget-search button {
	border: 0;
	position: absolute;
	top: 0px;
	width: 40px;
	padding: 0 16px;
	right: 0px;
	text-align: center;
	height: 100%;
	background-color: #0f4ea3;
	color: #fff;
}
/* widget category */
.widget-category ul li a {
	display: block;
	padding-bottom: 12px;
	font-size: 13px;
	color: #333;
	font-weight: 600;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.widget-category ul li:last-child a {
	padding-bottom: 0px;
}
.widget-category ul li a:hover {
	color: #0f4ea3;
}
/* widget recent */
.widget-recent .recent-wid-item {
	position: relative;
	padding-left: 70px;
}
.widget-recent .recent-wid-item img {
	position: absolute;
	left: 0;
	top: 5px;
	max-width: 60px;
	border-radius: 5px;
}
.widget-recent .info a {
	color: #011327;
	margin-bottom: 6px;
	display: inline-block;
	font-weight: 600;
	line-height: 20px;
}
.widget-recent .info span {
	display: block;
	font-size: 11px;
}
.widget-recent .info span .current-year {
	display:inline-block;
}
/* widget tags */
.widget .widget-tags a {
	padding: 5px 15px;
	display: inline-block;
	background-color: #fff;
	margin-bottom: 4px;
	color: #333;
	font-weight: 600;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.widget .widget-tags a:hover {
	background-color: #0f4ea3;
	color: #fff;
}
/* single blog section */
.single-blog-section .single-news-post-item h5 {
	font-weight: 600;
	font-size: 18px;
}
/* post tags */
.post-share-options .post-tags {
	font-size: 13px;
	color: #333;
	font-weight: 700;
}
.post-share-options .post-tags a {
	font-size: 13px;
	border-right: 1px solid #222222;
	padding-right: 12px;
	margin-right: 10px;
	font-weight: 500;
	color: #333;
	line-height: 10px;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.post-share-options .post-tags a:hover {
	color: #0f4ea3;
}
.post-share-options .post-tags a:first-child {
	margin-left: 10px;
}
.post-share-options .post-tags a:last-child {
	border-right: none;
	margin-right: 0px;
	padding-right: 0px;
}
/* share social */
.post-share-options .share-social {
	font-size: 13px;
	color: #333;
	font-weight: 700;
}
.post-share-options .share-social a {
	font-size: 13px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background-color: #f5f5f5;
	font-weight: 500;
	color: #333;
	border-radius: 100px;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.post-share-options .share-social a:hover {
	background-color: #0f4ea3;
	color: #fff;
}
.post-share-options .share-social a:first-child {
	margin-left: 10px;
}
/* blog comment box */
.blog-comment-box h2.title-box {
	font-weight: 600;
	font-size: 26px;
}
.comments-area .comment-list li {
	border-bottom: 1px solid #f2f2f2;
	position: relative;
}
.comments-area .comment-list li .single-comment-box {
	position: relative;
	padding-left: 70px;
}
.comments-area .comment-list li .single-comment-box .comment_image {
	width: 50px;
	position: absolute;
	left: 0px;
	top: 0px;
	margin-right: 30px;
	overflow: hidden;
	border-radius: 50%;
}
.comments-area .comment-list li .single-comment-box .text-box h3 {
	font-size: 18px;
	font-weight: 600;
}
.comments-area .comment-list li:last-child {
	border-bottom: 0px;
}
.comments-area .comment-list li .single-comment-box .text-box .comment_date_time {
	color: #0f4ea3;
	font-weight: 400;
	font-size: 12px;
}
.comments-area .comment-list li .single-comment-box .text-box .reply a {
	background: #f2f2f2;
	color: #7b8083;
	padding: 6px 12px;
	font-size: 12px;
	text-transform: uppercase;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.comments-area .comment-list li .single-comment-box .text-box .reply a:hover {
	background-color: #0f4ea3;
	color: #fff;
}
/* post a reply box */
.post-a-reply-box h2.title-box {
	font-weight: 600;
	font-size: 26px;
}
.post-a-reply-form input {
	padding: 25px 15px;
}
/* pagination */
.pagination-box .page-item:first-child .page-link {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.pagination-box .page-item:last-child .page-link {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.pagination-box .pagination li a {
	color: #0f4ea3;
}
.pagination-box .pagination li.active a {
	background-color: #0f4ea3;
	border-color: #0f4ea3;
}
/*--------------------------------------------------------------
	13. Partner
--------------------------------------------------------------*/
.partner-item {
	text-align: center;
	border: 1px solid #f5f5f5;
	background-color: #fff;
	padding: 15px 0px;
}
.partner-item img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	opacity: 0.5;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.partner-item:hover img {
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
	opacity: 1;
}
/*--------------------------------------------------------------
	14. Footer
--------------------------------------------------------------*/
.footer-block {
	background-image: url(../img/background/footer-bg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	position: relative;
	background-size: cover;
	z-index: 0;
}
.footer-block:after {
	position: absolute;
	content: "";
	background-color: rgba(0,0,0,0.8);
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: -1;
}
/* quick link */
.top-footer .quick-link ul li {
	line-height: 30px;
}
.top-footer .quick-link ul li a {
	color: #e5e5e5;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.top-footer .quick-link ul li a:hover {
	color: #0f4ea3;
}
.top-footer .title h3 {
	color: #f6ab34;
	font-weight: 400;
	margin: 0;
	font-size: 20px;
	text-transform: uppercase;
}
/* footer contact */
.top-footer .contact-list ul li {
	line-height: 30px;
	color: #aaaaaa;
}
.top-footer .contact-list ul li strong {
	color: #fff;
}
/* footer social */
.top-footer .footer-social-list ul li a {
	background-color: rgba(255, 255, 255, 0.1);
	color: #e5e5e5;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: inline-block;
	border-radius: 100px;
	font-size: 12px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.top-footer .footer-social-list ul li a:hover {
	background-color: #0f4ea3;
	color: #fff;
}
/* footer newsletter */
.footer-newsletter form {
	position: relative;
}
.footer-newsletter form input {
	background-color: #0f4ea3;
	height: 50px;
	border: 0px;
	width: 100%;
	padding: 14px 20px;
	color: #cccccc;
}
.footer-newsletter form button {
	position: absolute;
	right: 0;
	top: 0;
	height: 50px;
	border: 0px;
	background-color: #094391;
	color: #fff;
	font-size: 16px;
	line-height: .8;
	padding: 18px 22px;
}
.footer-newsletter form button:hover {
	background: #333;
	color: #fff;
}
/* bottom footer */
.bottom-footer {
	background-color: #111;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.bottom-footer-link li a {
	color: #aaaaaa;
	display: inline-block;
	padding-right: 18px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.bottom-footer-link li a:hover {
	color: #0f4ea3;
}
.bottom-footer-link li:last-child a {
	padding-right: 0px;
}
/*--------------------------------------------------------------
	15. Inner Page Title
--------------------------------------------------------------*/
.page-title-section {
	background-image: url(../img/background/page-title-bg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	text-align: center;
	background-size: cover;
	position: relative;
	z-index: 0;
}
.page-title-section:after {
	background-color: rgba(0,0,0,0.8);
	position: absolute;
	width: 100%;
	height: 100%;
	content: "";
	top: 0px;
	left: 0px;
	z-index: -1;
}
.page-title-section h1 {
	font-weight: 600;
	font-size: 36px;
	color: #fff;
}
.page-title-section .breadcrumb {
	margin: 0px;
	padding: 0px;
	display: inline-block;
	background-color: transparent;
}
.page-title-section .breadcrumb li {
	float: none;
	display: inline-block;
}
.page-title-section .breadcrumb li a {
	color: #f6ab34;
}
/*--------------------------------------------------------------
	16. Team
--------------------------------------------------------------*/
.single-team-member .team-img {
	overflow: hidden;
}
.single-team-member .team-img img {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.single-team-member .team-img {
	position: relative;
}
.single-team-member:hover .team-img img {
	transform: scale(1.2);
}
.single-team-member .team-img > a:after {
	background: rgba(0,0,0,0.70);
	bottom: 0;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	transition: all 0.5s ease 0s;
	width: 100%;
	opacity: 0;
}
.single-team-member:hover .team-img a:after {
	opacity: 1;
}
.single-team-member .team-social-icon {
	left: 0;
	text-align: center;
	width: 100%;
	opacity: 0;
	position: absolute;
	top: 45%;
	transform: translateY(-50%);
}
.single-team-member:hover .team-social-icon {
	top: 50%;
	transform: translateY(-50%);
	opacity: 1;
}
.single-team-member .team-social-icon ul li {
	display: inline-block;
	float: none;
}
.single-team-member .team-social-icon ul li a {
	border: 1px solid #fff;
	border-radius: 50%;
	color: #fff;
	display: block;
	font-size: 12px;
	height: 30px;
	line-height: 30px;
	margin: 0 3px;
	width: 30px;
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.single-team-member .team-social-icon ul li a:hover {
	color: #fff;
	border: 1px solid #0f4ea3;
	background: #0f4ea3;
}
.single-team-member .team-content {
	padding: 15px 10px;
	position: relative;
	border: 1px solid rgba(0,0,0,0.06);
	text-align: center;
	overflow: hidden;
	border-top: none;
	z-index: 1;
}
.single-team-member .team-content:before {
	position: absolute;
	content: "";
	left: 0;
	bottom: -78px;
	background-color: #0f4ea3;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: -1;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.single-team-member:hover .team-content:before {
	opacity: 1;
	width: 100%;
	bottom: 0px;
}
.single-team-member .team-content > h4 {
	color: #444;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 18px;
}
.single-team-member .team-content > p {
	color: #666;
	margin-bottom: 5px;
	font-size: 12px;
	font-weight: 500;
}
.single-team-member:hover .team-content > h4, .single-team-member:hover .team-content > p {
	color: #fff;
}
/*--------------------------------------------------------------
	17. Contact Us
--------------------------------------------------------------*/
.contact-info {
	background-color: #0f4ea3;
	padding: 25px;
	color: #fff;
}
.contact-info ul li {
	border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.contact-info ul li:last-child {
	border-bottom: 0px;
}
.contact-info ul li h5 {
	font-size: 18px;
	font-weight: 600;
	padding-bottom: 2px;
	color: #fff;
}
.contact-form input {
	padding: 25px 15px;
}
.help-block.with-errors ul {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
	padding: 10px;
}
.map-area iframe {
	width: 100%;
	height: 350px;
	border: 0px;
}
