/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	background-color: #f5f5f5;
	color: #4e4e4e;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #1e1e1e;
}

a {
	color: #1e1e1e;
	text-decoration: none;
	transition: all 0.5s ease-in-out;
}
a:hover {
	color: #0078ff;
	text-decoration: none;
	transition: all 0.5s ease-in-out;
}

.card-blog,
.service-box,
.paralax-mf {
	box-shadow: 0 13px 8px -10px rgba(0, 0, 0, 0.1);
}

.bg-image {
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: center center;
}
@media (max-width: 1024px) {
	.bg-image {
		background-attachment: scroll;
	}
}

.overlay-mf {
	background-color: #0078ff;
}

.overlay-mf {
	position: absolute;
	top: 0;
	left: 0px;
	padding: 0;
	height: 100%;
	width: 100%;
	opacity: 0.7;
}

.paralax-mf {
	position: relative;
	padding: 8rem 0;
}

/*--/ Sections /--*/

.sect-pt4 {
	padding-top: 4rem;
}

.sect-mt4 {
	margin-top: 4rem;
}

/*--/ Title A /--*/
.title-box {
	margin-bottom: 1rem;
}

.title-a {
	text-decoration: none;
	font-size: 3rem;
	font-weight: bold;
	text-transform: uppercase;
}

.title-b {
	text-decoration: none;
	font-size: 2rem;
	font-weight: bold;
	color: white;
}

.subtitle-a {
	text-decoration: none;
	color: #4e4e4e;
}

.line-mf {
	width: 40px;
	height: 5px;
	background-color: #0078ff;
	margin: 0 auto;
}

/*--/ Title Left /--*/
.title-box-2 {
	margin-bottom: 3rem;
}

.title-left {
	font-size: 2rem;
	position: relative;
}
.title-left:before {
	content: "";
	position: absolute;
	height: 3px;
	background-color: #0078ff;
	width: 155px;
	bottom: -12px;
}

/*------/ Box /------*/
.box-shadow-full {
	padding: 3rem 1.25rem;
	position: relative;
	background-color: #fff;
	margin-bottom: 3rem;
	z-index: 2;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.06), 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
	.box-shadow-full {
		padding: 3rem;
	}
}

/*------/ Socials /------*/
.socials {
	padding: 1.5rem 0;
}
.socials ul li {
	display: inline-block;
	margin-left:5px;
}

/*------/ Ul resect /------*/
.blog-wrapper .post-meta ul,
.list-ico,
.socials ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.list-ico {
	line-height: 2;
}
.list-ico span {
	color: #0078ff;
	margin-right: 10px;
}

/*------/ Ico Circle /------*/
.ico-circle {
	height: 100px;
	width: 100px;
	font-size: 2rem;
	border-radius: 50%;
	line-height: 1.55;
	margin: 0 auto;
	text-align: center;
	box-shadow: 0 0 0 10px #0078ff;
	display: block;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #0078ff;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
}
.back-to-top i {
	font-size: 28px;
	color: #fff;
	line-height: 0;
}

.back-to-top:hover {
	background: #298eff;
	color: #fff;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*------/ Prelaoder /------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #f2f2f2;
	border-top: 6px solid #0078ff;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	transition: all 0.5s;
	z-index: 997;
	background: #78AFE5;
	padding: 4px 0;
	max-height: 80px;
}
#header .logo {
	font-size: 28px;
	margin: 0;
	padding: 0;
	font-weight: 600;
	letter-spacing: 1px;
}
#header .logo a {
	color: #fff;
}
#header .logo img {
	max-height: 74px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
}
.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}
.navbar li {
	position: relative;
}
.navbar > ul > li {
	white-space: nowrap;
	padding: 10px 0 10px 30px;
}
.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	padding: 0;
	white-space: nowrap;
	transition: 0.3s;
	letter-spacing: 0.4px;
	position: relative;
	text-transform: uppercase;
}
.navbar a i,
.navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}
.navbar > ul > li > a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: -6px;
	left: 0;
	width: 0;
	background-color: #fff;
	visibility: hidden;
	transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar .active:before {
	visibility: visible;
	width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
	color: #fff;
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 30px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
}

.navbar .dropdown ul li {
	min-width: 200px;
}
.navbar .dropdown ul a {
	padding: 10px 20px;
	font-size: 14px;
	text-transform: none;
	color: #4e4e4e;
}
.navbar .dropdown ul a i {
	font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
	color: #0078ff;
}
.navbar .dropdown:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}
.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}
@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}
	.navbar .dropdown .dropdown:hover > ul {
		left: -100%;
	}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}
.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(78, 78, 78, 0.9);
	transition: 0.3s;
	z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}
.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
}
.navbar-mobile > ul > li {
	padding: 0;
}
.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
	visibility: hidden;
}
.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #4e4e4e;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
	color: #0078ff;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service-box {
	background-color: #fff;
	padding: 2.5rem 1.25rem 1.563rem 1.25rem;
	border-radius: 1rem;
	margin-bottom: 2rem;
	text-align: center;
	min-height: 395px;
}
.service-box:hover .ico-circle {
	transition: all 500ms ease;
	color: #fff;
	background-color: #0078ff;
	box-shadow: 0 0 0 10px #cde1f8;
}
.service-box .service-ico {
	margin-bottom: 1rem;
	color: #1e1e1e;
}
.service-box .ico-circle {
	transition: all 500ms ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.service-box .ico-circle i {
	line-height: 0;
	font-size: 40px;
}
.service-box .s-title {
	font-size: 1.4rem;
	text-transform: uppercase;
	text-align: center;
	padding: 0.4rem 0;
}
.service-box .s-description {
	color: #4e4e4e;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
@media (min-width: 767px) {
	.card-news {
		margin-bottom: 3rem;
		border: 0;
		padding:0;
		background-color: rgba(245, 245, 245, 1);
	}
}
.card-body {
	position: relative;
}
.card-category-box {
	position: absolute;
	text-align: center;
	top: -16px;
	left: 15px;
	right: 15px;
	line-height: 25px;
	overflow: hidden;
}
.card-category {
	display: inline-block;
	color: #fff;
	padding: 0 15px 5px;
	overflow: hidden;
	background-color: #0078ff;
	border-radius: 4px;
}
.card-category .category {
	color: #fff;
	display: inline-block;
	text-transform: uppercase;
	font-size: 0.7rem;
	letter-spacing: 0.1px;
	margin-bottom: 0;
}
.card-title {
	font-size: 1.3rem;
	margin-top: 0.6rem;
}
.card-description {
	color: #4e4e4e;
}
.post-author {
	display: inline-block;
}
.post-date {
	color: #4e4e4e;
	display: inline-block;
	float: right;
}

.news-icon {
	width: 142px;
	height:142px;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
	text-align: center;
	color: #fff;
	padding: 25px 0;
	background: #78AFE5;
}
footer .copyright {
	margin-bottom: 0.3rem;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	width: 100vw;
	position: relative;
	top:-20px;
	color: #fff;
	text-align: left;
	background-color: black;
	margin-top:100px; 
	width:100%;
	padding: 20px 0px 40px 0px;
}

.hero-text {
	font-size: 1rem
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.footer-paralax {
	padding: 4rem 0 0 0;
}

.contact-mf {
	margin-top: 4rem;
}
.contact-us {
  margin-top:0rem;
}
.lead {
	font-size: 1.2rem;
}


@media (min-width: 992px) {
	.contact-mf {
		margin-top: 3rem;
		padding-left: 0rem;
		margin-top: 4rem;
	}
	.contact-us {
		margin-top:6rem;
	}
	.lead {
		font-size: 1.3rem;
	}
}

.courtesy-caption{
	font-size: 0.7rem;
}
@media (min-width: 768px) {
	.courtesy-caption { font-size: 0.8rem; }
}
@media (min-width: 992) {
	.courtesy-caption { font-size: 0.9rem; }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.card-link {
	color: blue;
	text-decoration: underline;
	cursor: hand;
}