:root{
	--primary-color: #053266;
	--secandary-color: #cd5f3a;
	--tertiary-color: #F2F2F2;
	--quaternary-color: #006A8C;
	--black-color: #000;
	--white-color: #FFF;
	--primary-font: "Inria Sans", sans-serif;
	--secondary-font: "Bona Nova", serif;;
}
:root {
	--animate-duration: 800ms;
	--animate-delay: 0.30s;
}
body{
	font-family: var(--primary-font);
	font-size: 100%;
	font-weight: 400;
	height: 100%;
	overflow-x: hidden; /* Hide horizontal scrollbar */
}
html, body{
	scroll-behavior: smooth;
}
p{
	font-family: var(--primary-font);
	font-style: normal;
}
:is(h1, h2, h3, h4, h5, h6) {
	font-family: var(--secondary-font);
}
a{
	text-decoration: none;
}
header{
	position: absolute;
	width: 100%;
	z-index: 3;
}
.carousel-control-prev, .carousel-control-next {
	z-index: 2;
}
.primary-bg, .dropdown-menu{
	background-color: var(--primary-color);
}
.navbar-expand-lg ul.dropdown-menu{
	background-color: rgba(67, 54, 49, 1);
}
.navbar-expand-lg ul.dropdown-menu li.menu-item a{
	color: var(--secandary-color);
}
.navbar-expand-lg .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
	color: yellow;
}
.navbar-expand-lg .nav-link {
	color: var(--white-color);
}
.navbar-expand-lg .nav-link:hover{
	color: var(--secandary-color);
}
.navbar-expand-lg .dropdown-item:focus, .navbar-expand-lg .dropdown-item:hover {
	color: var(--primary-color) !important;
	background-color: var(--secandary-color);
}
ul.top-social{
	list-style: none;
}
ul.top-social li{
	display: inline-block;
}
ul.top-social li i{
	color: var(--white-color);
}
ul.top-social li i:hover{
	color: var(--secandary-color);
}
.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 213, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler {
	border: 1px solid var(--secandary-color);
}
.carousel-overlay:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.1);
	z-index: 1;
}
.carousel-caption {
	z-index: 2;
}
.carousel-caption h1{
	color: var(--secandary-color);
	opacity: 10;
}
.carousel-caption p{
	color: var(--white-color);
	opacity: 0.9;
}
.content{
	position: relative;
	top: 0;
	left: 0;
}
.card-circle i {
	text-align: center;
	color: var(--secandary-color);
}
.feature h5.card-title, .blog h5.card-title{
	color: var(--secandary-color); 
}
.services h5.card-title a, .blog h5.card-title a, .inner-content h5.card-title a, .contact h5.card-title a{
	color: var(--black-color); 
}  
.services h5.card-title a:hover, .blog h5.card-title a:hover, .inner-content h5.card-title a:hover, .contact h5.card-title a:hover{
	color: var(--primary-color); 
}
.services{
	background-color: var(--tertiary-color);
}
/*Card Hover Effect Star*/
.services .card{
	background: var(--primary-color);
	-webkit-box-shadow: 0 4px 0 #2b86ac;
	-moz-box-shadow: 0 4px 0 #2b86ac;
	box-shadow: 0 4px 0 #2b86ac;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	position: relative;
	overflow: hidden;
}
.services .card .wrap {
	position: relative;
}
.services .card:hover img {
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	opacity: 0
}
.services .card .wrap img {
	width: 100%;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease
}
.services .card .wrap .card-body {
	position: absolute;
	top: 100%;
	width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	margin: 0;
}
.services .card .more {
	position: absolute;
	bottom: -100%;
	width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease
}
.services .card .more:hover{
	color: var(--secandary-color);
}
.services .card .more p{
	color: var(--secandary-color);
}
.services .card .card-body h5 a{
	color: var(--secandary-color);
}
.services .card:hover .card-body {
	top: 10px
}
.services .more a:hover{
	color: var(--secandary-color) !important;
}
.services .card:hover .more {
	top: 45px
}
/*Card Hover Effect End*/
.parallax{
	height: 100%;
	background-image: url('../images/parallax.jpg');
	background-position: top center;	
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
.parallax-overlay{
	background-color: rgba(0, 0, 0, 0.6);
	color: var(--white-color);
}
.btn-circle{
	border-radius: 50%;
}
.parallax-overlay .btn-circle{
	background-color: var(--tertiary-color);
}
.parallax-overlay .btn-circle i{
	color: var(--primary-color);
}
.blog{
	background-color: var(--tertiary-color);
}
.card-footer small a{
	color: var(--black-color);
}
.card-footer small a:hover{
	color: var(--primary-color);
}
.contact .sidebar-box p i, .blog .sidebar-box p i{
	color: var(--primary-color);
}
.contact .sidebar-box p{
	text-align: left;
}
footer{
	background-color: var(--primary-color);
	color: var(--white-color);
}
footer .sidebar-box p{
	color: var(--white-color);
	text-align: left;
}
.copyright-border {
	border-top: 1px solid #063F82;
}
.navbar{
	border-bottom: 1px solid var(--secandary-color);
}
ul.footer-menu{
}
ul.footer-menu li{
	padding: 5px 0px;
}
ul.footer-menu li a{
	color: var(--white-color);
}
ul.footer-menu li a:hover{
	color: var(--secandary-color);
}
ul.footer-social {
}
ul.footer-social li {
	display: inline-block;
}
footer ul.footer-social li i {
	color: var(--white-color);
}
.inner-content{
	position: relative;
	top: 0;
	left: 0;
}
.body-bg-white{
	background-color: var(--white-color);
}
.body-bg-gray{
	background-color: var(--tertiary-color);
}
/*ul.list-group li a {
    color: var(--black-color);
    opacity: 0.9;
}*/
.post-title{
	background-color: var(--primary-color);
	color: var(--white-color);
	text-align: center;
}
ul.list-group li:hover, ul.list-group li:focus {
	background-color: var(--primary-color) !important;
	color: var(--white-color);
}
ul.list-group li a:hover, ul.list-group li a:focus {
	color: var(--secandary-color);
}
.inner-content ul {
	list-style: circle;
}
.inner-content .sidebar-box p i {
	color: var(--primary-color);
}
.offcanvas{
	background-color: var(--primary-color);
}
.offcanvas-title{
	color: var(--secandary-color);
}
.offcanvas-body ul.navbar-nav{
	margin: 0;
	padding: 0;
}
.offcanvas-body ul.navbar-nav li.menu-item:first-child{
	border-top: 1px solid var(--secandary-color);
}
.offcanvas-body ul.navbar-nav li.menu-item{
	text-align: center;
	border-bottom: 1px solid var(--secandary-color);
}
.offcanvas-body ul.navbar-nav li.menu-item:hover{
	background-color: var(--secandary-color);
}
.offcanvas-body ul.navbar-nav li.menu-item a{
	color: var(--secandary-color);
}
.offcanvas-body ul.navbar-nav li.menu-item a:hover{
	color: var(--primary-color);
}
.offcanvas-body ul.dropdown-menu{
	background-color: var(--primary-color);
}
.offcanvas-body ul.dropdown-menu .dropdown-item:focus, .dropdown-item:hover{
	background-color: var(--secandary-color);
	color: var(--primary-color);
}
.feature {
	background-image: url('../images/feature.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.feature:before {
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	background-color: rgba(5, 50, 102, 0.9);
}
.feature .card{
	background-color: transparent;
}
.feature .card p{
	color: var(--white-color);
}
.feature p{
	color: var(--white-color);
}
.feature h6{
	color: var(--secandary-color);
}
.feature h2, .feature h3, .feature h5{
	color: var(--white-color);
}
.feature a.rea-more{
	color: var(--secandary-color);
}
.feature a.rea-more:hover{
	color: var(--white-color);
}
.inner-feature{
	background-color: var(--tertiary-color);
}
.inner-feature a.rea-more{
	color: var(--primary-color);
}
.inner-feature a.rea-more:hover{
	color: var(--secandary-color);
}
#partners .carousel-control-prev span, #partners .carousel-control-next span{
	color: var(--primary-color);
}
.partners{
	background-color: rgba(0, 66, 40, 0.1);
}
.email-flot{
	background-color: var(--primary-color);
}
.email-flot a{
	color: var(--secandary-color);
}
.feature h5 a{
	color: var(--secandary-color); 
	text-decoration: none;
}
.feature h5 a:hover{
	color: var(--white-color);
}  
.contact ul.footer-social li i{
	color: var(--primary-color);
}
.contact ul.footer-social li i:hover{
	color: var(--secandary-color);
}
h5.card-title a{
	color: var(--primary-color);
}
p.card-text a{
	color: var(--secandary-color);
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
}
p.card-text a:hover{
	color: var(--primary-color);
	text-decoration: none;
}
ul.list-group a{
	text-decoration: none;
}
.side-bar-box p{
	text-align: left;
}
.side-bar-box p{
	color: var(--secandary-color);
}
.testimonials-front, .testimonials-front p{
	background-color: var(--secandary-color);
	color: var(--white-color);
}
/*Team Start*/
.team {
	background-color: var(--primary-color);
}
.team .i {
	margin-top: 30px
}
.team .i .c {
	background: #fff;
	-webkit-box-shadow: 0 4px 0 #2b86ac;
	-moz-box-shadow: 0 4px 0 #2b86ac;
	box-shadow: 0 4px 0 #2b86ac;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	position: relative;
	overflow: hidden;
	padding-bottom: 110px
}
.team .i .c .wrap {
	position: relative
}
.team .i .c .wrap img {
	width: 100%;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease
}
.team .i .c .wrap .info {
	padding: 30px 0;
	position: absolute;
	top: 100%;
	width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease
}

.team .i .c .wrap .info .position {
	margin: 0;
	font-size: 14px;
	font-size: 1.4rem;
	color: #555659
}
.team .i .c .more {
	position: absolute;
	bottom: -100%;
	width: 100%;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease
}
.team .i .c .more p {
	margin: 0 18px 30px 18px;
	line-height: 22px
}
.team .i .c .more .socials {
	margin: 0 0 20px 0
}
.team .i .c .more .socials a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 22px;
	font-size: 2.2rem;
	color: #fff;
	margin: 0 0 0 3px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	text-align: center;
	-webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, .1);
	-moz-box-shadow: 0 3px 0 rgba(0, 0, 0, .1);
	box-shadow: 0 3px 0 rgba(0, 0, 0, .1)
}
.team .i .c .more .socials a:first-child {
	margin: 0
}
.team .i .c .more .socials a.facebook {
	background: #3262b9
}
.team .i .c .more .socials a.facebook:hover {
	background: #2d57a5
}
.team .i .c .more .socials a.twitter {
	background: #3dd7e5
}
.team .i .c .more .socials a.twitter:hover {
	background: #27d2e2
}
.team .i .c .more .socials a.google-plus {
	background: #e23535
}
.team .i .c .more .socials a.google-plus:hover {
	background: #de2020
}
.team .i .c .more .socials a.linkedin {
	background: #069
}
.team .i .c .more .socials a.linkedin:hover {
	background: #005580
}
.team .i .c:hover img {
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	opacity: 0
}
.team .i .c:hover .info {
	top: 0
}
.team .i .c:hover .more {
	bottom: 0
}
.team h2{
	color: var(--white-color);
}
/*Team End*/
.inner-content ul{

}
.inner-content ul li{

}
.more a{
	color: var(--secandary-color);
	text-decoration: none;
}
.more a:hover{
	color: var(--primary-color);
	text-decoration: none;
}
.team h6{
	color: var(--white-color);
	text-transform: uppercase;
}
footer  p{
	color: var(--white-color);
}