/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : AeroLogix - Logistics & Transportation HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Intro Services css
06. About us css
07. Services css
08. CTA css
09. Recent Project css
10. Our Goals css
11. Features css
12. Latest Posts css
13. Footer css
14. About us Page css
15. Services Page css
16. Service Single css
17. Blog Archive css
18. Blog Single css
19. Contact us Page css
20. Projects Page css
21. Project Single css
22. FAQs css
23. 404 Page css
24. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: #003B49;
	--secondary-color: #F7F7F7;
	--text-color: #333333;
	--accent-color: #FF7D44;
	--white-color: #ffffff;
	--divider-color: #E2E2E2;
	--error-color: rgb(230, 87, 87);
	--default-font: "Plus Jakarta Sans", sans-serif;
	/* --default-font:"Poppins", sans-serif; */
	/* font-family: "Poppins", sans-serif; */
}


/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
	font-size: 18px;
	font-weight: 400;
	background: var(--white-color);
	font-family: var(--default-font);
	color: var(--text-color);
	line-height: 1.2em;
	
}

p {
	line-height: 1.6em;
	margin-bottom: 0;
	font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 700;
	color: var(--primary-color);
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
	line-height: 1.3em;
	color: var(--accent-color);
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
	line-height: 1.3em;
	color: inherit;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
	color: inherit;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.btn-default {
	display: inline-block;
	background-color: var(--accent-color);
	color: var(--white-color);
	font-family: var(--default-font);
	text-transform: capitalize;
	line-height: 1.3em;
	font-size: 18px;
	font-weight: 600;
	padding: 14px 30px;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	z-index: 0;
	border: none;
	outline: 0;
	box-shadow: none;
	transition: all 0.3s ease-in-out;
}

.btn-default:before {
	content: '';
	position: absolute;
	width: 0;
	height: 104%;
	top: 50%;
	left: 50%;
	background: var(--primary-color);
	opacity: 0;
	z-index: -1;
	transform: translateX(-51%) translateY(-51%);
	transition: all 0.3s ease-in-out;
	border-radius: 5px;
}

.btn-default:hover::before {
	width: 106%;
	opacity: 1;
}

#magic-cursor {
	position: absolute;
	width: 14px !important;
	height: 14px !important;
	pointer-events: none;
	z-index: 1000000;
}

#ball {
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	background: var(--accent-color);
	width: 14px !important;
	height: 14px !important;
	border-radius: 50%;
	pointer-events: none;
	opacity: 1 !important;
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--secondary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--accent-color) transparent var(--accent-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 50px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.section-title {
	position: relative;
	text-align: center;
	margin-bottom: 60px;
}

.section-title h1,
.section-title h2 {
	font-size: 50px;
	color: var(--primary-color);
	letter-spacing: -0.02em;
}

.section-title p {
	width: 100%;
	max-width: 600%;
	margin: 0 auto;
	margin-top: 20px;
}

/************************************/
/***   	   03. Header css         ***/
/************************************/

.topbar {
	background-color: var(--secondary-color);
	display: none;
}

.topbar-contact-info {
	padding: 10px 0;
}

.topbar-contact-info ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.topbar-contact-info ul li {
	display: inline-block;
	margin-right: 15px;
	font-size: 14px;
}

.topbar-contact-info ul li a {
	color: var(--text-color);
}

.topbar-contact-info ul li i {
	font-size: 16px;
	margin-right: 5px;
	color: var(--primary-color);
}

.topbar-social-links {
	background-color: #f7f7f7;
	padding: 10px 15px;
}

.topbar-social-links ul {
	list-style: none;
	text-align: center;
	padding: 0;
	margin: 0;
}

.topbar-social-links ul li {
	display: inline-block;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--primary-color);
	border-radius: 100%;
	text-align: center;
	color: var(--primary-color);
	width: 38px;
	height: 38px;
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover {
	border: 2px solid var(--accent-color);
	color: var(--accent-color);
}

.topbar-social-links ul li:last-child {
	margin-right: 0;
}

.topbar-social-links ul li a i {
	font-size: 18px;
	color: inherit
}

.main-header {
	background-color: var(--white-color);
	position: relative;
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	border-bottom: 1px solid #ffffff00;
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: all 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	border-bottom: 1px solid var(--secondary-color);
	transform: translateY(0);
	background: var(--white-color);
}

.navbar>.container {
	display: flex;
	align-items: center;
}

.navbar {
	padding: 0;
}

.main-menu {
	font-family: var(--default-font);
	justify-content: space-evenly;
}

.main-menu ul {
	align-items: center;
}

.navbar .main-menu ul li {
	margin: 0 15px;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.navbar .main-menu ul li.has-submenu>a {
	position: relative;
	/* padding-right: 18px; */
}

.navbar .main-menu ul li.has-submenu>a:after {
	content: '\f107';
	display: inline-flex;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 14px;
	line-height: 1;
	display: none;
	align-items: center;
	margin-left: 5px;
	position: absolute;
	top: 50%;
	margin-top: -6px;
}

.main-menu ul li a {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
	padding: 38px 0;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li a:hover {
	color: var(--accent-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 220px;
	border-radius: 0;
	position: absolute;
	left: 0;
	top: 100%;
	overflow: hidden;
	border-radius: 0 0 10px 10px;
	background-color: var(--accent-color);
	transition: all .3s ease-in-out;
}

.navbar .main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
}

.navbar .main-menu ul ul ul {
	left: 100%;
	top: 0%;
}

.navbar .main-menu ul ul li {
	margin: 0;
}

.navbar .main-menu ul ul li a {
	color: var(--white-color);
	padding: 12px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover {
	color: var(--primary-color);
}

.header-contact-us a {
	display: flex;
	align-items: center;
}

.header-contact-us a img {
	margin-right: 10px;
}

.header-contact-us a h3 {
	width: 100%;
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: var(--primary-color);
}

.header-contact-us a h3 span {
	display: block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6em;
	color: var(--accent-color);
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	margin-top: 0px;
}

.slicknav_btn {
	background: var(--primary-color);
	width: 36px;
	height: 36px;
	margin: 0;
	padding: 5px;
	border-radius: 0;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	margin: 4px auto !important;
}


@media only screen and (max-width: 991px) {
    .mymenu {
        display: block;
        position: relative;
        width: 100%;
        margin-top: -21px;
        z-index: 100;
    }



}

.slicknav_menu {
	padding: 0;
	background: var(--accent-color);
	position: absolute;
	width: 100%;
	z-index: 1;
	margin-top: 10px;
}

.slicknav_nav ul {
	margin: 0;
}

.slicknav_nav li a {
	position: relative;
	font-size: 14px;
	font-weight: 700;
	padding: 10px 20px;
	margin: 0;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav li a:hover {
	background-color: transparent;
	color: var(--primary-color);
	border-radius: 0;
	margin: 0;
}

.slicknav_nav .sub-menu li a {
	padding: 10px 30px;
}

.slicknav_nav .slicknav_row {
	padding: 10px 20px;
	margin: 0;
	background-color: transparent !important;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	width: 20px;
	height: 20px;
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	text-align: center;
	position: absolute;
	right: 15px;
	top: 10px;
	transition: all 0.3s ease-in-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: rotate(-180deg);
}

.navbar-toggle a.slicknav_btn .slicknav_icon span.slicknav_icon-bar {
	transition: 0.1s;
	border-radius: 2px;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

/************************************/
/*** 	    04. hero css		  ***/
/************************************/

.hero {
	position: relative;
	padding: 120px 0 220px;
	background-image: url(../images/hero-bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}

.hero::before {
	content: '';
	position: absolute;
	background-image: linear-gradient(180deg, transparent 0%, var(--primary-color) 100%);
	background-repeat: no-repeat;
	background-position: center center;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 2;
}

.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider {
	text-align: center;
	background: none;
	padding: 0;
}

.hero-slider-layout .hero-slide {
	position: relative;
	padding: 120px 0 220px;
}

.hero.hero-slider:before {
	display: none;
}

.hero.hero-slider .hero-slider-layout {
	position: relative;
	z-index: 2;
}

.hero-slider-layout .hero-slide::before {
	content: '';
	position: absolute;
	background-image: linear-gradient(180deg, transparent 0%, var(--primary-color) 100%);
	background-repeat: no-repeat;
	background-position: center center;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider .hero-slider-layout .hero-slide .hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 620px;
	margin: 0 auto;
}

.hero-slider-layout .swiper-pagination {
	bottom: 150px;
}

.hero-slider-layout .swiper-pagination .swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	background: var(--accent-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.hero-slider-layout .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--white-color);
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-content-title {
	margin-bottom: 20px;
}

.hero-content-title h1,
.hero-content-title h2 {
	width: 100%;
	font-size: 54px;
	color: var(--white-color);
}

.hero-content-body {
	margin-bottom: 40px;
}

.hero-content-body p {
	color: var(--white-color);
}

.hero-content-footer .btn-default::before {
	background-color: var(--white-color);
}

.hero-content-footer .btn-default:hover {
	color: var(--primary-color);
}

.video-play-button {
	position: relative;
	z-index: 2;
	text-align: center;
	width: 66px;
	margin: 0 auto;
}

.video-play-button::before {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 3px solid var(--accent-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1s infinite linear;
}

.video-play-button a:after {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 3px solid var(--accent-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1s infinite linear;
	animation-delay: .3s;
}

@-webkit-keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button img {
	width: 65px;
	border: 2px solid var(--accent-color);
	border-radius: 50%;
}

/************************************/
/*** 	05. Intro Services css	  ***/
/************************************/

.cargo-shipment {
	position: relative;
	z-index: 4;
	margin-top: -120px;
}

.cargo-shipment-item {
	position: relative;
	overflow: hidden;
	padding: 30px 50px;
	height: 100%;
	background: var(--white-color);
	box-shadow: 0px 10px 50px 0px rgba(3, 75, 91, 0.10);
	transition: all 0.4s ease-in-out;
}

.cargo-shipment-item::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--white-color);
	color: var(--primary-color);
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.cargo-shipment-item.active {
	transition: all 0.4s ease-in-out;
}

.cargo-shipment-item.active::before {
	z-index: -1;
}

.cargo-shipment-item:hover:before {
	transform: translate(100%, -100%);
}

.cargo-shipment-item.active::before {
	transform: translate(100%, -100%);
}

.cargo-shipment-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
}

.cargo-shipment-item.active .cargo-shipment-image {
	opacity: 1;
}

.cargo-shipment-image:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	opacity: 0.7;
}

.cargo-shipment-item:hover .cargo-shipment-image {
	opacity: 1;
}

.cargo-shipment-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.cargo-shipment-content {
	position: relative;
	z-index: 2;
}

.cargo-shipment-icon {
	margin-bottom: 20px;
}

.cargo-shipment-content h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
}

.cargo-shipment-item.active .cargo-shipment-content h3 {
	color: var(--white-color);
}

.cargo-shipment-item:hover .cargo-shipment-content h3 {
	color: var(--white-color);
}

.cargo-shipment-content p {
	margin-bottom: 20px;
	transition: all 0.4s ease-in-out;
}

.cargo-shipment-item.active .cargo-shipment-content p {
	color: var(--white-color);
}

.cargo-shipment-item:hover .cargo-shipment-content p {
	color: var(--white-color);
}

.cargo-shipment-readmore a {
	font-size: 16px;
	font-weight: 700;
	color: var(--accent-color);
	transition: all 0.4s ease-in-out;
	padding-right: 24px;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.cargo-shipment-readmore a::before {
	content: '\f061';
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	font-family: 'FontAwesome';
	font-size: 16px;
	font-weight: 900;
	transition: 0.3s ease-in-out;
	background: transparent;
	color: var(--accent-color);
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.cargo-shipment-item:hover .cargo-shipment-content a {
	transition: all 0.4s ease-in-out;
	color: var(--white-color);
}

.cargo-shipment-item:hover .cargo-shipment-readmore a::before {
	color: var(--white-color);
}

.cargo-shipment-item.active .cargo-shipment-readmore a {
	color: var(--white-color);
}

.cargo-shipment-item.active .cargo-shipment-readmore a::before {
	color: var(--white-color);
}

/************************************/
/***      06. About us css	      ***/
/************************************/

.home-transportation {
	padding: 100px 0;
}

.home-transportation .section-title {
	width: 100%;
	max-width: 500px;
	margin-bottom: 20px;
	text-align: left;
}

.home-transportation .section-title::before {
	display: none;
}

.home-transportation-content {
	margin-right: 65px;
}

.home-transportation-body {
	margin-bottom: 30px;
}

.home-transportation-body p {
	margin-bottom: 15px;
}

.home-transportation-body p:last-child {
	margin-bottom: 0;
}

.home-transportation-footer {
	display: flex;
	align-items: center;
}

.transportation-footer-btn {
	margin-right: 40px;
}

.home-transportation-footer a:last-child {
	margin-right: 0;
}

.home-transportation-content .header-contact-us {
	display: flex;
	align-items: center;
}

.home-transportation-right {
	position: relative;
	background: url(../images/transportation-shape.svg) no-repeat bottom 15px left 28%;
	background-size: auto;
	padding-bottom: 150px;
}

.transportation-img-2 img,
.transportation-img-1 img {
	border-radius: 10px;
}

.transportation-img-1 {
	position: relative;
}

.transportation-img-2 {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	max-width: 280px;
}

.transportation-counter-box {
	position: absolute;
	left: 34%;
	bottom: 12%;
	display: inline-block;
	background-color: var(--white-color);
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.199);
	border-radius: 10px;
	padding: 30px;
	text-align: center;
}

.transportation-counter-box h3 {
	font-size: 46px;
	font-weight: 700;
	color: var(--accent-color);
}

.transportation-counter-box p {
	font-weight: 700;
	text-transform: capitalize;
}

/************************************/
/***       07. Services css       ***/
/************************************/

.our-service {
	background-color: var(--secondary-color);
	padding: 50px 0;
}

.our-service-item {
	margin-bottom: 30px;
}

.our-service-image {
	border-radius: 10px;
	overflow: hidden;
}

.our-service-image img {
	width: 100%;
	aspect-ratio: 1 / 0.65;
	object-fit: cover;
	border-radius: 10px;
	transition: all 0.5s ease-out;
}

.our-service-item:hover .our-service-image img {
	transform: scale(1.1);
}

.our-service-content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	margin-top: -10%;
}

.service-content-box {
	display: flex;
	align-items: center;
	width: 75%;
	background-color: var(--white-color);
	box-shadow: 0px 10px 50px 0px rgba(3, 75, 91, 0.10);
	padding: 20px;
}

.our-service-icon {
	margin-right: 10px;
}

.our-service-title h2 {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-color);
	text-transform: capitalize;
}

.our-service-content-button {
	width: 15%;
	background-color: var(--primary-color);
	padding: 13px 11px;
	margin-left: -30px;
	text-align: center;
}

.our-service-content-button a i {
	font-size: 30px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.our-service-content-button a i:hover {
	color: var(--white-color);
}

.our-service-footer {
	margin-top: 20px;
	text-align: center;
}

/************************************/
/*** 	     08. CTA css	      ***/
/************************************/

.our-contract {
	position: relative;
	background-image: url(../images/contact-bg-img.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	padding: 100px 0;
}

.our-contract::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	opacity: 0.5;
}

.our-cta-box {
	background-color: var(--primary-color);
	border-radius: 10px;
	max-width: 600px;
	margin: 0 auto;
	padding: 50px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.our-contract-title {
	margin-bottom: 20px;
}

.our-contract-title h2 {
	font-size: 32px;
	font-weight: 700;
	color: var(--white-color);
}

.our-contract-body p {
	color: var(--white-color);
	margin-bottom: 20px;
}

.our-contract-body .btn-default::before {
	background-color: var(--white-color);
}

.our-contract-body .btn-default:hover {
	color: var(--primary-color);
}

/************************************/
/*** 	09. Recent Project css    ***/
/************************************/

.recent-project {
	padding: 100px 0 70px;
}

.project-slider {
	position: relative;
	width: 1180px;
	margin: 0 auto;
}

.project-item {
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
	margin-bottom: 30px;
}

.project-image img {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1.2;
	object-fit: cover;
	text-align: center;
	transition: all 0.5s ease-out;
}

.project-item:hover .project-image figure img {
	transform: scale(1.1);
}

.project-content {
	content: "";
	position: absolute;
	transition: .5s;
	bottom: 30px;
	left: 30px;
	right: 30px;
	transform: translateY(100%);
	opacity: 0;
	display: flex;
	z-index: 1;
	align-items: flex-end;
	justify-content: flex-end;
}

.project-item:hover .project-content {
	transform: translateY(0);
	opacity: 1;
	transition: all 0.3s ease-in-out;
}

.project-content-title {
	background-color: var(--white-color);
	box-shadow: 0px 10px 50px 0px rgba(3, 75, 91, 0.10);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 15px;
}

.project-content-title h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	text-transform: capitalize;
}

.project-content-title h3 a {
	color: inherit;
}

.project-content-title i {
	font-size: 20px;
	color: var(--accent-color);
}

.client-button-prev {
	left: -4%;
}

.client-button-next {
	right: -4%;
}

.client-button-prev,
.client-button-next {
	color: var(--accent-color);
	font-size: 30px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.client-button-next:hover,
.client-button-prev:hover {
	color: var(--primary-color);
	opacity: 1;
}

/************************************/
/*** 	  10. Our Goals css	      ***/
/************************************/

.our-goals {
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.our-goals-item {
	background-color: var(--white-color);
	box-shadow: 0px 10px 50px 0px rgba(3, 75, 91, 0.10);
	border-radius: 10px;
	text-align: center;
	padding: 30px;
}

.counter-icon {
	margin-bottom: 20px;
	
}


.our-goals-counter h3 {
	font-size: 50px;
	font-weight: 700;
	color: var(--primary-color);
}

.our-goals-counter h3 span {
	color: inherit;
}

/************************************/
/***       11. Features css	      ***/
/************************************/

.providing-service {
	padding: 100px 0 50px;
}

.Featured-Content-Box img {
	width: 100%;
	border-radius: 10px;
}

.providing-content {
	margin-left: 10px;
}

.providing-content .section-title {
	width: 100%;
	max-width: 450px;
	text-align: left;
	margin-bottom: 30px;
}

.providing-content .section-title h2 {
	padding-bottom: 0;
}

.providing-content .section-title::before {
	display: none;
}

.providing-content-body p {
	margin-bottom: 30px;
}

.providing-item-box {
	display: flex;
	align-items: center;
}

.providing-item {
	width: 33.33%;
}

.providing-item .icon-box {
	margin-bottom: 10px;
}

.providing-item span {
	font-weight: 700;
}

/************************************/
/***    12. Latest Posts css      ***/
/************************************/

.latest-posts {
	padding: 50px 0 70px;
}

.post-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: 20px;
}

.post-featured-image img {
	aspect-ratio: 1 / 0.70;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.post-body h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.post-meta {
	margin-bottom: 20px;
}

.post-meta ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-meta ul li {
	position: relative;
	display: inline-block;
}

.post-meta ul li a {
	font-size: 16px;
	font-weight: 700;
	color: var(--primary-color);
	text-transform: capitalize;
}

.post-readmore a {
	font-size: 16px;
	font-weight: 700;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	padding-right: 20px;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.post-readmore a::before {
	content: '\f061';
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	font-family: 'FontAwesome';
	font-size: 16px;
	font-weight: 900;
	transition: 0.3s ease-in-out;
	background: transparent;
	color: var(--accent-color);
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.post-readmore:hover a {
	color: var(--primary-color);
}

.post-readmore:hover a::before {
	color: var(--primary-color);
}

/************************************/
/***      13. Footer css	      ***/
/************************************/

.mega-footer {
	background-color: var(--primary-color);
	padding: 80px 0;
}

.footer-heading {
	margin-bottom: 20px;
}

.footer-heading h2 {
	font-size: 20px;
	font-weight: 700;
	color: var(--accent-color);
}

.footer-content {
	margin-bottom: 30px;
}

.footer-content p {
	max-width: 300px;
	color: var(--white-color);
}

.footer-social-link ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-link ul li {
	display: inline-block;
	margin-right: 5px;
}

.footer-social-link ul li:last-child {
	margin-right: 0;
}

.footer-social-link ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--accent-color);
	border-radius: 100%;
	text-align: center;
	color: var(--accent-color);
	width: 38px;
	height: 38px;
	transition: all 0.3s ease-in-out;
}

.footer-social-link ul li a:hover {
	border: 1px solid var(--white-color);
	background-color: transparent;
	color: var(--white-color);
}

.footer-social-link ul li a i {
	font-size: 18px;
	color: inherit
}

.footer-links {
	margin: 0 auto;
}

.footer-info-heading {
	position: relative;
	margin-bottom: 20px;
}

.footer-info-heading h2 {
	font-size: 20px;
	font-weight: 700;
	color: var(--white-color);
	text-transform: capitalize;
}

.footer-links ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-links ul li {
	color: var(--white-color);
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:last-child {
	margin-bottom: 0px;
}

.footer-links ul li:hover {
	color: var(--accent-color);
}

.footer-links ul li a {
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
}

.footer-info-box {
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;
}

.footer-info-box:last-child {
	margin-bottom: 0;
}

.footer-info-box .icon-box {
	position: absolute;
	top: 2px;
	left: 0;
}

.footer-info-box .icon-box i {
	font-size: 20px;
	color: var(--accent-color);
}

.footer-info-box p {
	font-size: 16px;
	color: var(--white-color);
}

.newsletters-content {
	margin-bottom: 20px;
}

.newsletters-content p {
	color: var(--white-color);
}

.newsletters-form .mail-box {
	background-color: transparent;
	border-bottom: 2px solid var(--white-color);
}

.newsletters-form .mail-box button {
	background: transparent;
	border: none;
	margin-top: 11px;
}

.newsletters-form .mail-box .form-control {
	background-color: transparent;
	border: none;
	color: var(--white-color);
	padding: 10px 2px;
	box-shadow: none;
}

.form-group .help-block.with-errors {
	color: var(--error-color);
}

.newsletters-form .mail-box .form-control::placeholder {
	font-size: 14px;
	font-weight: 400;
	color: var(--white-color);
	opacity: 0.5;
}

.newsletters-form .mail-box i {
	font-size: 20px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.newsletters-form .mail-box i:hover {
	color: var(--white-color);
}

.footer-copyright h3 b {
	color: var(--button-secondary-color);
}

.footer-copyright-links {
	background-color: var(--accent-color);
	color: var(--white-color);
	padding: 20px 0;
}

.footer-copyright p {
	font-weight: 600;
	text-align: left;
}

.footer-copyright p b {
	color: var(--primary-color);
}

.footer-policy-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: right;
}

.footer-policy-links ul li {
	position: relative;
	display: inline-block;
	padding-left: 10px;
	margin-left: 10px;
}

.footer-policy-links ul li:before {
	content: '';
	display: block;
	width: 1px;
	display: none;
	height: 15px;
	background: var(--white-color);
	position: absolute;
	top: 5px;
	left: 0;
}

.footer-policy-links ul li:first-child {
	padding-left: 0;
}

.footer-policy-links ul li:first-child:before {
	display: none;
}

.footer-policy-links ul li a {
	font-size: 16px;
	font-weight: 600;
	margin-left: -18px;
	color: var(--white-color);
}

/************************************/
/***    14. About us Page css	  ***/
/************************************/

.page-header {
	position: relative;
	background-image: url(../images/page-heade-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 150px 0;
	margin: 0;
}

.page-header:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(258deg, transparent 0%, var(--primary-color) 74%);
}

.page-header-box {
	position: relative;
	z-index: 1;
}

.page-header-box h2 {
	font-size: 50px;
	font-weight: 700;
	color: var(--white-color);
	margin-bottom: 20px;
}

.page-header-box .breaODCrumb {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
}

.page-header-box ol.breaODCrumb li {
	font-size: 20px;
	font-weight: 700;
	color: var(--white-color);
	margin-right: 12px;
	/* text-transform: capitalize; */
}

.page-header-box ol.breaODCrumb li:last-child {
	margin-right: 0;
}

.page-header-box ol.breaODCrumb li a {
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.page-header-box ol.breaODCrumb li:after {
	content: '\f061';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
	margin-left: 12px;
}

.page-header-box ol.breaODCrumb li:last-child:after {
	display: none;
}

.home-transportation.about-transportation {
	padding: 100px 0 50px;
}

.about-transport {
	padding: 50px 0 100px;
}

.transport-item {
	border-right: 1px solid var(--divider-color);
	padding: 10px 40px;
	height: 100%;
}

.about-transport .col-md-4:last-child .transport-item {
	border: none;
}

.transport-item .icon-box {
	margin-bottom: 20px;
}

.transport-content h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
	text-transform: capitalize;
}

.our-indurstry {
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.our-indurstry .section-title {
	text-align: left;
	margin-bottom: 20px;
}

.our-indurstry .section-title::before {
	display: none;
}

.indurstry-image figure {
	width: 100%;
}

.indurstry-image figure img {
	width: 100%;
	border-radius: 10px;
}

.our-indurstry-content {
	margin-left: 20px;
}

.indurstry-content p {
	margin-bottom: 25px;
}

.indurstry-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 15px;
}

.indurstry-content ul li {
	width: 50%;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-color);
	text-transform: capitalize;
	margin-bottom: 15px;
}

.indurstry-content ul li:last-child {
	margin-bottom: 0;
}

.indurstry-content ul li i {
	font-size: 16px;
	margin-right: 10px;
	color: var(--accent-color);
}

.export-team {
	padding: 100px 0 70px;
}

.team-item {
	background-color: var(--primary-color);
	border-radius: 10px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image {
	border-radius: 10px 10px 0 0;
	overflow: hidden;
}

.team-image img {
	transition: all 0.5s ease-in-out;
	border-radius: 10px 10px 0 0;
}

.team-item:hover .team-image img {
	transform: scale(1.1);
}

.team-content {
	padding: 15px 20px;
}

.team-content p {
	font-size: 14px;
	font-weight: 400;
	color: var(--accent-color);
	text-transform: capitalize;
}

.team-content h3 a {
	font-size: 20px;
	font-weight: 700;
	color: var(--white-color);
	text-transform: capitalize;
}

.our-contract.about-us {
	padding: 0 0 80px;
	margin: 0;
}

/************************************/
/***    15. Services Page css     ***/
/************************************/

.service-page {
	padding: 100px 0 70px;
}

/************************************/
/***    16. Service Single css    ***/
/************************************/

.service-details {
	padding: 100px 0;
}

.service-details-content {
	margin-right: 40px;
}

.service-details-body p {
	margin-bottom: 20px;
}

.service-details-featured-image {
	margin-bottom: 20px;
}

.service-details-featured-image img {
	border-radius: 10px;
}

.service-details-body h2 {
	font-size: 26px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 30px;
	text-transform: capitalize;
}

.service-details-body {
	margin-bottom: 40px;
}

.service-info-box {
	position: relative;
	padding-left: 25px;
	margin-bottom: 15px;
}

.service-info-box:last-child {
	margin-bottom: 0;
}

.service-info-box .icon-box {
	position: absolute;
	top: 0px;
	left: 0;
}

.service-info-box .icon-box i {
	font-size: 16px;
	color: var(--accent-color);
}

.service-info-box p {
	font-weight: 600;
	color: var(--text-color);
	text-transform: capitalize;
	margin-bottom: 10px;
}

.service-info-box p:last-child {
	margin-bottom: 0;
}

.service-details-footer {
	display: flex;
	justify-content: space-between;
}

.service-details-image-box {
	width: 49%;
}

.service-details-image-box img {
	border-radius: 10px;
	width: 100%;
	aspect-ratio: 1/0.6;
	object-fit: cover;
}

.post-Category-list {
	background-color:#ebebeb;
	padding: 40px;
	border-radius: 10px;
	margin-bottom: 60px;
}

.post-Category-list .footer-info-heading {
	margin-bottom: 40px;
}

.post-Category-list .footer-info-heading h2 {
	font-size: 26px;
	font-weight: 700;
}

.post-Category-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-Category-list ul li {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 20px;
}

.post-Category-list ul li:last-child {
	margin-bottom: 0;
}

.post-Category-list ul li a {
	color:#004150 ;
	font-weight: 700;
	display: flex;
	line-height: 2;
	border: 1px solid #897b7b;
	padding: 10px;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.post-Category-list ul li a:hover {
	color: var(--accent-color);
}

.post-Category-list ul li a i {
	font-size: 16px;
	color: #004150;
	margin-right: 20px;
}

.service-logistics-card {
	background-color: var(--secondary-color);
	border-radius: 10px;
	text-align: center;
	padding: 40px;
}

.logistics-card-image {
	margin-bottom: 30px;
}

.logistics-card-title {
	position: relative;
	margin-bottom: 30px;
}

.logistics-card-title h2 {
	font-size: 26px;
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.logistics-card-body {
	display: flex;
	align-items: center;
	text-align: left;
	justify-content: space-between;
}

/************************************/
/***     17. Blog Archive css	  ***/
/************************************/

.latest-posts.blog-page {
	padding: 100px 0;
}

.post-pagination {
	margin-top: 30px;
	text-align: center;
}

.post-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
	display: none;
}

.post-pagination ul li a,
.post-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	margin: 0 4px;
	border-radius: 10px;
	font-family: var(--accent-font);
	font-weight: 700;
	color: var(--white-color);
	transition: all 0.3s ease-out;
}

.post-pagination ul li.active a,
.post-pagination ul li a:hover {
	background: var(--primary-color);
}

/************************************/
/***    18. Blog Single css       ***/
/************************************/

.post-single-meta ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.post-single-meta ul li {
	position: relative;
	display: inline-block;
	color: var(--white-color);
	font-size: 20px;
	font-weight: 700;
	text-transform: capitalize;
	padding: 0 20px 0 5px;
}

.post-single-meta ul li::after {
	content: '/';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
}

.post-single-meta ul li:last-child:after {
	display: none;
}

.page-single-post {
	padding: 100px 0;
}

.blog-detail-content {
	margin-right: 40px;
}

.blog-detail-post-content {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.blog-detail-post-content h3 {
	font-size: 26px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
	text-transform: capitalize;
}

.blog-detail-featured-image {
	margin-bottom: 50px;
}

.blog-detail-featured-image img {
	border-radius: 10px;
}

.blog-detail-post-content p {
	margin-bottom: 20px;
}

.blog-detail-post-content p:last-child {
	margin-bottom: 0;
}

.post-tags a {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	background-color: var(--accent-color);
	color: var(--white-color);
	border-radius: 5px;
	padding: 12px 20px;
	margin-right: 15px;
	margin-bottom: 10px;
}

.post-tags a:last-child {
	margin-right: 0;
}

.post-social-links {
	text-align: right;
}

.post-social-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-links ul li {
	display: inline-block;
	margin-right: 5px;
}

.post-social-links ul li:last-child {
	margin-right: 0;
}

.post-social-links ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--accent-color);
	border-radius: 100%;
	text-align: center;
	color: var(--accent-color);
	width: 38px;
	height: 38px;
	transition: all 0.3s ease-in-out;
}

.post-social-links ul li:hover a {
	border-color: var(--primary-color);
}

.post-social-links ul li a i {
	font-size: 18px;
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.post-social-links ul li:hover a i {
	color: var(--primary-color);
}

.post-Category-list.blog-details-list {
	margin-bottom: 30px;
	padding: 30px;
}

.blog-details-post-Category {
	margin-left: 50px;
}

.post-widget-body .recent-post-item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}

.post-widget-body .recent-post-item:last-child {
	margin-bottom: 0;
}

.blog-details-post-widget {
	background-color: var(--primary-color);
	border-radius: 10px;
	padding: 40px;
	margin-bottom: 30px;
}

.blog-details-post-widget .footer-info-heading {
	margin-bottom: 40px;
}

.recent-post-feature-img {
	width: 40%;
}

.recent-post-feature-img img {
	border-radius: 10px;
	aspect-ratio: 1/0.6;
	object-fit: contain;
}

.recent-post-content {
	width: 55%;
}

.recent-post-content h3 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 10px;
}

.recent-post-content h3 a {
	color: var(--white-color);
}

.recent-post-content p {
	border-color: var(--accent-color);
}

.recent-post-content .post-readmore:hover {
	border-color: var(--white-color);
}

.recent-post-content .post-readmore a {
	font-size: 16px;
}

.recent-post-content .post-readmore a:hover {
	color: var(--white-color);
}

/************************************/
/***    19. Contact us Page css   ***/
/************************************/

.get-in-touch {
	padding: 100px 0;
}

.get-quote {
	background-color: var(--secondary-color);
	border-radius: 10px;
	padding: 40px;
}

.get-quote h2 {
	font-size: 26px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.get-quote-content {
	margin-bottom: 30px;
}

.get-quote-form form .row .col-md-12,
.get-quote-form form .row {
	padding: 0;
	margin: 0;
}

.get-quote-form .form-control {
	background-color: transparent;
	color: var(--text-color);
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-bottom: 1px solid var(--divider-color);
	box-shadow: none;
	border-radius: 0;
	outline: 0;
	font-size: 16px;
	font-weight: 400;
	padding: 15px 20px 15px 0;
}

.contact-us {
	background-color: var(--secondary-color);
	border-radius: 10px;
	padding: 40px;
	height: 100%;
}

.contact-us h2 {
	font-size: 26px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 30px;
}

.contact-us-info .footer-info-box {
	margin-bottom: 30px;
}

.contact-us-info {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
}

.contact-us-info p {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
}

.contact-us-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.topbar-social-links.contact-details {
	background-color: transparent;
	padding: 0;
}

.container-fluid,
.google-map .row .col-md-12,
.google-map .row {
	padding: 0;
	margin: 0;
}

.google-map-iframe {
	height: 600px;
}

.google-map-iframe iframe {
	width: 100%;
	height: 600px;
}

/************************************/
/***    20. Projects Page css     ***/
/************************************/

.our-project {
	padding: 100px 0 70px;
}

.our-project .project-box {
	position: relative;
	transition: all 0.3s ease-out;
}

.project-box .project-item .project-content {
	transform: translateY(0);
	opacity: 1;
	bottom: 30px;
}

.project-box:hover .project-item .project-content {
	bottom: 40px;
}

/************************************/
/***    21. Project Single css    ***/
/************************************/

.project-details {
	padding: 100px 0;
}

.project-feature-image {
	margin-bottom: 40px;
}

.project-feature-image img {
	border-radius: 10px;
	width: 100%;
	aspect-ratio: 1/0.4;
	object-fit: cover;
}

.project-details-box {
	margin-bottom: 40px;
}

.project-details-content {
	background-color: var(--primary-color);
	border-radius: 10px;
	text-align: center;
	height: 100%;
	padding: 30px;
}

.project-details-content h2 {
	font-size: 18px;
	font-weight: 600;
	color: var(--accent-color);
	margin-bottom: 20px;
	text-transform: uppercase;
}

.project-details-content p {
	font-weight: 600;
	color: var(--white-color);
	text-transform: capitalize;
}

.project-details-entry {
	margin-bottom: 40px;
}

.project-details-entry p {
	margin-bottom: 20px;
}

.project-details-title {
	margin-bottom: 40px;
}

.project-details-title h2 {
	font-size: 50px;
	font-weight: 700;
	color: var(--primary-color);
}

.project-gallary-items {
	display: flex;
	flex-wrap: wrap;
}

.project-gallery-item {
	width: calc(25% - 15px);
	margin-right: 20px;
}

.project-gallery-item:last-child {
	margin-right: 0;
}

.project-gallery-item figure {
	border-radius: 10px;
}

.project-gallery-item img {
	transition: all 0.5s ease-out;
}

.project-gallery-item:hover img {
	transform: scale(1.1);
}

/************************************/
/*** 		22. FAQs css  		  ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.faq-accordion .accordion-item {
	background: none;
	border: none;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.faq-accordion .accordion-item .accordion-button {
	font-size: 20px;
	font-weight: 700;
	background-color: var(--secondary-color);
	color: var(--accent-color);
	border-radius: 5px !important;
	border: none;
	box-shadow: none;
	padding: 15px 40px 15px 20px;
	position: relative;
	transition: all 0.3s ease-in-out;
	border: 1px solid var(--divider-color);
	margin-bottom: 20px;
}

.faq-accordion .accordion-item .accordion-button.collapsed {
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f068';
	position: absolute;
	right: 0;
	top: 50%;
	bottom: auto;
	transform: translate(-20px, -8px);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Font Awesome 6 Free";
	font-size: 14px;
	font-weight: 900;
	color: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\2b';
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-button:focus {
	outline: none;
	box-shadow: none;
}

.faq-accordion .accordion-item .accordion-collapse .accordion-body {
	padding: 15px 20px;
}

.accordion-body p {
	margin-bottom: 15px;
}

.accordion-body p:last-child {
	margin-bottom: 0;
}

/************************************/
/***       23. 404 Page css       ***/
/************************************/

.page-not-found {
	text-align: center;
	padding: 100px 0;
}

.page-not-found-image {
	margin-bottom: 40px;
}

.page-not-found-box h2 {
	width: 560px;
	margin: 0 auto;
	font-size: 50px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 30px;
}

/****************************************/
/***       24. Responsive css   	  ***/
/****************************************/

@media only screen and (max-width: 1024px) {

	.main-menu ul li {
		margin: 0 10px;
	}

	.hero-content {
		padding: 0;
	}

	.project-slider {
		position: relative;
		width: 900px;
		margin: 0 auto;
	}
}

@media only screen and (max-width: 991px) {

	#magic-cursor {
		display: none !important;
	}

	.btn-default {
		font-size: 16px;
	}

	.section-title {
		margin-bottom: 40px;
	}

	.section-title h2 {
		font-size: 36px;
	}

	header.main-header .header-sticky {
		padding: 15px 0;
	}

	header.main-header .header-sticky.active .slicknav_menu {
		border-radius: 0;
	}

	.navbar.navbar-expand-lg {
		padding: 0px;
	}

	.navbar-toggle {
		display: block;
		margin-left: 85%;
		margin-top: -50px;
	}

	.navbar-expand-lg .navbar-collapse {
		display: none;
	}

	.header-contact-us {
		display: none;
	}

	.responsive-menu {
		display: block;
		position: relative;
		width: 100%;
		z-index: 100;
	}

	.hero {
		padding: 50px 0 150px;
	}

	.hero.hero-slider .hero-slider-layout .hero-slide {
		padding: 80px 0 180px;
	}

	.hero-content-title h1,
	.hero-content-title h2 {
		font-size: 36px;
	}

	.cargo-shipment {
		margin-top: -120px;
	}

	.cargo-shipment-item {
		padding: 20px;
	}

	.cargo-shipment-content h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.home-transportation {
		padding: 50px 0;
	}

	.home-transportation .section-title {
		width: 100%;
		max-width: 100%;
		margin-bottom: 20px;
		text-align: left;
	}

	.home-transportation-content {
		margin-right: 0px;
	}

	.home-transportation-right {
		max-width: 100%;
		width: 75%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.transportation-counter-box {
		position: absolute;
		left: 40%;
		bottom: 9%;
	}

	.transportation-counter-box h3 {
		font-size: 30px;
	}

	.our-service {
		padding: 50px 0;
	}

	.service-content-box {
		padding: 15px;
	}

	.our-service-title h2 {
		font-size: 18px;
	}

	.our-service-content-button a i {
		font-size: 24px;
	}

	.our-contract {
		padding: 50px 0;
		background-size: cover;
	}

	.our-cta-box {
		max-width: 530px;
	}

	.our-contract-title h2 {
		font-size: 26px;
	}

	.recent-project {
		padding: 50px 0 20px;
	}

	.project-slider {
		width: 660px;
		margin: 0 auto;
	}

	.client-button-prev {
		left: -6%;
	}

	.client-button-next {
		right: -6%;
	}

	.our-goals {
		padding: 50px 0 20px;
	}

	.our-goals-item {
		padding: 30px;
		margin-bottom: 30px;
	}

	.our-goals-counter h3 {
		font-size: 36px;
	}

	.providing-service {
		padding: 50px 0 25px;
	}

	.providing-content {
		margin-left: 0px;
	}

	.providing-content .section-title {
		margin-bottom: 20px;
		max-width: 100%;
	}

	.Featured-Content-Box {
		text-align: center;
		margin-bottom: 30px;
	}

	.providing-content-body p {
		margin-bottom: 20px;
	}

	.latest-posts {
		padding: 25px 0 20px;
	}

	.post-body-meta ul li {
		margin-right: 20px;
	}

	.post-body h3 a {
		font-size: 18px;
	}

	.mega-footer {
		padding: 40px 0;
	}

	.mega-footer .row .col-md-6 {
		padding-left: 15px;
	}

	.footer-about {
		margin-bottom: 30px;
	}

	.footer-links {
		width: 100%;
		margin-bottom: 30px;
	}

	.footer-heading h2 {
		font-size: 18px;
	}

	.footer-social-link ul li {
		margin-right: 15px;
	}

	.footer-info-heading h2 {
		font-size: 18px;
	}

	.page-header {
		padding: 50px 0;
	}

	.page-header-box h2 {
		font-size: 36px;
		margin-bottom: 10px;
		letter-spacing: -0.02em;
	}

	.page-header-box ol.breaODCrumb li {
		font-size: 18px;
	}

	.page-header-box ol.breaODCrumb li:after {
		font-size: 18px;
	}

	.home-transportation.about-transportation {
		padding: 50px 0 25px;
	}

	.about-transport {
		padding: 25px 0 50px;
	}

	.transport-item {
		text-align: center;
		padding: 20px 10px;
	}

	.transport-content h3 {
		font-size: 18px;
	}

	.our-indurstry {
		padding: 50px 0;
	}

	.indurstry-image {
		text-align: center;
		margin-bottom: 30px;
	}

	.our-indurstry-content {
		margin-left: 0px;
	}

	.indurstry-content {
		margin-left: 0;
	}

	.export-team {
		padding: 50px 0 20px;
	}

	.team-content h3 a {
		font-size: 18px;
	}

	.our-contract.about-us {
		padding: 0 0 40px;
		margin: 0;
	}

	.service-page {
		padding: 50px 0 20px;
	}

	.service-details {
		padding: 50px 0;
	}

	.service-details-content {
		margin-bottom: 30px;
		margin-right: 0px;
	}

	.service-details-body {
		margin-bottom: 30px;
	}

	.service-details-body h2 {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.service-details-body p {
		margin-bottom: 20px;
	}

	.post-widget-body .recent-post-item {
		margin-bottom: 20px;
	}

	.post-Category-list {
		margin-bottom: 30px;
	}

	.post-Category-list .footer-info-heading {
		margin-bottom: 20px;
	}

	.post-Category-list .footer-info-heading h2 {
		font-size: 24px;
	}

	.post-Category-list ul li {
		font-size: 14px;
	}

	.logistics-card-title h2 {
		font-size: 24px;
	}

	.logistics-card-body {
		display: flex;
		align-items: center;
		text-align: left;
		justify-content: center;
	}

	.logistics-card-body .header-contact-us {
		display: block;
	}

	.logistics-card-body a {
		margin-right: 20px;
	}

	.latest-posts.blog-page {
		padding: 50px 0;
	}

	.post-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.blog-detail-content {
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.blog-detail-featured-image {
		margin-bottom: 30px;
	}

	.blog-detail-post-content h3 {
		font-size: 20px;
	}

	.post-social-links {
		text-align: left;
		margin-top: 10px;
	}

	/* .blog-details{
        padding: 40px 0;
    } */

	.service-details-content .latest-posts-content-meta {
		margin-bottom: 20px;
	}

	.service-details-content .latest-posts-content-meta ul li h3 {
		font-size: 14px;
		font-weight: 500;
	}

	.blog-details-post-widget {
		margin-bottom: 30px;
		padding: 30px;
	}

	.recent-post-feature-img {
		width: 20%;
	}

	.recent-post-feature-img img {
		border-radius: 10px;
		aspect-ratio: 1/0.7;
		object-fit: cover;
	}

	.recent-post-content {
		width: 75%;
	}

	.get-in-touch {
		padding: 50px 0;
	}

	.get-quote {
		padding: 30px;
	}

	.get-quote .footer-info-heading h2 {
		font-size: 24px;
	}

	.get-quote-content {
		margin-bottom: 20px;
	}

	.contact-us {
		padding: 30px;
	}

	.contact-us .footer-info-heading {
		margin-bottom: 30px;
	}

	.contact-us .footer-info-heading h2 {
		font-size: 24px;
	}

	.contact-us-footer {
		display: block;
	}

	.topbar-social-links.contact-details {
		margin-bottom: 20px;
		text-align: left;
	}

	.contact-us-footer .header-contact-us {
		display: block;
	}

	.topbar-social-links ul {
		text-align: left;
	}

	.google-map-iframe {
		height: 450px;
	}

	.google-map-iframe iframe {
		height: 450px;
	}

	.google-map iframe {
		height: 450px;
	}

	.our-project {
		padding: 50px 0 20px;
	}

	.project-details {
		padding: 50px 0 30px;
	}

	.project-feature-image {
		margin-bottom: 30px;
	}

	.project-details-box {
		margin-bottom: 30px;
	}

	.project-details-content {
		padding: 20px;
	}

	.project-details-content h2 {
		font-size: 14px;
	}

	.project-details-content p {
		font-size: 14px;
	}

	.project-details-entry {
		margin-bottom: 30px;
	}

	.project-details-title {
		margin-bottom: 30px;
	}

	.project-details-title h2 {
		font-size: 36px;
	}

	.project-gallery-item {
		width: calc(50% - 10px);
		margin-right: 20px;
		margin-bottom: 20px;
	}

	.project-gallery-item:nth-child(2n + 2) {
		margin-right: 0;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.page-faqs .section-title {
		width: 100%;
	}

	.faq-accordion .accordion-item .accordion-button {
		font-size: 20px;
	}

	.faq-accordion .accordion-item .accordion-collapse .accordion-body p {
		font-size: 14px;
	}

	.page-not-found {
		padding: 50px 0;
	}

	.page-not-found-box h2 {
		width: 360px;
		margin: 0 auto;
		font-size: 36px;
		margin-bottom: 20px;
	}
	
}


@media only screen and (max-width: 767px) {

	.btn-default {
		font-size: 14px;
	}

	.section-title h2 {
		font-size: 28px;
	}

	.section-title p {
		max-width: 100%;
	}

	.topbar {
		display: none;
	}

	header.main-header .header-sticky {
		padding: 15px 0;
	}

	header.main-header .header-sticky.active {
		padding: 10px 0;
	}

	.header-contact-us .btn-default {
		display: none;
	}

	body {
		font-size: 16px;
	}

	.hero.hero-slider .hero-slider-layout .hero-slide {
		padding: 50px 0 150px;
	}

	.hero-slider-layout .hero-slide .hero-content {
		width: 100%;
		max-width: 100%;
	}

	.hero-slider-layout .swiper-pagination {
		bottom: 115px;
	}

	.hero-content {
		margin-bottom: 30px;
	}

	.hero-content-title h1,
	.hero-content-title h2 {
		width: 100%;
		font-size: 30px;
	}

	.cargo-shipment {
		padding: 0 10px;
		margin-top: -100px;
	}

	.cargo-shipment-content h3 {
		font-size: 16px;
	}

	.home-transportation-right {
		width: 100%;
		padding-bottom: 130px;
	}

	.transportation-img-1 {
		width: 80%;
	}

	.transportation-img-2 {
		width: 55%;
	}

	.home-transportation-footer a {
		margin-right: 20px;
	}

	.transportation-counter-box {
		position: absolute;
		left: 24%;
		bottom: 18%;
		padding: 20px;
	}

	.transportation-counter-box h3 {
		font-size: 24px;
	}

	.our-service .section-title::before {
		max-width: 80px;
	}

	.our-service-item {
		margin-bottom: 30px;
	}

	.our-service .col-md-4:nth-child(3n + 3) .our-service-item {
		margin-bottom: 0px;
	}

	.our-service-title h2 {
		font-size: 18px;
	}

	.our-contract {
		padding: 40px 0;
	}

	.our-contract .contract-video {
		display: none;
	}

	.our-contract .video-play-button {
		display: none;
	}

	.our-cta-box {
		max-width: 100%;
		padding: 30px;
	}

	.our-contract-title h2 {
		font-size: 22px;
	}

	.recent-project {
		padding: 40px 0 10px;
	}

	.project-slider {
		width: 270px;
	}

	.project-content {
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.project-content-title {
		padding: 15px;
	}

	.project-content-title h3 {
		font-size: 16px;
	}

	.project-content-title i {
		font-size: 18px;
	}

	.client-button-prev {
		left: -14%;
	}

	.client-button-next {
		right: -14%;
	}

	.our-goals-item {
		padding: 30px;
		margin-bottom: 20px;
	}

	.our-goals-counter h3 {
		font-size: 30px;
	}

	.providing-service {
		padding: 50px 0 25px;
	}

	.providing-item-box {
		display: block;
	}

	.providing-item {
		width: 100%;
		margin-bottom: 20px;
	}

	.post-body h3 a {
		font-size: 16px;
	}

	.post-meta ul li a {
		font-size: 14px;
	}

	.mega-footer {
		padding: 40px 0;
	}

	.footer-heading h2 {
		font-size: 16px;
	}

	.footer-info-heading h2 {
		font-size: 16px;
	}

	.footer-contact-info {
		margin-bottom: 30px;
	}

	.newsletters-content {
		margin-bottom: 20px;
	}

	.footer-copyright p {
		margin-bottom: 10px;
		text-align: center;
	}

	.footer-policy-links ul {
		text-align: center;
	}

	.page-header-box {
		text-align: center;
	}

	.page-header-box h2 {
		font-size: 28px;
	}

	.page-header-box .breaODCrumb {
		justify-content: center;
	}

	.page-header-box ol.breaODCrumb li {
		font-size: 16px;
	}

	.page-header-box ol.breaODCrumb li:after {
		font-size: 16px;
	}

	.about-transport .col-md-4 {
		margin-bottom: 20px;
	}

	.about-transport .col-md-4:last-child {
		margin-bottom: 0;
	}

	.transport-item {
		padding: 0;
		border: none;
	}

	.transport-content h3 {
		font-size: 16px;
	}

	.indurstry-content {
		display: block;
		margin: 20px 0 0;
	}

	.indurstry-content ul {
		margin-bottom: 20px;
		margin-right: 0px;
	}

	.indurstry-content ul li {
		width: 100%;
		font-size: 14px;
		margin-bottom: 15px;
	}

	.indurstry-content ul li i {
		font-size: 14px;
	}

	.team-item {
		margin-bottom: 20px;
	}

	.export-team .col-md-4:last-child .team-item {
		margin-bottom: 0;
	}

	.team-content h3 a {
		font-size: 16px;
	}

	.blog-detail-post-content h3 {
		font-size: 18px;
	}

	.blog-detail-post-content {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.service-details-content {
		margin-bottom: 20px;
	}

	.service-details-body {
		margin-bottom: 20px;
	}

	.service-details-body h2 {
		font-size: 18px;
	}

	.service-info-box .icon-box {
		position: absolute;
		top: 5px;
		left: 0;
	}

	.service-details-footer {
		display: block;
		justify-content: space-between;
	}

	.service-details-image-box {
		width: 100%;
		margin-bottom: 20px;
	}

	.service-details-image-box:last-child {
		margin-bottom: 0;
	}

	.post-Category-list.blog-details-list {
		margin-bottom: 20px;
		padding: 20px;
	}

	.service-logistics-card {
		padding: 25px;
	}

	.post-Category-list .footer-info-heading h2 {
		font-size: 22px;
	}

	.post-Category-list ul li a i {
		font-size: 18px;
	}

	.logistics-card-title h2 {
		font-size: 22px;
	}

	.logistics-card-body {
		display: flex;
		align-items: center;
		text-align: left;
		justify-content: space-between;
	}

	.logistics-card-body a {
		margin-right: 0px;
	}

	.get-quote {
		margin-bottom: 20px;
	}

	.get-quote .footer-info-heading h2 {
		font-size: 22px;
	}

	.contact-us .footer-info-heading h2 {
		font-size: 22px;
	}

	.google-map-iframe {
		height: 350px;
	}

	.google-map-iframe iframe {
		height: 350px;
	}

	.google-map iframe {
		height: 350px;
	}

	.blog-details-content-meta {
		margin-bottom: 20px;
	}

	.blog-details-content-meta ul li {
		margin-right: 15px;
	}

	.blog-details-post-widget {
		padding: 20px;
	}

	.recent-post-feature-img {
		width: 35%;
	}

	.recent-post-content {
		width: 60%;
	}

	.recent-post-content .post-readmore a {
		font-size: 14px;
	}

	.project-feature-image {
		margin-bottom: 30px;
	}

	.project-feature-image img {
		height: 150px;
	}

	.project-details-box {
		margin-bottom: 0px;
	}

	.project-details-content {
		height: calc(100% - 30px);
		margin-bottom: 30px;
		padding: 20px;
	}

	.project-details-entry {
		margin-bottom: 20px;
	}

	.project-details-title {
		margin-bottom: 20px;
	}

	.project-details-title h2 {
		font-size: 28px;
	}

	.project-gallary-items {
		display: block;
	}

	.project-gallery-item {
		width: 100%;
		margin-right: 0px;
	}

	.page-faqs .section-title {
		width: 100%;
	}

	.faq-accordion .accordion-item .accordion-button {
		font-size: 18px;
		padding: 10px 30px 10px 10px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		transform: translate(-10px, -11px);
		font-size: 18px;
	}

	.faq-accordion .accordion-item .accordion-collapse .accordion-body {
		padding: 10px 30px 10px 10px;
	}

	.page-not-found-image {
		margin-bottom: 30px;
	}

	.page-not-found-box h2 {
		width: 280px;
		margin: 0 auto;
		font-size: 28px;
		margin-bottom: 20px;
	}

	
}



.mylogo img{
	width: 38% !important;
}



.mylogo2{
	/* width: 60%; */
}


.our-goals-counter p{
	font-size: 20px;
	color: #003b49;
	font-weight: 700;
}

.mycontainer{
	background-image: url(/images/contact-bg-img.jpg);
	/* background-repeat: no-repeat; */
	position: relative;
	
}

.mycontainer:before {
	content: "";
	position: absolute;
	/* left: 0; right: 0; */
	top: 0; bottom: 0;
	background: rgba(15, 14, 14, 0.5);
  }


.mydiv{
	background-color: black;
}

.para p{
	color: white;
}

.bg{
	background-color: #e96127;
	

}

.white{
	color: white;
	margin-left: -15px;
}

.form-group1 input::placeholder{
	color: white;
}

.form-group1 input::placeholder:hover{
	color: black;
}
.form-group1 input{
	padding: 15px;
	border-radius: 0;
}
.btn a{
	background-color: white;
	color: #004150;
	margin-left: -10px;

}
.btn a:hover{
color: white;	
}

	

.text{
	border-radius: 0;
}

.white1{
	margin-left: -30px;
}

.serv{
	color: black;
}

.myh h2{
	color: #004150;
}





/* dd */


.title-box h4 {
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
	font-size: 40px;
}
.post-info li {
	margin-bottom: 10px;
}
.post-info .icon {
	margin-right: 10px;
}



.myycontainer{
	background-color: red;
	margin-top: -60px;
	color: white;
	width: 90%;
	height: 600px;
}

.box h4{
	color: white;
}

.head{
	color: white;
	font-size: 20px;
}

.li{
	margin-left: 20px;
	font-size: 17px;
	margin-top: 20px;
}

.mygoal{
	padding: 0;
}

.pdd{
	padding-left: 67px;
}

.logis{
	padding-right: 62px;
    padding-left: 21px;
}
.pdright{
	padding-right: 65px;
	text-align:justify;
}

.object{
	font-size: 19px;
	color: #ff7e45;
	font-weight: 700;
}

.obb p{
	color: rgb(0, 0, 0);
	font-weight: 500;
}

.our-ind{
	background-color: white;
}

.body{
	margin-top: -110px;
}

.object1{
	margin-left: 20px;
}

.title h2{
	margin-top: -70px;
}

.our{
	background-color: white;
}



.textd ul{
	list-style-type: none;	text-decoration: none;
}

.myclr {
	background-color: #f8f9fa;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	margin-top: 20px;
}
.icon-box i {
	font-size: 50px;
	color:white;
	margin-bottom: 10px;
}

.textd h6{
	margin-left: 30px;
	font-size: 22px;
}


.textd1{
	background-color:whitesmoke;
	border-radius: 13px;
	width: 30%;
}

.myclr{
	background-color: rgba(144, 136, 136, 0.119);
}

.myclr1{
	background-image: url("");
}

.myclr h3{
	font-size: 27px;
}

.myclr2 h1{
	font-size: 40px;
}

.myclr1{
	background-image: url("/images/bggg.jpg");

}

.myclr{
	background-image: url("/images/bgg22.jpg");
}

.webtech{
	color: rgb(56, 54, 54);
}


.ft-contact-page-form-wrapper {
	padding: 30px;
	background: #f8f9fa;
	border-radius: 8px;
	margin-bottom: 30px;
}
.ft-contact-page-form-wrapper h3 {
	margin-bottom: 30px;
	margin-top: -10px;
}
.ft-contact-page-form-wrapper .form-control {
	margin-bottom: 15px;
	padding: 8px;
}
.ft-contact-page-form-wrapper button {
	background-color: #007bff;
	color: white;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	border-radius: 4px;
}
.ft-contact-page-form-wrapper button:hover {
	background-color: red;
}
.location-section {
	padding: 30px;
	background: #e9ecef;
	border-radius: 8px;
}
.location {
	margin-bottom: 20px;
}
.location h5 {
	margin-bottom: 10px;
	font-size: 20px;
}

.loci {
	font-size: 15px;
	color: #f57a45;
	border-radius: 50%;
	padding: 10px 12px;
	/* background-color:#f4d5d6; */
	border: 1px solid white;
}
 .myp p{
	color: black;
	font-size: 17px;
	font-weight: 400px;
}
.get{
	color:#f67a46;
	margin-top: -20px;
	font-size: 26px;
	margin-left: 10px;
	padding-bottom: 10px;
}

.mybtn button{
	background-color:#f57a46 ;
}

 .customer{
	color: black;
	font-weight: 600;
	font-size: 18px;

}

.margin{
	margin-top: -70px;
}

.margin h1{
	font-size: 42px;
}

.th p{
	font-size: 19px;
}

.just{
	text-align: justify;
}

.back{
	background-image: url(/images/bggg\ \(1\).jpg);
	border: 1px solid #ff7d44;
	border-radius: 5px;
}

.bgclr3{
	background: #efefef8a;
    border: 1px solid #737070;
}

.mtt{
	margin-top: -15px
}
/* .textd{
	background-color:;
} */

.ft h5{
	font-size: 18px;
}

.mtt2{
	
	font-size: 35px;
}

.locii {
color: #f57a46;
font-size: 16px;
}

.cardbg{
	background-image: url(/images/objectiive.jpg);
}

.card {
	transition: transform 0.3s;
}
.card:hover {
	transform: translateY(-10px);
}
.card-title {
	font-size: 1.25rem;
}


.cardbg1{
	/* background-image: url(/images/bg333.jpg); */
	border-radius: 5px;
}

@media only screen and (max-width: 767px){
	.pdd{
		padding-left: 0;
	}
	.pdright{
		padding: 10px 20px;

	}
	.just3{
		margin-left: -20px;
		width: 115%;
	}

	.my2{
		width: 95%;
        margin-left: 12px;
	}
		.myimg1 img{
			    height:300px !important;
				width: 132vh;
				transform: translate(0px, 0px);
		
}
		
}

.justify p {
	text-align: justify;
}

.cardbg h5{
	color: black;
    font-weight: 700;
    font-size: 21px;
}
.cardbg p{
	font-size: 16px;
	/* font-weight: 600; */

	text-align: justify;
}

.cardbg1 h5{
	font-size:19px ;
}

.cardbg1 p{
	font-size: 15px;
	font-weight: 500;
}


.justify{
	text-align: justify;
}

.body1 p{
	text-align: justify;

}

.mycontainer1{
	background-image: url(/images/working-with.jpg);
	background-repeat: no-repeat;

}





/* css----------- */

.services-detail .services-featured-outer {
    position: relative;
    margin-top: 35px;
    margin-bottom: 10px;
}

.feature-block {
    position: relative;
    margin-bottom: 35px;
}
.feature-block .inner-box {
    position: relative;
    padding-left: 105px;
    padding-bottom: 27px;
    min-height: 112px;
    border-bottom: 1px solid #dddddd;
}

.services-detail .inner-box {
    position: relative;
}

.feature-block .inner-box .icon-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 80px;
    height: 80px;
    color: #e3803d;
    line-height: 80px;
    font-size: 50px;
    display: block;
    text-align: center;
    background-color: #f3f5f9;
}

.text span {
    color: #ff7000;
    font-weight: 600;
}
span.icon {
    color: #fe6a00;
    font-size: 20px;
    margin-right: 9px;
}
.flaticon-home-2:before {
    content: "\f1e2";
}

.feature-block .inner-box h4 {
    position: relative;
    font-size: 18px;
    color: #222222;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 8px;
}

.mt5{
	margin-top: 10px;
}

.textjust{
	padding-top: 1rem;
	line-height: 2rem;
	text-align: justify;
}

.mtt3{
	margin-top: -60px;
}

 .text::placeholder{
	color: white;
} 

.text4{
	font-size: 17px;
}

@media only screen and (max-width: 767px){
	.mtt{
		margin-top: 2px;
	}
	.mtt5{
		margin-top: 10px !important;
	}

	.myimage img{
		width: 100% !important;
	}
}



.objectives-container {
	margin-top: 50px;
}
.objectives-title {
	text-align: center;
	margin-bottom: 40px;
}
.objective-card {
	border: none;
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.objective-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.objective-icon {
	font-size: 40px;
	color: #f67946;
	margin-bottom: 20px;
}
.objective-content {
	text-align: center;
}
.objective-content h5 {
	/* margin-top: 20px; */
	font-size: 20px;
}

.objectives-title{
	font-size: 32px;
}


.title{
	margin-top: -60px;
}

.header1{
	position: relative;
	background-image: url(../images/cont11.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 150px 0;

}


.header2{
	position: relative;
	background-image: url(../images/imprt.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 150px 0;

}
.header20{
	position: relative;
	background-image: url(../images/inco2.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 150px 0;

}

.header3{
	position: relative;
	background-image: url(../images/clr.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 150px 0;	
}

.header4{
	position: relative;
	background-image: url(../images/domastic.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 150px 0;

}
.header5{
	position: relative;
	background-image: url(../images/banner11.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 150px 0;

}

.header6{
	position: relative;
	background-image: url(../images/post-3.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 150px 0;

}

.header7{
	position: relative;
	background-image: url(../images/que.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 150px 0;

}

.header8{
	position: relative;
	background-image: url(../images/paka\ \(2\).jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 150px 0;

}
.header9{
	position: relative;
	background-image: url(../images/ware.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 150px 0;

}

.mtt5 h2{
	margin-left: 18px;
}

.mtt h2{
	margin-left: 20px;

}

.oursr h2{
	font-size: 32px;

}
.mtt5 ul li{
	padding-left: 00px;
}
.header10{
	position: relative;
	background-image: url(../images/blog.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 150px 0;

}

.header11{
	position: relative;
	background-image: url(../images/conttttt.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 150px 0;

}

.header13{
	position: relative;
	background-image: url(../images/too.png);
	background-repeat: no-repeat;
	background-position:right;
	background-size: cover;
	padding: 150px 0;

}

.bggg{
	background-image: url(/images/indian.jpg);
}

.mybgg{
	/* background-image: url(/images/bggg.jpg); */
	
	border-radius: 15px;
	
}

.cardbg p{
	font-size: 15px;
	font-weight: 500;
}

.cardbg h1{
	font-size: 26px;
	font-weight: 600;
	color: rgb(33, 32, 32);
}

@media only screen and (max-width: 767px){
	.same h2{
		font-size: 35px;
		margin-top: 20px;

	}

}

.same1{
	margin-top: -50px;
}

.myf h2{
	font-size: 45px;
}
.abcd{
	font-size: 32px !important;
}

.header_11{
	height: 93px !important;
}



/* ------------------------------------ mission vision section craete the start css ---------------------------------------------------  */

  
  ul,
  nav {
	list-style: none;
  }
  
  textarea {
	resize: none;
  }
  
  a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	opacity: 1;
  }
  
  a:hover {
	text-decoration: none;
  }
  
  h1 {
	text-align: center;
	margin: 5px auto;
	margin-top: 10px;
	font-weight: 600;
	font-family: "Roboto", sans-serif;
  }
  
  .hr-h1 {
	margin: 0 auto 35px auto;
	margin-bottom: 28px;
	border-style: solid;
	border-width: 5px;
	border-color: #9c9a40;
	width: 128px;
  }
  
  section {
	align-items: center;
	/* // padding: 70px 100px; */
	padding: 10px;
	margin: 10px;
	margin-top: 10px;
  }
  
  section p {
	text-align: center;
	/* margin-bottom: 35px; */
	padding: 0 20px;
	/* line-height: 2; */
	font-family: "Lato", sans-serif;
  }
  
  .grid {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
  }
  
  /* General slide up */
  .slideanim {
	visibility: hidden;
  }
  
  .slide {
	animation-name: slide;
	-webkit-animation-name: slide;
	-moz-animation-name: slide;
	animation-duration: 2s;
	-webkit-animation-duration: 2s;
	-moz-animation-duration: 2s;
	visibility: visible;
  }
  
  @keyframes slide {
	0% {
	  opacity: 0;
	  transform: translateY(60%);
	}
  
	100% {
	  opacity: 1;
	  transform: translateY(0%);
	}
  }
  
  @-webkit-keyframes slide {
	0% {
	  opacity: 0;
	  -webkit-transform: translateY(60%);
	}
  
	100% {
	  opacity: 1;
	  -webkit-transform: translateY(0%);
	}
  }
  
  /* Service slide left */
  .slideanimleft {
	visibility: hidden;
  }
  
  .slideleft {
	animation-name: slideleft;
	-webkit-animation-name: slideleft;
	-moz-animation-name: slideleft;
	animation-duration: 1.5s;
	-webkit-animation-duration: 1.5s;
	-moz-animation-duration: 1.5s;
	/* Make the element visible */
	visibility: visible;
  }
  
  @keyframes slideleft {
	0% {
	  opacity: 0;
	  transform: translateX(50%);
	}
  
	100% {
	  opacity: 1;
	  transform: translateX(0%);
	}
  }
  
  @-webkit-keyframes slideleft {
	0% {
	  opacity: 0;
	  -webkit-transform: translateX(50%);
	}
  
	100% {
	  opacity: 1;
	  -webkit-transform: translateX(0%);
	}
  }
  
  @media (max-width: 375px) {
	section {
	  padding: 20px 10px;
	}
  
	.bg-section h1 {
	  font-size: 27px;
	}
  }
  /* ****************************************************
   *    Head
   **************************************************** */
  .header-full {
	color: white;
	background: url("../img/hero.jpg") no-repeat;
	background-size: cover;
	background-position: bottom;
	padding-bottom: 150px;
  }
  
  .header-full .logo-law {
	position: absolute;
	left: 0;
	height: 100px;
	width: 150px;
  }
  
  .header-full .logo-law:hover {
	-webkit-filter: grayscale(50%);
	filter: grayscale(50%);
  }
  
  .header-full .navbar {
	height: 120px;
	width: 100%;
	background-color: transparent;
	border: none;
	border-radius: 0;
	overflow-x: none;
  }
  
  .header-full .navbar-right li {
	position: absolute;
	right: 40px;
	margin-top: 25px;
  }
  
  .header-full .navbar-right .menu-icon {
	position: absolute;
	right: 100px;
  }
  
  .header-full .navbar-right > li > a {
	color: white;
	font-size: 14px;
	font-weight: 600;
	border: 1px white solid;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	border-radius: 0;
	padding: 8px 16px;
	font-family: "Lato", sans-serif;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	transform: translateX(0);
	right: 0px;
	position: absolute;
  }
  
  .header-full .navbar-nav > li > a:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #eee;
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0;
	-moz-transform-origin: 0;
	transform-origin: 0;
	-webkit-transition-property: transform;
	-moz-transition-property: transform;
	transition-property: transform;
	-webkit-transition-timing-function: ease;
	-moz-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;
  }
  
  .header-full .navbar-nav > li > a:focus,
  .header-full .navbar-nav > li > a:hover,
  .header-full .navbar-nav > li > a:active {
	color: #41ac86;
  }
  
  .header-full .navbar-nav > li > a:focus:before,
  .header-full .navbar-nav > li > a:hover:before,
  .header-full .navbar-nav > li > a:active:before {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-ms-transform: scaleX(1);
	-o-transform: scaleX(1);
	transform: scaleX(1);
  }
  
  .menu-icon {
	display: inline-block;
	cursor: pointer;
  }
  
  .menu-icon:hover {
	cursor: pointer;
	color: #41ac86;
  }
  
  .icon-bar1,
  .icon-bar2,
  .icon-bar3 {
	width: 35px;
	height: 5px;
	margin: 6px 0;
	transition: 0.5s;
	border-radius: 0;
	background-color: #fff;
  }
  
  .change .icon-bar1 {
	-webkit-transform: rotate(-45deg) translate(-9px, 6px);
	transform: rotate(-45deg) translate(-9px, 6px);
  }
  
  .change .icon-bar2 {
	opacity: 0;
  }
  
  .change .icon-bar3 {
	-webkit-transform: rotate(45deg) translate(-8px, -8px);
	transform: rotate(45deg) translate(-8px, -8px);
  }
  
  .overlay {
	height: 0%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.9);
	overflow-y: hidden;
	transition: 0.7s;
	z-index: 5;
  }
  
  .overlay-content {
	position: relative;
	top: 25%;
	width: 100%;
	text-align: center;
	margin-top: 10px;
  }
  
  .overlay a {
	padding: 7px;
	text-decoration: none;
	font-size: 38px;
	color: #757575;
	display: block;
	transition: 0.5s;
	font-weight: 600;
  }
  
  .overlay a:hover,
  .overlay a:focus {
	color: #fff;
  }
  
  .header-full .welcome-header {
	background-color: #fff;
	width: 800px;
	opacity: 0.9;
  
	text-align: center;
	margin-top: 80px;
	margin-bottom: 130px;
	border-right: 10px solid #555;
	padding: 15px;
	box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.7);
  }
  
  .header-full .welcome-header h1 {
	color: #9c9a40;
	font-weight: bold;
	font-size: 55px;
	margin-bottom: 36px;
	font-family: "Lato", sans-serif;
  }
  
  .header-full .welcome-header p {
	color: #545454;
	font-size: 20px;
	max-width: 660px;
	margin: 0 auto 20px;
	font-weight: 500;
	line-height: 1.2;
	font-family: "Lato", sans-serif;
  }
  
  .header-full .welcome-contact {
	position: absolute;
	left: 0px;
	width: 300px;
	background-color: #fff;
	opacity: 0.8;
	margin-bottom: 50px;
	box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.7);
  }
  
  .header-full .contact-info {
	font-weight: 500;
	font-size: 14px;
	padding: 20px;
	line-height: 5px;
	right: 0px;
	color: #555;
  }
  
  @media (max-width: 375px) {
	.header-full {
	  color: white;
	  background-size: cover;
	  background-position: bottom;
	  padding-bottom: 100px;
	}
  
	.header-full .logo-law {
	  display: none !important;
	}
  
	.header-full .navbar-nav > li > a {
	  padding: 8px 16px;
	  margin: 0 5px 20px 5px;
	  text-align: center;
	}
  
	.header-full .welcome-header {
	  width: 100%;
	  border-right: none;
	  margin-top: 10px;
	  margin-bottom: 40px;
	}
  
	.header-full .welcome-header h1 {
	  font-size: 25px;
	  margin-bottom: 20px;
	}
  
	.header-full .welcome-header p {
	  font-size: 16px;
	}
  
	.header-full .welcome-contact {
	  width: 100%;
	  font-size: 14px;
	}
  
	.header-full .contact-info {
	  font-size: 12px;
	  padding: 20px;
	  line-height: 2px;
	}
  
	.overlay {
	  overflow-y: 0;
	}
	.overlay a {
	  font-size: 25px;
	}
	.overlay .closebtn {
	  font-size: 40px;
	  top: 15px;
	  right: 35px;
	}
  }
  
  /* ************ 
   * About 
   **************/
  #about {
	background-color: #fff;
  }
  
  #about img {
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
	width: 100%;
	height: 100%;
  }
  
  #about img:hover {
	margin-right: 0;
	-webkit-filter: grayscale(80%);
	filter: grayscale(80%);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
  }
  
  #about .img-txt-bg:hover {
	background-color: #005960;
	opacity: 0.7;
  }
  
  #about .carousel {
	background-color: #fff;
	margin-left: 0;
	height: 478px;
  }
  
  #about .about-me h3 {
	font-size: 25px;
	font-weight: 600;
	background-color: #005960;
	margin: 0 auto;
	padding: 20px;
	color: #fff;
	text-transform: none;
	font-family: "Lato", sans-serif;
	opacity: 0.7;
  }
  
  #about .carousel-inner p {
	font-size: 17px;
	font-weight: 500;
	font-family: "Mukta", sans-serif;
	line-height: 22px;
	text-align: left;
	padding: 25px 40px;
	color: rgba(25, 25, 25, 0.6);
	word-spacing: 3px;
  }
  
  #about .img-txt-bg:hover p {
	color: #fff;
  }
  
  #about .carousel-indicators li {
	height: 16px;
	width: 16px;
	margin-right: 10px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
	background-color: #fff;
	right: 10px;
	border: 2px solid #005960;
  }
  
  #about .img-txt-bg:hover li {
	background-color: #005960;
	border-color: #fff;
  }
  
  #about .carousel-indicators li.active {
	background-color: #005960;
	border: 2px solid #005960;
  }
  
  #about .img-txt-bg:hover li.active {
	background-color: #fff;
	border-color: #fff;
  }
  
  #about .no-padding {
	padding: 0 !important;
	margin: 0 !important;
  }
  
  @media (max-width: 375px) {
	#about .carousel-inner p {
	  font-size: 16px;
	  line-height: 20px;
	  padding: 10px;
	}
  
	#about .carousel {
	  min-height: 520px;
	}
  }
  /*---------------------------------------------------
   *  Service
   *-------------------------------------------------- */
  #service {
	/* background-color: #eee; */
  }
  
  #service .tab-content {
	background-color: #fff;
	min-height: 444px;
	padding: 25px;
  }
  
  #service .brand-pills li a {
	font-size: 15px;
	padding: 45px 15px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	border-radius: 0;
	background-color: #005960;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	margin: 0;
  }
  
  #service .brand-pills li a:focus {
	font-size: 15px;
	padding: 45px 15px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	border-radius: 0;
	background-color: #005960;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	margin: 0;
  }
  
  #service .brand-pills li.active a {
	background-color: #f67946;
  }
  
  #service .brand-pills li.active a:focus,
  #service .brand-pills li.active a:hover,
  #service .brand-pills li.active a:focus:hover {
	background-color: #f67946;
  }
  
  #service .brand-pills > li > a:hover,
  #service .brand-pills > li > a:focus:hover {
	background-color: #f67946;
  }
  
  #service li.brand-nav.active a:after {
	content: " ";
	display: block;
	width: 0;
	height: 0;
	border-top: 55px solid transparent;
	border-bottom: 55px solid transparent;
	border-left: 25px solid #005960;
	position: absolute;
	top: 50%;
	margin-top: -55px;
	left: 100%;
	z-index: 2;
  }
  
  #service h3 {
	font-size: 24px;
	text-align: center;
	font-weight: 500;
	color:  #f77945;
  }
  
  #service p {
	font-size: 17px;
	line-height: 25px;
	text-align: left;
	font-weight: 500;
	color: #0f0f0f;
	color: rgba(15, 15, 15, 0.6);
	/* font-family: "Mukta", sans-serif; */
	font-family: "Plus Jakarta Sans",sans-serif ;
	word-spacing: 3px;
  }
  
  @media (max-width: 375px) {
	#service .tab-content {
	  min-height: 680px;
	  padding: 10px;
	}
  
	#service h3 {
	  font-size: 20px;
	}
  
	#service p {
	  line-height: 20px;
	  padding: 5px;
	}
  
	#service .brand-pills li a {
	  font-size: 14px;
	  padding: 20px 15px;
	}
  
	#service .brand-pills li a:focus {
	  font-size: 14px;
	  padding: 20px 15px;
	}
  
	#service li.brand-nav.active a:after {
	  border-top: 30px solid transparent;
	  border-bottom: 30px solid transparent;
	  border-left: 10px solid #f67946;
	  margin-top: -30px;
	}
  }
  /*************** 
   *  Blog
   **************** */
  #blog {
	background-color: #fff;
  }
  
  .thumbnail {
	border-radius: 0;
	padding: 0 0 10px 0;
	border: none;
	background-color: #bbb;
  }
  
  .thumbnail:hover {
	background-color: #a1a1a1;
	box-shadow: 4px 4px 2px 0 rgba(0, 0, 0, 0.8);
  }
  
  article {
	min-height: 200px;
  }
  
  .blog-h3 {
	color: #fff;
	text-align: center;
	font-weight: 500;
	font-size: 24px;
  }
  
  .text-blog {
	text-align: left;
	color: #323232;
  }
  
  .badge-more {
	background-color: #555;
	color: #fff;
	border-radius: 0;
	padding: 3px;
  }
  
  .posted {
	color: #757575;
	font-style: italic;
  }
  
  .post-meta {
	margin-bottom: 10px;
  }
  
  .header-blog {
	margin-bottom: 0;
  }
  
  @media (max-width: 375px) {
	aside {
	  margin-bottom: 25px;
	}
  
	.post {
	  margin: 25px 0;
	}
  }
  /*----------------------
   *   Testimonials
   *---------------------- */
  
  #testimonials {
	background-color: #eee;
  }
  
  #testimonials .projects {
	margin: auto 80px;
  }
  
  #testimonials .grid .result {
	padding: 5px;
	min-height: 220px;
	border-radius: none;
	background-clip: content-box;
	background-size: cover;
	background-position: center;
	background-color: #555;
  }
  
  #testimonials .grid .small {
	flex-basis: 40%;
	background-color: #9c9a40;
	display: block;
  }
  
  #testimonials .grid .big {
	flex-basis: 60%;
	background-color: #005960;
	display: block;
  }
  
  #testimonials .text {
	position: relative;
	border: 1px solid transparent;
	margin: 20px;
	height: 80%;
  }
  
  #testimonials .text p {
	color: #fff;
	font-size: 15px;
	padding: 10px;
	line-height: 25px;
	font-weight: 700;
	font-family: "Montserrat", serif;
	text-transform: uppercase;
  }
  
  #testimonials .text::before,
  #testimonials .text::after {
	content: "";
	width: 0;
	height: 4px;
	position: absolute;
	transition: all 0.3s linear;
	background: #fff;
  }
  
  #testimonials p::before,
  #testimonials p::after {
	content: "";
	width: 4px;
	height: 0;
	position: absolute;
	transition: all 0.3s linear;
	background: #fff;
  }
  
  #testimonials .text:hover::before,
  #testimonials .text:hover::after {
	width: 100%;
  }
  
  #testimonials .text:hover p::before,
  #testimonials .text:hover p::after {
	height: 100%;
  }
  
  #testimonials .text::after {
	left: 0;
	bottom: 0;
	transition-duration: 0.5s;
  }
  
  #testimonials .text p::after {
	right: 0;
	top: 0;
	transition-duration: 0.5s;
  }
  
  #testimonials .text::before {
	right: 0;
	top: 0;
	transition-duration: 0.5s;
  }
  
  #testimonials .text p::before {
	left: 0;
	bottom: 0;
	transition-duration: 0.5s;
  }
  
  @media (max-width: 375px) {
	#testimonials .projects p {
	  font-size: 14px;
	  padding: 20px;
	  line-height: 20px;
	}
  }
  /*--------------------
   *  Contact
   *-------------------- */
  #contact {
	background-color: #fff;
  }
  
  #contact .cont-box {
	height: 150px;
	margin-bottom: 10px;
  }
  
  #contact .contact-address {
	background-color: #00474d;
  }
  
  #contact .contact-hours {
	background-color: #005e66;
  }
  
  #contact .contact-contact {
	background-color: #007580;
  }
  
  #contact .cont-box h4 {
	text-align: center;
	padding: 15px 0 5px;
	color: #fff;
	font-weight: 600;
  }
  
  #contact .cont-box p {
	font-size: 15px;
	text-align: center;
	padding: 10px;
	color: #fff;
	font-weight: 500;
  }
  
  #contact .contacts > [class*="col-"] {
	padding-right: 0;
	padding-left: 0;
  }
  
  #contact .hr-contact {
	width: 90%;
	margin: 5px auto;
  }
  
  #contact .form-dropdown {
	background-color: #007580;
	margin-top: 12px;
	padding: 20px 10px;
	z-index: 10;
	min-height: 360px;
  }
  
  #contact .form-group {
	padding: 0 auto;
  }
  
  #contact .btn-form {
	margin: 20px 130px;
	justify-content: center;
	background-color: #007580;
	border-color: #fff;
	border-radius: 0;
	color: #fff;
	padding: 10px 25px;
  }
  
  #contact .btn-form:hover {
	background-color: #fff;
	color: #007580;
  }
  
  #contact .form-app input,
  #contact .form-app textarea {
	border-radius: 15px;
	background-color: #007580;
	border-color: #fff;
	color: #fff;
  }
  
  #contact .contact-buttons {
	padding-bottom: 30px;
  }
  
  #contact .btn-two {
	padding: 5px 10px;
	border-radius: 0;
	border-color: #fff;
	border-width: 1px;
	background-color: #007580;
	color: #fff;
  }
  
  #contact .btn-two:hover {
	color: #007580;
	background-color: #fff;
  }
  
  @media (max-width: 375px) {
	#contact .cont-box {
	  margin: 10px;
	}
  
	#contact .cont-box h4 {
	  padding: 15px 0 0 0;
	}
  
	#contact .cont-box p {
	  padding: 10px;
	}
  }
  /*---------------------
   *    Footer
   *--------------------- */
  #footer {
	background-color: #191919;
	background-color: rgba(25, 25, 25, 0.8);
	color: #fff;
	padding: 80px 70px;
  }
  
  #footer h4 {
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 20px;
	text-align: center;
	color: #00cc99;
  }
  
  #footer .footer-info {
	text-align: left;
  }
  
  #footer .footer-icons a {
	display: inline-block;
	width: 35px;
	height: 35px;
	cursor: pointer;
	background-color: #33383b;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	border-radius: 0;
	font-size: 22px;
	color: #00b386;
	text-align: center;
	line-height: 35px;
	margin-right: 15px;
  }
  
  #footer .footer-icons a:hover {
	background-color: #fff;
  }
  
  #footer .contacts .fa {
	color: #00b386;
  }
  
  #footer ul {
	font-size: 14px;
	padding-bottom: 20px;
	color: #fff;
	line-height: 2.2;
	margin-left: 0;
	padding-left: 0;
  }
  
  #footer li {
	text-align: left;
	margin-left: 0;
	padding-left: 0;
  }
  
  #footer .nav-links a:hover {
	color: #00b386;
  }
  
  #footer .hr-footer {
	display: block;
	width: 100%;
	color: #fff;
	margin: 25px 0;
  }
  
  @media (max-width: 375px) {
	#footer {
	  padding: 50px 10px;
	}
  
	#footer h4 {
	  font-size: 20px;
	  margin-bottom: 15px;
	}
  
	#footer .nav-links a {
	  font-size: 14px;
	  padding-bottom: 20px;
	  line-height: 20px;
	}
  
	#footer .footer-info {
	  padding-bottom: 30px;
	}
  }
  
  .copyright {
	background-color: #00aa9c;
  }
  
  .copyright p {
	text-align: center;
	color: #fff;
	padding: 5px 0;
	margin-bottom: 0;
	font-size: 12px;
	font-weight: 600;
  }
  
  .to-top {
	color: #fff;
	font-size: 30px;
	position: fixed;
	right: 15px;
	bottom: 15px;
	height: 40px;
	width: 40px;
	text-decoration: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	border-radius: 0;
	text-align: center;
	background-color: #aaa;
	opacity: 0.7;
	background-repeat: no-repeat;
	background-position: center;
  }
  
  .to-top:hover {
	background-color: #222;
	color: #00b386;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
  }
  
  @media (max-width: 375px) {
	.to-top {
	  right: 0;
	  bottom: 5px;
	}
  }
  
  /*****************************************
   BreaODCrumb
   *****************************************/
  .breaODCrumb {
	/* background-color: #aaa; */
	border-radius: 0;
	color: #fff;
  }
  
  .breaODCrumb > li:hover > a {
	color: #005960;
  }
  
  /****************************************
   Pagination
  *****************************************/
  
  .pagination > li > a {
	background-color: #fff;
	color: #005960;
	border-color: #005960;
	border-radius: 0;
  }
  
  .pagination > li:hover > a,
  .pagination > li:hover:focus > a,
  .pagination > li.active a,
  .pagination > li.active:hover a {
	background-color: #005960;
	color: #fff;
	border: 1px solid #005960;
  }
  
  /*****************************************
   Sidebar
  *****************************************/
  aside {
	background-color: #eee;
	box-shadow: 2px 2px 2px 0 rgba(120, 120, 120, 0.8);
  }
  
  aside h3 {
	color: #fff;
	background-color: #005960;
	font-size: 18px;
	padding: 7px;
	text-align: center;
	opacity: 0.7;
  }
  
  .sidebar-posts ol {
	padding-bottom: 10px;
	margin-left: 10px;
	padding-left: 10px;
  }
  
  .sidebar-posts li {
	color: #555;
	font-size: 14px;
	text-align: left;
	margin-left: 10px;
	padding-left: 10px;
  }
  
  .sidebar-hr {
	border-color: #555;
	width: 90%;
	padding-left: 0;
	margin-left: 0;
	margin-top: 0;
  }
  
  /************************************
   Post
  *************************************/
  
  .main-content {
	background-color: #eee;
	min-height: 700px;
  }
  
  .header-h3 h3 {
	text-align: center;
	padding-top: 20px;
	font-size: 30px;
	color: #005960;
	font-weight: 600;
  }
  
  .header-h3 .post-meta {
	text-align: right;
  }
  
  .main-content .text-blog {
	padding: 20px;
	color: rgba(25, 25, 25, 0.8);
	font-size: 15px;
  }
  
  .main-content .text-blog::first-letter {
	font-size: 150%;
	font-weight: 600;
	color: #005960;
  }
  
  @media (max-width: 375px) {
	.text-blog {
	  line-height: 20px;
	}
  }

  .myfnt h3{
	font-size: 32px;
  }

span.spp{
	margin-left: -160px;
  }

  @media only screen and (max-width: 767px){
	.navbar-brand img{
		width: 100% !important;
		margin-top: -1px;
	}
	span.spp{
		margin-left: -90px;
	
	}
	.mylogo3 img{
		margin-left: -230px;
		width: 60%;
		margin-top: 2px !important;
	}
	.responsive-menu1{
		margin-top: -20px;
	}
}

@media only screen and (max-width: 767px) {
    .mylogo3 img {
        width: 100% !important;
        margin-top: 13px;
        margin-left: -280px;
        height: 45px;
    }

}

@media (max-width: 375px) {
    #service .tab-content {
        min-height: 488px;
        padding: 10px;
    }

	.mylogo3 img {
        margin-left: -207px;
        width: 60%;
        margin-top: 2px !important;
    }
}
 
.homepage h2{
	font-size: 42px;
}

.myli{
	list-style-type:disc;
	font-size: 16px;
	margin-left: 35px;
	line-height: 2;
}

.mylii{
	margin-left: 20px;
	font-size: 16px;
	text-align:left;
	list-style-type: none;
	/* text-align: justify; */
}

.footer-content p{
	font-size: 16px;
	font-family: "Lato", sans-serif;
	/* width: 59%; */
}

@media only screen and (max-width: 767px){
	.tab-pane img{
		/* margin-left: 21px; */
		height:200px !important; 
		/* max-width: 86%; */

	}
	#service .tab-content{
		padding:-10px;

	}
	.imgg img{
		max-width: 325px;
		margin-left: -25px !important;
	}

	.imggg img{
		max-width: 122px !important;
		margin-left: -24px;

	}
	.para1 p{
		width: 134% !important;
		margin-left: -44px !important;
	}
	.para2 p{
		width: 134% !important;
		margin-left: -15px !important;
	}
	.para3 p{
		width: 126% !important;
		margin-left: 10px !important;
	}
	.mypara p{
		width: 133%;
		margin-left: -40px;
		text-align: justify !important;
		font-size: 15px;
	}
	.img1 img{
		max-width: 118% !important;
		margin-left: -20px;
	}
	
	.imgg2 img{
		max-width: 116% !important;
	}

	
}
/* ------------------------------------ mission vision section craete the end css ------------------------  */




@keyframes slide {
	from {
		background-position: 0 0
	}

	to {
		background-position: 1920px 0
	}
}

@-webkit-keyframes slide {
	from {
		background-position: 0 0
	}

	to {
		background-position: 1920px 0
	}
}

.service-block-one a {
	text-decoration: none
}

@keyframes slide {
	from {
		background-position: 0 0
	}

	to {
		background-position: 1920px 0
	}
}

@-webkit-keyframes slide {
	from {
		background-position: 0 0
	}

	to {
		background-position: 1920px 0
	}
}

.service-block-one .inner-box {
	position: relative;
	border-radius: 10px;
	display: block;
	overflow: hidden;
	text-align: center;
	background: #353535;
	padding: 0px 21px 7px;
}

.service-block-one .inner-box:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 0;
	left: 0;
	bottom: 0;
	right: 0;
	transition: all 500ms ease
}

.service-block-one .inner-box:hover:before {
	height: 100%;
	top: 0
}

.service-block-one .inner-box .icon-box {
	position: relative;
	display: inline-block;
	font-size: 100px;
	line-height: 100px;
	margin-bottom: 8px;
	z-index: 1;
	transition: all 500ms ease
}

.service-block-one .inner-box .icon-box:before {
	position: absolute;
	content: '';
	background: #303030;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	left: -9px;
	top: -13px;
	z-index: -1;
	transition: all 500ms ease
}

.service-block-one .inner-box:hover .icon-box:before {
	background: #f67946;
}

.service-block-one .inner-box:hover .icon-box {
	transform: rotateY(360deg);
	color: #fff
}

.service-block-one .inner-box h3 {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	font-weight: 800;
	margin-bottom: 9px
}

.service-block-one .inner-box h3 a {
	display: inline-block;
	color: #fff
}

.service-block-one .inner-box p {
	position: relative;
	color: #fff;
	font-size: 15px;
	margin-bottom: 33px
}

.service-block-one .inner-box .theme-btn {
	padding: 12px 25px
}

.service-block-one .inner-box:hover .theme-btn {
	background: #de3f40
}

.service-section .sec-title {
	margin-bottom: 70px
}

.service-section .sec-title span {
	margin-bottom: 21px
}

.service-block-one .inner-box .icon-box {
	color: #da292a
}

.service-block-one .inner-box:before {
	background: #ff7d4f;
}

.theme-btn {
	position: relative;
	display: inline-block;
	font-size: 15px;
	background: #da292a;
	line-height: 26px;
	font-weight: 700;
	font-family: 'Rubik', sans-serif;
	color: #fff !important;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	z-index: 1;
	transition: all 500ms ease
}

.theme-btn:before {
	position: absolute;
	content: '';
	background: #1c1d1f;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out
}

.theme-btn:hover:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transition-timing-function: cubic-bezier(.52, 1.64, .37, .66);
	transition-timing-function: cubic-bezier(.52, 1.64, .37, .66)
}

.theme-btn i {
	position: relative;
	top: 2px;
	font-size: 20px;
	margin-left: 40px;
}

@media(max-width:1024px) {
	.service-block-one .inner-box {
		padding: 30px
	}

	.service-block-one {
		margin-bottom: 15px
	}

	.theme-btn {
		padding: 10px 20px
	}
}


.header15{
	position: relative;
	background-image: url(../images/supplybg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 150px 0;

}
.header16{
	position: relative;
	background-image: url(../images/transbgg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 150px 0;

}
.header17{
	position: relative;
	background-image: url(../images/trackgg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 150px 0;

}

.header18{
	position: relative;
	background-image: url(../images/cusbg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 150px 0;

}

#scrollbar {
	/* width: 50px; */
	height: 60vh;
	overflow: auto;
}

#scrollbar-track {
	box-shadow: inset 0 0 5px blue !important;
	border-radius: 10px !important;
}

#scrollbar-thumb {
	background: blue !important;
	border-radius: 10px !important;
}

.mynew{
	border-radius: 10px;
    text-align: center;
    padding: 30px;
    margin-top: -40px;
}




/* vission */

 
.iconTabs .nav1 a {
    position: relative;
    padding: 15px 20px 20px 60px;
    color: #51556a;
    background: #f3f8fa;
    display: block;
    margin-bottom: 10px;
    -moz-transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
  
  
}
.iconTabs .nav1 a .icon {
    position: absolute;
    left: 20px;
    top: 17px !important;
    font-size: 1.5em;
  display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.iconTabs .nav1 a h6 {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: .85em;
    -moz-transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
  
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #23344b;
    line-height: 1.4;
}
.iconTabs .nav1 a p {
    margin-bottom: 0;
    font-size: .85em;
}

.iconTabs .nav1 a.active, .iconTabs .nav1 a:hover {
    background: #ffa726;
    color: #fff;
}
.iconTabs .nav1 a.active, .iconTabs .nav1 a:hover {
    background: #ffa726;
    color: #fff;
}
.mBase25 {
    margin-bottom: 25px;
}
.mBase25 img{
  width:100%;
}
.sectionTitle p{
    text-transform: uppercase;
    color: #ffa726;
    font-weight: 300;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 25px;
    line-height: 1;
    position: relative;
}
.sectionTitle .title {
    color: #23344b;
    font-size: 2.2em;
    line-height: normal;
    margin-bottom: 50px;
  margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #23344b;
    line-height: 1.4;
}
.progressBarWrap {
    margin-top: 80px;
}
.progressBar {
    margin-bottom: 60px;
    margin-top: 30px;
    background: #f3f8fa;
    width: 100%;
    border-radius: 4px;
    position: relative;
}

.progressBar .wrap {
    width: 0;
    position: relative;
}
.progressBar .inner {
    height: 8px;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    background: #ffa726;
}
.progressBar .wrap .no {
    position: absolute;
    bottom: 15px;
    right: 0;
    font-weight: bold;
}
.progressBar .info {
    position: absolute;
    bottom: 15px;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0;
    font-size: .9em;
    left: 0;
}
.itemList li {
    margin-bottom: 8px;
    font-size: 0.9em;
    text-transform: uppercase;
  list-style-type:none;
}
.itemList i {
    color: #ffa726;
    font-size: 1em;
    margin-right: 10px;
  display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
ul, menu, dir {
    display: block;
    list-style-type: disc;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 0px!important;
}
.check_desc{
    color: #23344b;
    font-size: .98em;
    line-height: normal;
    margin-bottom: 50px;
  margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #23344b;
    line-height: 1.4;
}
.core_values{
      margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #23344b;
    line-height: 1.4;
}
.core_para{
  font-size:15px !important;
  letter-spacing:1px;
  text-align: justify;
  font-family: "Plus Jakarta Sans",sans-serif !important;
    margin-bottom: 1.6em;
  display: block;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 0px;
   color: #23344b;
 
}
.button {
    position: relative;
    display: inline-block;
    padding: 8px 28px;
    background: none;
    font-weight: normal;
    text-transform: uppercase;
    font-size: .9em;
}
 
 .button {
    position: relative;
    display: inline-block;
    padding: 15px 28px;
    background: none;
    font-weight: normal;
    text-transform: uppercase;
    font-size: .9em;
}
.button.primary {
    background: #ffa726;
    color: #fff;
}
.button.primary:hover {
    background: #0b192d;
    color: #fff;
  text-decoration:none;
}
.set_slider_padding{
  padding-top:70px;
  padding-bottom:50px;
}

/* ------------------------------------------ new section start --------------------  */
.iconTabs .nav1 a {
	position: relative;
	padding: 15px 20px 20px 60px;
	color: #51556a;
	background: #f3f8fa;
	display: block;
	margin-bottom: 10px;
	-moz-transition: all linear 0.3s;
	-webkit-transition: all linear 0.3s;
	transition: all linear 0.3s;
  }
  .iconTabs .nav1 a .icon {
	position: absolute;
	left: 20px;
	top: 25px;
	font-size: 1.5em;
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  }
  .iconTabs .nav1 a h6 {
	margin-bottom: 0;
	text-transform: uppercase;
	font-size: 0.85em;
	-moz-transition: all linear 0.3s;
	-webkit-transition: all linear 0.3s;
	transition: all linear 0.3s;
  
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	color: #23344b;
	line-height: 1.4;
  }
  .iconTabs .nav1 a p {
	margin-bottom: 0;
	font-size: 0.85em;
  }
  
  .iconTabs .nav1 a.active,
  .iconTabs .nav1 a:hover {
	background: #f67946;
	color: #fff;
  }
  .iconTabs .nav1 a.active,
  .iconTabs .nav1 a:hover {
	background: #f67946;
	color: #fff;
  }
  .mBase25 {
	margin-bottom: 25px;
  }
  .mBase25 img {
	width: 100%;
  }
  .sectionTitle p {
	text-transform: uppercase;
	color: #ffa726;
	font-weight: 300;
	font-size: 12px;
	font-family: "Montserrat", sans-serif;
	margin-bottom: 25px;
	line-height: 1;
	position: relative;
  }
  .sectionTitle .title {
	color: #23344b;
	font-size: 2.2em;
	line-height: normal;
	margin-bottom: 50px;
	margin-bottom: 20px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	color: #23344b;
	line-height: 1.4;
  }
  .progressBarWrap {
	margin-top: 80px;
  }
  .progressBar {
	margin-bottom: 60px;
	margin-top: 30px;
	background: #f3f8fa;
	width: 100%;
	border-radius: 4px;
	position: relative;
  }
  
  .progressBar .wrap {
	width: 0;
	position: relative;
  }
  .progressBar .inner {
	height: 8px;
	width: 100%;
	border-radius: 4px;
	overflow: hidden;
	background: #ffa726;
  }
  .progressBar .wrap .no {
	position: absolute;
	bottom: 15px;
	right: 0;
	font-weight: bold;
  }
  .progressBar .info {
	position: absolute;
	bottom: 15px;
	text-transform: uppercase;
	font-weight: 300;
	margin: 0;
	font-size: 0.9em;
	left: 0;
  }
  .itemList li {
	margin-bottom: 8px;
	font-size: 0.9em;
	text-transform: uppercase;
	list-style-type: none;
  }
  .itemList i {
	color: #ffa726;
	font-size: 1em;
	margin-right: 10px;
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  }
  ul,
  menu,
  dir {
	display: block;
	list-style-type: disc;
	-webkit-margin-before: 1em;
	-webkit-margin-after: 1em;
	-webkit-margin-start: 0px;
	-webkit-margin-end: 0px;
	-webkit-padding-start: 0px !important;
  }
  .check_desc {
	color: #23344b;
	font-size: 0.98em;
	line-height: normal;
	margin-bottom: 50px;
	margin-bottom: 20px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	color: #23344b;
	line-height: 1.4;
  }
  .core_values {
	margin-bottom: 20px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	color: #23344b;
	line-height: 1.4;
  }
  .core_para {
	font-size: 13px;
	letter-spacing: 1px;
	margin-bottom: 1.6em;
	display: block;
	-webkit-margin-before: 1em;
	-webkit-margin-after: 1em;
	-webkit-margin-start: 0px;
	color: #23344b;
  }
  .button {
	position: relative;
	display: inline-block;
	padding: 8px 28px;
	background: none;
	font-weight: normal;
	text-transform: uppercase;
	font-size: 0.9em;
  }
  
  .button {
	position: relative;
	display: inline-block;
	padding: 15px 28px;
	background: none;
	font-weight: normal;
	text-transform: uppercase;
	font-size: 0.9em;
  }
  .button.primary {
	background: #f67946;
	color: #fff;
  }
  .button.primary:hover {
	background: #0b192d;
	color: #fff;
	text-decoration: none;
  }
  .set_slider_padding {
	padding-top: 35px;
	padding-bottom: 50px;
  }

  .mainhead{
	height: 97px !important;
  }

  .main-menu{
	margin-top: -8px;
  }
  
 /*footer Menu*/
  .footer-locations {
  text-align: left-side;
  padding: 20px 0;
  font-size: 13px;
  line-height: 1.8;
  color: #f1c40f;
  background-color: #003b49; /* Optional: matches Seaways blue tone */
}

.footer-locations a {
  color: #f1c40f;
  text-decoration: none;
  margin: 0 6px;
  vertical-align: middle; /* Align text vertically with | */
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-locations a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Fix | alignment issue */
.footer-locations {
  font-variant-ligatures: none;
  vertical-align: middle;
  letter-spacing: 0.5px;
}


.footer-locations a:last-child::after {
  content: "";
}

.preloader{
	display: none !important;
}