body {
	background: #fff;
	color: #444;
	font-family: "Open Sans", sans-serif;
	overflow-x: hidden;
}

a {
	color: #007bff;
	transition: 0.5s;
}

a:hover,
a:active,
a:focus {
	color: #0b6bd3;
	outline: none;
	text-decoration: none;
}

p {
	padding: 0;
	margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	margin: 0 0 20px 0;
	padding: 0;
}


/* Back to top button */

.back-to-top {
	position: fixed;
	display: none;
	background: #86bc42;
	color: #fff;
	width: 44px;
	height: 44px;
	text-align: center;
	line-height: 1;
	font-size: 16px;
	border-radius: 50%;
	right: 15px;
	bottom: 15px;
	transition: background 0.5s;
	z-index: 11;
}

.back-to-top i {
	padding-top: 12px;
	color: #fff;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
	height: 80px;
	transition: all 0.5s;
	z-index: 997;
	transition: all 0.5s;
	padding: 20px 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header.header-scrolled,
#header.header-pages {
	height: 60px;
	padding: 10px 0;
}

#header .logo h1 {
	font-size: 36px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 3px;
	text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
	color: #00366f;
	text-decoration: none;
}

#header .logo img {
	padding: 0;
	margin: 0px 0;
	max-height: 45px;
}

.main-pages {
	margin-top: 60px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

.main-nav,
.main-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-nav>ul>li {
	position: relative;
	white-space: nowrap;
	float: left;
}

.main-nav a {
	display: block;
	position: relative;
	/* color: #004289; */
	color: #000;
	padding: 8px;
	/* padding: 10px 15px; */
	transition: 0.3s;
	font-size: 16px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}

.main-nav a:hover,
.main-nav li.active>a,
.main-nav li:hover>a {
	/* color: #007bff; */
	color: #86bc42;
	text-decoration: none;
}

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

.main-nav .drop-down:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.main-nav .drop-down li {
	min-width: 180px;
	position: relative;
}

.main-nav .drop-down ul a {
	padding: 10px 20px;
	font-size: 13px;
	color: #004289;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active>a,
.main-nav .drop-down ul li:hover>a {
	color: #007bff;
}

.main-nav .drop-down>a:after {
	content: "\f107";
	font-family: FontAwesome;
	padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
}

.main-nav .drop-down .drop-down>a {
	padding-right: 35px;
}

.main-nav .drop-down .drop-down>a:after {
	content: "\f105";
	position: absolute;
	right: 15px;
}


/* Mobile Navigation */

.mobile-nav {
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 9999;
	overflow-y: auto;
	left: -260px;
	width: 260px;
	padding-top: 18px;
	background: rgba(19, 39, 57, 0.8);
	transition: 0.4s;
}

.mobile-nav * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav a {
	display: block;
	position: relative;
	color: #fff;
	padding: 10px 20px;
	font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
	/* color: #74b5fc; */
	color: #86bc42;
	text-decoration: none;
}

.mobile-nav .drop-down>a:after {
	content: "\f078";
	font-family: FontAwesome;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}

.mobile-nav .active.drop-down>a:after {
	content: "\f077";
}

.mobile-nav .drop-down>a {
	padding-right: 35px;
}

.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}

.mobile-nav .drop-down li {
	padding-left: 20px;
}

.mobile-nav-toggle {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}

.mobile-nav-toggle i {
	margin: 18px 18px 0 0;
	color: #004289;
}

.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(19, 39, 57, 0.8);
	overflow: hidden;
	display: none;
}

.mobile-nav-active {
	overflow: hidden;
}

.mobile-nav-active .mobile-nav {
	left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
	color: #fff;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/


/* Sections Header
--------------------------------*/

.section-header h3 {
	font-size: 36px;
	color: #283d50;
	text-align: center;
	font-weight: 500;
	position: relative;
}

.section-header p {
	text-align: center;
	margin: auto;
	font-size: 15px;
	padding-bottom: 60px;
	color: #556877;
}


/* Section with background
--------------------------------*/

.section-bg {
	background: #ecf5ff;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
	/* background: #00428a; */
	background: black;
	padding: 0 0 30px 0;
	color: #eee;
	font-size: 14px;
}

#footer .footer-top {
	/* background: #004a99; */
	background: #202020;
	padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
	margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
	font-size: 34px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-family: "Montserrat", sans-serif;
	color: #fff;
	font-weight: 400;
	letter-spacing: 3px;
	text-transform: uppercase;
}

#footer .footer-top .footer-info p {
	font-size: 13px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: "Montserrat", sans-serif;
	color: #ecf5ff;
}

#footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	/* background: #007bff; */
	background: #86bc42;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
	/* background: #0067d5; */
	background: #fff;
	color: #86bc42;
}

#footer .copyright {
	text-align: center;
	padding-top: 30px;
}


/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 992px) {
	#testimonials .testimonial-item p {
		width: 80%;
	}
}

@media (max-width: 991px) {
	#header {
		height: 80px;
		padding: 10px 0;
	}
	#header .logo h1 {
		font-size: 28px;
		padding: 8px 0;
	}
	#intro {
		padding: 140px 0 60px 0;
	}
	#intro .intro-img {
		width: 80%;
		float: none;
		margin: 0 auto 25px auto;
	}
	#intro .intro-info {
		width: 80%;
		float: none;
		margin: auto;
		text-align: center;
	}
	#why-us .card {
		margin: 0;
	}
}

@media (max-width: 768px) {
	.back-to-top {
		bottom: 15px;
	}
}

@media (max-width: 1024px) {
	#header .logo img {
		padding: 0;
		margin: 0px 0;
		max-height: 36px;
	}
}

@media (max-width: 767px) {
	#intro .intro-info {
		width: 100%;
	}
	#intro .intro-info h2 {
		font-size: 34px;
		margin-bottom: 30px;
	}
	.section-header p {
		width: 100%;
	}
	#testimonials .testimonial-item {
		text-align: center;
	}
	#testimonials .testimonial-item .testimonial-img {
		float: none;
		margin: auto;
	}
	#testimonials .testimonial-item h3,
	#testimonials .testimonial-item h4,
	#testimonials .testimonial-item p {
		margin-left: 0;
	}
}

@media (max-width: 574px) {
	#intro {
		padding: 100px 0 20px 0;
	}
}

.sub-nav>li {
	padding: 8px!important;
}

#pills-tab {
	border: solid 1px #ccc;
	padding: 6px;
	border-radius: 5px;
}

#pills-tabContent {
	border: solid 1px #ccc;
	padding: 15px;
	border-radius: 5px;
}

.nav-pills .nav-link.active {
	background-color: #86bc42;
}

.intro-info>h1 {
	color: #fff;
}

.br-bt {
	border-bottom: 3px solid #86bc42;
	width: 7%;
}

.brd {
	border: solid 1px #ccc;
}

.c-w {
	color: #fff;
}

.br-right {
	background-image: linear-gradient( 91.3deg, rgb(7, 106, 4) 1.5%, rgba(255, 255, 255, 1) 100.3%);
	padding: 1px;
	height: 1%;
}

.br-left {
	background-image: linear-gradient( 91.3deg, rgb(7, 106, 4) 1.5%, rgba(255, 255, 255, 1) 100.3%);
	padding: 1px;
	height: 1%;
}

.modal-header {
	background-color: #86bc42;
}

.p-170 {
	padding: 170px;
}

.p-85 {
	padding: 85px;
}

.gr {
	background-color: #86bc42;
}

.br-bt-0 {
	border-bottom: 0px !important;
}

#teamviewerTable thead th,
#amcTable thead th,
#vatTable thead th {
	border: 0px;
	border-bottom: 0px !important;
}

.modal-open {
	overflow: hidden;
	overflow-y: scroll;
	padding-right: 0 !important;
}

.list-group-item a {
	font-size: 14px;
}

.card-deck .card {
	margin-left: 0px;
}

.client-img {
	border: solid #ccc 1px;
	height: 70px;
	width: 15%;
	margin: 5px
}

#about h2,
#products h2,
#clientele h2,
#download h2,
#contact h2,
#transport h2,
#freight h2,
#auto h2 {
	font-size: 2.9rem;
}

.ft-18 {
	font-size: 18px;
}

.ft-13 {
	font-size: 13px;
}

.ft-14 {
	font-size: 14px;
}

.pt-150 {
	padding-top: 150px!important;
}


/* img all header*/

.jumbotron {
	background-color: #86bc42;
	margin-top: 80px;
	color: #fff;
}

.gr-br {
	border-color: #86bc42!important;
}

.cl-gr {
	color: #86bc42!important;
}

hr {
	background-color: #86bc42!important;
}

::-moz-selection { /* Code for Firefox */
  	background-color: #86bc42!important;
}

::selection {
 	background-color: #86bc42!important;
}

#about {
	/* background: url('../img/bg37.jpg') no-repeat center; */
	background-color: #86bc42;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width: 100%;
	height: 240px;
}

#products {
	/* background: url('../img/bg27.jpg') no-repeat center center fixed; */
	background-color: #86bc42;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width: 100%;
	height: 240px;
}

#clientele {
	/* background: url('../img/img2.jpg') no-repeat center center fixed; */
	background-color: #86bc42;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width: 100%;
	height: 240px;
}

#download {
	/* background: url('../img/downloads.jpg') no-repeat center; */
	background-color: #86bc42;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width: 100%;
	height: 240px;
}

#contact {
	/* background: url('../img/imgabout.jpg') no-repeat bottom; */
	background-color: #86bc42;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width: 100%;
	height: 240px;
}

#transport {
	/* background: url('../img/truck.jpg') no-repeat center; */
	background-color: #86bc42;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width: 100%;
	height: 240px;
}

#freight {
	/* background: url('../img/freight1.jpg') no-repeat center fixed; */
	background-color: #86bc42;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width: 100%;
	height: 240px;
}

#auto {
	/* background: url('../img/auto.jpg') no-repeat center fixed; */
	background-color: #86bc42;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width: 100%;
	height: 240px;
}