/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color			: #222222;
	--secondary-color		: #F5F5F5;
	--text-color			: #81848A;
	--accent-color			: #FF9900;
	--white-color			: #FFFFFF;
	--divider-color			: #EBEBEB;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
}
/************************************/
/*** 	   02. General css		  ***/
/************************************/

/* body{
    font-family: 'Gotham';	
    font-size: 16px;
	font-weight: 500;
} */
body{
  font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7em;
	color: var(--text-color);
}
p{
	line-height: 1.7em;
	margin-bottom: 1.6em;
  font-family: "Inter", sans-serif;
}

.home_pro_wrapper .prod-pg-box:hover {
    padding: 12px;
}
.home_pro_wrapper .prod-pg-box {
    background: none;
    padding: 0;
    margin-bottom: 42px;
    height: auto;
}

.more_pro h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    text-transform: uppercase;
}

.more_pro {
    position: relative;
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: -25px;
}

.info-heading-contactus h2 {
    margin-bottom: 16px;
    color: #1a1f34;
}
.more_pro:before {
    content: '\f054';
    position: absolute;
    right: 56px;
    font-size: 20px;
    line-height: 30px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    width: 20px;
    height: 20px;
    bottom: -55px;
    background: #fff;
    width: 50px;
    height: 50px;
    display: flex
;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #000;
}
.team-image a {
    font-size: 18px;
}
.product-menu li button.active:before {
    top: 15px;
    content: '\f054';
    position: absolute;
    right: 68px;
    font-size: 20px;
    line-height: 30px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    width: 20px;
    height: 20px;
}
h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
	  font-family: "Inter", sans-serif;
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

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;
} */

.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;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.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;
}

.btn-default{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	line-height: 0.6em;
	text-transform: capitalize;
	color: var(--primary-color);
	background-color: var(--accent-color);
	border-radius: 10px;
	padding: 2px 40px 2px 2px;
	border: none;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}

.btn-default:hover{
	background-color: transparent;
}

.btn-default::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	width: 12px;
	height: 12px;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px auto;
	transform: translate(-15px, -50%);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover::before{
	transform: translate(-15px, -50%) rotate(45deg);
}

.btn-default::after{
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: auto;
	right: 0;
    bottom: 0;
	width: 0;
	height: 100%;
	border-radius: 8px;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
	z-index: 0;
}

.btn-default:hover::after{
	width: 100%;
	left: 0;
	right: auto;
}

.btn-default span{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	background-color: var(--white-color);
	color: var(--primary-color);
	border-radius: 8px;
	padding: 15px 20px;
	overflow: hidden;
	z-index: 1;
	transition: all 0.5s ease-in-out;
}

.btn-default:hover span{
	background-color: transparent;
	color: var(--primary-color);
}

.btn-default span::after{
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: auto;
	right: 0;
    bottom: 0;
	width: 0;
	height: 100%;
	border-radius: 8px;
    background: var(--accent-color);
    transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover span::after{
	width: 100%;
	left: 0;
	right: auto;
}

.btn-highlighted{
	background-color: var(--white-color);
}

.btn-highlighted:hover{
	background-color: var(--primary-color);
}

.btn-highlighted::before{
	background-image: url('../images/arrow-dark.svg');
}

.btn-highlighted:hover::before{
	filter: brightness(0) invert(1);
}

.btn-highlighted span{
	color: var(--white-color );
	background-color: var(--accent-color);
}

.btn-highlighted:hover span{
	color: var(--primary-color);
}

.btn-highlighted span::after{
    background: var(--white-color);
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--accent-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(--white-color) transparent var(--white-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: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

/* .section-row{
	position: relative;
	margin-bottom: 80px;
	z-index: 1;
} */
/* 
.section-row .section-title{
	margin-bottom: 0;
} */

.section-title-content{
	margin-left: 90px;
}

.section-title-content p{
	margin: 0;
}

.section-btn{
	text-align: right;
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-size: 14px;
    font-weight: 700;
	line-height: normal;
	letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
	padding-left: 26px;
    margin-bottom: 15px;
}

a{
    cursor: pointer;
}

.map-title{
    font-weight: 700;
    font-style: Bold;
    font-size: 42px;
    line-height: 52px;
    }
    .map-title span{
        color: #0065A8;
    }


.section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../images/icon-sub-heading.svg') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 16px;
    height: 16px;
}
.left-border {
    border-left: 4px solid #ffdb15;
    padding-left: 15px;
}
.section-title h1{
	font-size: 70px;
	font-weight: 300;
	line-height: 1.2em;
	letter-spacing: -0.01em;
	color: var(--primary-color);
	margin-bottom: 0;
}

.section-title h2{
	  font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 50px;
	color: var(--primary-color);
	margin-bottom: 22px !important; 
}


.section-title h1 span,
.section-title h2 span{
	font-weight: 700;
}
.pro_description h2 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 24px;
}
/* .section-title p{
	margin-top: 20px;
	margin-bottom: 0;
} */
p {
    /* margin-top: 20px; */
    margin-bottom: 0;
    font-size: 18px;
    line-height: 28px;
    color: #000;
    font-weight: 400;
    margin-bottom: 24px;
     font-family: "Inter", sans-serif;

}
.section-title-content.dark-section p,
.section-title.dark-section p,
.section-title.dark-section h1,
.section-title.dark-section h2,
.section-title.dark-section h3{
	color: var(--white-color);
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

.topbar{
	padding: 8px 0;
}

.topbar-contact-info{
	display: flex;
	align-items: center;
	justify-content: end;
}

.topbar-contact-info ul{ 
	margin: 0;
	padding: 0;
	list-style: none;
	margin-right: 60px;
	padding-right: 60px;
	border-right: 1px solid var(--divider-color);
}

.topbar-contact-info ul li{
	display: inline-block;
	margin-right: 15px;
}

.topbar-contact-info ul li:last-child{
	margin-right: 0;
}

.topbar-contact-info ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
}

.topbar-contact-info ul li .icon-box{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	border-radius: 10px;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li:hover .icon-box{
	background: var(--primary-color);
}

.topbar-contact-info li .icon-box img{
	max-width: 24px;
}

.topbar-contact-info ul li p{
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 700;
	width: calc(100% - 60px);
	margin: 0;
}

.topbar-qoute-btn{
	line-height: 1em;
}

header.main-header{
	position: relative;
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 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;
    transform: translateY(0);
	background: var(--dark-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar{
	padding: 10px 0px;
	align-items: center;
	background: var(--primary-color);
}

.main-header .header-sticky.active-sticky-header.hide .navbar{
	padding: 20px 0;
}

.main-header .navbar-brand{
	padding: 0;
	margin: 0;
	display: none;
}

.main-header .header-sticky.active-sticky-header.hide .navbar-brand{
	display: block;
	margin-right: 40px;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: left;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li.nav-item .nav-link{
	font-size: 16px;
	font-weight: 500;
	padding: 10px 20px;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.nav-item:first-child .nav-link{
	padding-left: 0;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li .nav-link:hover,
.main-menu ul li .nav-link:focus{
	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: 230px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	text-align: left;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu:first-child ul{
    width: 230px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu ul li.submenu > a:hover:after{
	transform: rotate(90deg);
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li.nav-item .nav-link{
	color: var(--white-color);
	padding: 4px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li .nav-link:hover,
.main-menu ul ul li .nav-link:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 4px 20px 4px 23px !important;
}

.header-social-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.header-social-links ul li{
	display: inline-block;
	margin-right: 20px;
}

.header-social-links ul li:last-child{
	margin-right: 0;
}

.header-social-links ul li a{
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.header-social-links ul li:hover a{
	color: var(--white-color);
}

.header-social-links ul li a i{
	font-size: 20px;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--white-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--accent-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.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);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--dark-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--dark-color);
	position: absolute;
	right: 15px;
    top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

.topbar{
	padding: 20px 0;
}

.topbar-contact-info{
	display: flex;
	align-items: center;
	justify-content: end;
}

.topbar-contact-info ul{ 
	margin: 0;
	padding: 0;
	list-style: none;
	margin-right: 60px;
	padding-right: 60px;
	border-right: 1px solid var(--divider-color);
}

.topbar-contact-info ul li{
	display: inline-block;
	margin-right: 15px;
}

.topbar-contact-info ul li:last-child{
	margin-right: 0;
}

.topbar-contact-info ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
}

.topbar-contact-info ul li .icon-box{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	border-radius: 10px;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li:hover .icon-box{
	background: var(--primary-color);
}

.topbar-contact-info li .icon-box img{
	max-width: 24px;
}

.topbar-contact-info ul li p{
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 700;
	width: calc(100% - 60px);
	margin: 0;
}

.topbar-qoute-btn{
	line-height: 1em;
}

header.main-header{
	position: relative;
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 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;
    transform: translateY(0);
	background: var(--dark-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar{
	padding: 10px 0px;
	align-items: center;
	background: var(--primary-color);
}

.main-header .header-sticky.active-sticky-header.hide .navbar{
	padding: 20px 0;
}

.main-header .navbar-brand{
	padding: 0;
	margin: 0;
	display: none;
}

.main-header .header-sticky.active-sticky-header.hide .navbar-brand{
	display: block;
	margin-right: 40px;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: left;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li.nav-item .nav-link{
	font-size: 16px;
	font-weight: 500;
	padding: 10px 20px;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.nav-item:first-child .nav-link{
	padding-left: 0;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li .nav-link:hover,
.main-menu ul li .nav-link:focus{
	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: 230px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	text-align: left;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu:first-child ul{
    width: 230px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu ul li.submenu > a:hover:after{
	transform: rotate(90deg);
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li.nav-item .nav-link{
	color: var(--white-color);
	padding: 4px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li .nav-link:hover,
.main-menu ul ul li .nav-link:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 4px 20px 4px 23px !important;
}

.header-social-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.header-social-links ul li{
	display: inline-block;
	margin-right: 20px;
}

.header-social-links ul li:last-child{
	margin-right: 0;
}

.header-social-links ul li a{
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.header-social-links ul li:hover a{
	color: var(--white-color);
}

.header-social-links ul li a i{
	font-size: 20px;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--white-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--accent-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.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);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--dark-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--dark-color);
	position: absolute;
	right: 15px;
    top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/


.hero{
	padding: 150px 0 40px;
	position: relative;
	background: url('../images/hero-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
}

/* .hero::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(270deg, transparent 42.92%, rgba(0, 0, 0, 0.5) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
} */

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout{
	background: none;
	padding: 90px 0;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
    padding: 160px 0 100px;
}


/* .hero.hero-slider-layout .hero-slide::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(270deg, rgba(30, 30, 30, 0) 0.02%, rgba(30, 30, 30, 0.9) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0) 87.63%, rgba(30, 30, 30, 0.6) 100.45%);
	width: 100%;
	height: 100%;
	z-index: 1;
} */

.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 50px;
	text-align: left;
	padding-left: calc(((100vw - 1300px) / 2));
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-content{
	position: relative;
	z-index: 1;
	 top: -40px;
	
}

.excellence-innovating-list{
	position: relative;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 50px;
	margin-top: 150px;
	z-index: 1;
}

.excellence-innovating-list ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 100px;
}

.excellence-innovating-list ul li{
	position: relative;
	color: var(--white-color);
	padding-left: 40px;
}

.excellence-innovating-list ul li:before{
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	background: url('../images/icon-check.svg') no-repeat center left;
	background-size: cover;
}
.hero-content {
    width: 50%;
}
/************************************/
/***      05. About Us css	      ***/
/************************************/
.sp{
    padding: 100px 144px;
}
.about-us{
	/* padding: 100px 0; */
	/*background: url('../images/about-us-bg.svg') no-repeat;*/
	background-position: bottom left;
	background-size: auto;
}
.about-img-2 {
    width: 60%;
    margin-right: auto;
}
.about-image{
	position: relative;
	display: flex;
	justify-content: end;
	padding-top: 150px;
	margin-right: 40px;
}

.about-img-1{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 300px;
}

.about-img-2 figure,
.about-img-1 figure{
	display: block;
	border-radius: 40px;
}

.about-img-1 figure img{
	border-radius: 40px;
}

.about-img-2 img{
	border: 10px solid var(--white-color);
	aspect-ratio: 1 / 1.22;
	object-fit: cover;
	border-radius: 40px;
}

.company-experience{
	position: absolute;
	top: 50px;
	right: 0px;
	display: flex;
	align-items: center;
	max-width: 250px;
}

.company-experience-counter{
	width: 120px;
}

.company-experience-counter h2{
	font-size: 50px;
	color: var(--accent-color);
}

.company-experience-content p{
	font-size: 18px;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--primary-color);
	margin: 0;
}

.about-content-list{
	margin-bottom: 40px;
}

.about-content-list ul{
	margin: 0;
    padding: 0;
    list-style: none;
}

.about-content-list ul li{
	position: relative;
    color: var(--primary-color);
	text-transform: capitalize;
    padding-left: 40px;
	margin-bottom: 20px;
}

.about-content-list ul li:last-child{
	margin-bottom: 0;
}

.about-content-list ul li:before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url('../images/icon-check.svg') no-repeat center left;
    background-size: cover;
}

.genuine-rating-counter{
	background: var(--secondary-color);
	border-radius: 40px;
	padding: 50px;
	text-align: center;
}

.genuine-rating-counter .about-counter{
	margin-bottom: 5px;
}

.genuine-rating-counter .about-counter h2{
    background: url('../images/genuine-rating-counter-bg.jpg');
    background-size: cover;
	background-clip: text;
    -webkit-text-fill-color: transparent;
	font-size: 80px;
	font-weight: 900;
}

.genuine-rating{
	margin-bottom: 20px;
}

.genuine-rating ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.genuine-rating ul li{
	margin-right: 5px;
}

.genuine-rating ul li:last-child{
	margin-right: 0;
}

.genuine-rating ul li i{
	color: var(--accent-color);
}

.genuine-rating-counter-content p{
	text-transform: capitalize;
	margin: 0;
}

.fancy-btn {
    display: inline-flex
;
    align-items: center;
    justify-content: space-between;
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    background-color: #f1c40f;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.fancy-btn .circle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff;
    color: #000;
    display: flex
;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    transition: all 0.3s ease;
}
.fancy-btn:hover {
    background-color: #fff;
    color: #0d1a3f;
    border: 2px solid #f1c40f;
}
/* .fancy-btn:hover .circle-icon {
    background-color: #f1c40f;
    color: #fff;
    margin-left: 0;
    margin-right: 12px;
    order: -1;
} */
.product_tabs_main {
    width: 100%;
    height: 100%;
    display: flex
;
    justify-content: center;
    align-items: center;
}
.stats-section {
    background-image: url('https://angelseaircargo.com/lnm-auto/wp-content/themes/lmn-auto/assets/images/slider.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
  }

  .our-story-counter h3 {
    font-size: 56px;
    line-height: 66px;
    text-align: center;
    color: #F4C500;
    margin: 12px 0;
}
  .stats-overlay {
    background-color:#0065A8B2; /* Dark blue overlay */
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .stat-icon {
    /* font-size: 24px; */
    width: 70px;
    height: auto;
    margin: 0 auto;
}
  .stats-content {
    position: relative;
    z-index: 2;
  }

  .stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .stat-title {
    font-size: 20px;
    margin-top: 0;
    line-height: 30px;
}

  .stat-block {
    border-right: 2px solid rgba(255, 255, 255, 0.2);
  }

  .stat-block:last-child {
    border-right: none;
  }

  @media (max-width: 767px) {
    .stat-block {
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      margin-bottom: 30px;
    }
  }
  .team-image {
    position: relative;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}
.team-image a {
    display: block;
    color: #fff;
}
.team-image figure {
    position: relative;
}
.team-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 71.93%, rgba(0, 0, 0, 0.8) 95.83%);
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}
.team-image img {
    width: 100%;
    aspect-ratio: 1 / 0.85 !important;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s ease-in-out;
}
.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;
}
.team-member-item .team-social-icon {
    bottom: 20px;
    transform: translateY(0);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 20px;
    padding: 10px 30px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 20px;
    margin-right: 20px;
}
.team-content {
    text-align: center;
}
.team-content h3 {
    font-size: 19px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}
.team-social-icon {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    transform: translateY(100%);
    text-align: center;
    z-index: 2;
    transition: all 0.5s ease-in-out;
}
.products_wrapper{
    background-color: #F6F6F6;
}

section.infrastructure-section {
    background: #F4C500;
    background: linear-gradient(180deg, rgba(244, 197, 0, 1) 65%, rgba(246, 246, 246, 1) 49%);
}
section.infrastructure-section.sp .carousel-item.active img {
    width: 100%;
    height: 100%;
    border-radius: 34px;
}
.carousel-img-caption {
    position: absolute;
    bottom: 48px;
    left: 0;
    background: #00000066;
    font-weight: ;
    font-size: 24px;
    line-height: 34px;
    padding: 24px 78px 24px 34px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    color: #fff;
}
section.infrastructure-section .left-border.nls {
    border-color: #fff;
}
.all_pro_wrapper .col-md-4 {
    margin-bottom: 34px;
}
.widget-content {
    position: sticky;
    top: 100px;
}
.post-featured-image {
    margin-bottom: 24px;
    /*height: 300px;*/
}
.post-featured-image img {
    width: 100%;
    height: 100%;
}
.about-content {
    width: 90%;
}
.post-item-content h2 a {
    color: #000;
}
.post-item-content h2 {
    font-size: 20px;
    line-height: 30px;
}
.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;
}
.main_title_wrapper {
    display: flex;
    justify-content: space-between;
}
.map-wrapper.mx-auto {
    text-align: center;
}
.cients_wrapper.sp {
    background: #F6F6F6;
}

.footer-links ul li{
    margin-bottom: 12px;
}

.footer-copyright{
    padding: 30px 0;
    margin-top: 30px;
}
.footer-links ul li a {
    color: #fff;
}
.main-footer {
    background: #1E2956;
    padding: 100px 0 0;
}
.footer-links ul, li{
    color: #fff !important;
}
.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links h3 {
    font-size: 24px;
    line-height: 34p;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 18px;
}
.footer-copyright {
    text-align: center;
    border-top: 1px solid var(--dark-divider-color);
    padding: 25px 0 48px;
}
.footer-copyright-text p {
    color: var(--white-color) !important;
    margin: 0;
    text-align: left;
}
.footer-social-links {
    text-align: left;
    margin-top: 24px;
}
.footer-social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-social-links ul li {
    display: inline-block;
    border-radius: 50%;
    margin-right: 15px;
}
.footer-social-links ul li a {
    background: #fff;
}
.footer-social-links ul li a {
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex
;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a i {
    color: #1E2956 !important;
}
.footer-social-links ul li a i {
    color: var(--accent-color);
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}


.footer-copyright .col-lg-12 {
    display: flex
;
    justify-content: space-between;
    align-items: center;
}
/* About page */
section.no-padding.bg-breadcrump {
    padding: 18px;
}
.bg-breadcrump {
    background:linear-gradient(135deg, rgb(24 35 51) 42%, rgb(247, 245, 239) 0%);
}
.all-pages-breadcrump {
    display: flex
;
    justify-content: space-between;
    align-items: center;
}
.heading-breadcrump h1 {
    font-size: 25px;
    color: #fff;
    position: relative;
    line-height: 35px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0;
}
.menu-breadcrump ul {
    padding: 0;
    margin: 0;
    display: flex
;
}
.right > ul:last-child a {
    color: #000;
}
.nav-links li a:hover {
    background: #3A3B3C;
    color: #fff;
}
.all_pro_content .section-title h2.map-title.text-start.mb-3 {
    color: #2783c0;
}
.menu-breadcrump ul li:first-child {
    margin: 0;
}
.menu-breadcrump ul li {
    list-style: none;
    margin-left: 18px;
    font-size: 15px;
    line-height: 21px;
    /*font-family: 'Lato', sans-serif;*/
    font-weight: 500;
    color:#fff !important;
    position: relative;
}
.menu-breadcrump ul li a {
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    line-height: 21px;
    color:#fff !important;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}
.menu-breadcrump ul li::after {
    content: '\f105';
    position: absolute;
    font-size: 15px;
    line-height: 21px;
    color: #000 !important;
    font-family: 'Font Awesome 5 Free';
    margin-left: 2px;
    font-weight:900;
}
.menu-breadcrump ul li:last-child:after{
    display: none;
}
section.internal_page_banner img {
    height: 100%;
    width: 100%;
}

section.internal_page_banner {
    padding-top: 60px;
}
/* section.internal_page_banner {
    height: 35vh;
} */
.sp_int{
    padding: 100px 0;
}

.about_content {
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 85%;
    height: 100%;
}

section.about_wrapper.sp_int .container .row:nth-child(even) .about_content {
    margin-left: auto;
}
section.about_wrapper.sp_int .container .row:nth-child(even) {
    flex-direction: row-reverse;
}
.internal_about_image {
    border-radius: 24px;
    overflow: hidden;
}

.about_content .section-title {
    margin-bottom: 0;
}
.values_wrapper p{
    font-weight: 500;
}
.values_wrapper {
    display: grid
;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid #c9c9c9;
    border-radius: 34px;
}

.value_item:last-child {
    padding: 0;
}
.value_item:last-child .value_icon{
	margin-bottom: 0;
}
.value_item p {
    font-size: 16px;
    line-height: 26px;
}
.value_item {
    border-right: 1px solid #c9c9c9;
    border-bottom: 1px solid #c9c9c9;
}
.value_item h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 14px;
}
.value_item .value_icon {
    margin-bottom: 24px;
}
section.our_values_wrapper.sp_int {
    background: #f6f6ff;
}


.our-history {
    background: #f5f5f5;
	padding:70px 0;
}
.our-history-box {
    display: flex
;
    flex-wrap: wrap;
    align-items: flex-start !important;
    gap: 50px;
}
.product-menu {
    background: #f5f5f5;
    border-left: 3px solid #fbc800;
    position: sticky;
    top: 50px;
}
.product-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
        display: block;
    border-bottom: none;
}
.product-menu h2 {
    padding-left: 20px;
    margin-bottom: 20px;
    margin-bottom: 48px !important;
}
.our-history-image {
    padding-top: 100px;
}
.product-menu li button.active {
    background: #fbc800 !important;
    font-weight: bold;
    border-radius: 0px 30px 30px 0px;
    display: flex
;
    padding: 14px 98px 14px 24px;
    /* justify-content: space-between; */
    /* align-items: center; */
    color: #000 !important;
    display: flex;
    position:relative;
    padding: 14px 98px 14px 24px;
    text-align: left !important;
    font-size: 19px;
       margin-bottom: 0 !important;
    font-weight: 700 !important;
}

section.our-blog.sp .section-title {
    margin-bottom: 24px;
}
.product-menu li button {
    padding: 12px 15px;
    font-size: 16px;
    color: #000;
    background: transparent;
    cursor: pointer;
    color: #000 !important;
    padding: 14px 98px 14px 24px;
    text-align: left !important;
    font-size: 19px;
    margin-bottom: 12px;
    font-weight: 500 !important;
    position:relative;
}
.product-menu li button.active {
    background: #fbc800;
    font-weight: bold;
    border-radius: 0px 30px 30px 0px;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    color: #000 !important;
}
.our-history-image figure {
    display: block;
    border-radius: 40px;
    overflow: hidden;
}
.our-history-image img {
    width: 100%;
    aspect-ratio: 0 / 0.96 !important;
    object-fit: contain !important;
    border-radius: 40px;
}
.our-history-image img {
    width: 100%;
    aspect-ratio: 1 / 0.96;
    object-fit: cover;
    border-radius: 40px;
}
.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;
}
.value_item {
    border-right: 1px solid #c9c9c9;
    border-bottom: 1px solid #c9c9c9;
    padding: 30px;
}

/* Remove right border from every 3rd item */
.value_item:nth-child(3n) {
    border-right: none;
}


.product_category_item {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    margin-bottom: 42px;
}
/*.product_category_item .product_category_image:before {*/
/*    position: absolute;*/
/*    content: '';*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: #176fa700;*/
/*    z-index: 9;*/
/*    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(30, 190, 237, 0.13) 53%, rgba(2, 22, 28, 0.66) 81%);*/
/*}*/
.product_category_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product_category_image {
    position: relative;
    height: 290px;
}
/*.product_category_item.wow.fadeInUp:hover .product_category_wrap {*/
/*    position: absolute;*/
/*    background: #00000063;*/
/*    color: #fff !important;*/
/*    transition: all 0.8s ease;*/
/*    width: 100%;*/
/*    height: max-content;*/
/*}*/
.product_category_wrap {
    position: inherit;
    bottom: 0;
    padding: 44px 24px;
    z-index: 9;
    color: #000;
    width: 100%;
    /* height: 100%; */
    background: #eee;
    transition: all 0.8s ease;
}
.product_category_wrap h3 {
    font-size: 28px;
    line-height: 42px;
    /* margin-bottom: 24px; */
    color: #000;
    margin-bottom: 12px;
}
.product_category_wrap p {
    color: #fff;

}

.product_category_item .product_category_image img {
    transform: scale(1);
    transition: all 0.8s ease-in-out;
}
.product_category_item:hover .product_category_image img {
    transform: scale(1.2);
    transition: all 0.8s ease-in-out;
}
.single_lastest_blogs h2 {
    margin-bottom: 0;
}
.product_category_wrap:hover p {
    height: auto;
    opacity: 1;
    transition: all 0.8s ease-in-out;
}
.product_category_wrap p {
    color: #fff;
    /*height: 0;*/
    /*opacity: 0;*/
    transition: all 0.8s ease-in-out;
	margin-top: 24px;
}


.product-range-outer .cate-pg.sp:not(:last-child) {
    padding-bottom: 0;
}
.prod-pg-box {
    position: relative;
    background-color: #e3e3e3;
    height: 100%;
    border-radius: 12px;
    padding: 20px;
    overflow: hidden;
}
.prod-pg-box img {
    border-radius: 24px;
    /*margin-bottom: 10px;*/
    transition: all 0.5s;
}
.prod-pg-box h5 {
    font-weight: 600;
    text-align: center;
    color: #222;
}
section.cate-pg.sp .col-md-3 {
    margin-bottom: 34px;
}
.product-range-outer .section-title {
    margin-bottom: 64px;
}
.prod-pg-box:hover h5 {
    color: #fff;
}
.prod-pg-box:hover {
    background: #FF9900;
    color: #fff;
    transition: all 0.8s ease;
    cursor: pointer;
}
.about_bottom_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 24px;
}

.logo:before {
    content: '';
    position: absolute;
    background: #fff;
    bottom: -12px;
    left: 0px;
    width: 110px;
    height: 27px;
    border-radius: 50%;
    z-index: -1;
    padding: 44px;
}
.logo {
    width: 440px;
    position: relative;
    top: 7px;
    margin-right: auto;
}
nav {
    top: 0;
    background: #fff;
    padding-left: 7%;
}
.about_bottom_image {
    position: absolute;
    bottom: -70px;
    width: 75%;
    right: -25%;
    /*height: 65%;*/
    background: #fff;
    padding: 15px;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
}
.about_main_image {
    position: relative;
	border-radius: 24px;
	overflow: hidden;
}

section.stats-section.mt-3.sp .row.text-center.gapsty{
     display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 equal columns */
    gap: 16px; /* space between items, adjust as needed */
}
.about_main_wrappper {
    position: relative;
}
.about-content h2.map-title.text-start.mb-3 {
    font-size: 36px;
    line-height: 46px;
}
/* .about-us {
    /* height: 80vh; 
    padding-bottom: 130px;
/*     margin-bottom: 100px; 
} */
.about-content {
    width: 90%;
    margin-left: auto;
}
.about_main_wrappper {
    position: relative;
    width: 80%;
    /*margin:0 auto;*/
}
section.stats-section.mt-3.sp .row.text-center.gapsty {
    justify-content: center;
}


.latest_wrap {
    border: 1px solid #e6e9eb;
    /* background: #eeeeee87; */
}


.latest_item_main {
    padding: 48px;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.latest_image {
    width: 100%;
    height: 100%;
    position: relative;
    margin-bottom: 34px;
}


.latest_image img {
    width: 100%;
    height: 100%;
}

.latest_image .arrow_wrapper {
    position: absolute;
    bottom: 0;
    background: #e9e9e9;
    width: 110px;
    height: 70px;
}
.latest_content h3 {
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 14px;
}
.latest_content h2 {
    margin-bottom: 0;
}
.latest_content h2 {
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 24px;
}

.latest_item_main:hover {
    background: #fbc800;
}
.inner-box img {
    width: 100%;
    object-fit: cover;
}
.Single-news-content {
    padding-top: 60px;
    width: 90%;
    margin: 0 auto;
}
section.latest_blogs_wrapper.sp_int .latest_wrap .col-md-4 {
    padding: 0;
    margin: 0;
}
.arrow_wrapper i {
    font-size: 29px;
    line-height: 40px;
    display: flex
;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #271458;
}
.latest_wrap .latest_content h2 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
}
.latest_wrap .latest_image {
    height: 300px;
    margin-bottom: 24px;
}
.latest_wrap  .latest_item_main {
    width: 100%;
    height: 100%;
}

section.latest_blogs_wrapper.sp_int .latest_image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    max-width: inherit !important;
}
section.single-news-new.sp_int {
    padding-top: 60px;
}
.Single-news-content h2 {
    text-transform: inherit;
    letter-spacing: 0;
    color: #111;
    /*font-family: Lato;*/
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: 52px;
}

.Single-news-content h6 {
    color: #fbc800;
    /*font-family: Lato;*/
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    margin: 20px 0;
}
.Single-news-content p {
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 31px;
}

section.our-blog.sp.int_blog {
    background: #eee;
}

.awards_recognition_grid {
    display: grid
;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.awards_recognition_box {
    display: flex
;
    gap: 36px;
    border: 1px solid #cccccc45;
    border-radius: 18px;
    box-shadow: 0 8px 32px #fbaf3f1a;
    padding: 24px 32px;
    animation: 0.6s ease 0s 1 normal forwards running fadeInUp;
}
.awards_recognition_box img {
    height: 260px;
    border-radius: 18px;
}

.awards_recognition_cnt h4 {
    font-size: 20px;
    line-height: 28px;
    color: #000;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 18px;
}



.facility_image {
    width: 100%;
    height: 70vh;
	
}
.facility_image img {
    width: 100%;
    height: 100%;
}
.faclity_wrapper .col-md-6 {
    margin: 0;
    padding: 0;
}
.facility_content {
    background: #4d94c2db;
    padding: 48px 64px;
    width: 100%;
    height: 100%;
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.facility_content p{
	color: #fff;
}
section.infrastructure-section.sp_int {
    background: #F4C500;
    background: linear-gradient(180deg, rgb(255 255 255) 55%, #e9e9e9 49%);
}
.top_content p {
    font-size: 22px;
    line-height: 33px;
    /* color: #fff; */
    width: 80%;
    margin: 0 auto 48px;
    text-align: center !important;
}




/* header */
.logo {
    /*width: 340px;*/
    position: relative;
}


nav{
  position: fixed;
  z-index: 99;
  width: 100%;
}
.right {
    display: flex
;
    flex-direction: column;
    align-items: flex-end;
    /* row-gap: 10px; */
    /* height: 60%; */
    width: 50%;
    margin: auto;
}
.right > ul{
    margin: unset !important;
    padding: 10px 0px;
    position: relative;
    justify-content: end;
    width: max-content;
}

.right > ul:first-child:before, .right > ul:first-child:after {
    background-color: #182333;
    z-index: -1;
}
.right > ul:before {
    content: "";
    position: absolute;
    top: 0;
    left: -8%;
    width: 100%;
    height: 100%;
    transform: skewX(-45deg);
}
.right > ul:after {
    content: "";
    position: absolute;
    top: 0;
    right: -70%;
    width: 100%;
    height: 100%;
}
.logo img {
    width: 100%;
}
.right > ul:after {
    content: "";
    position: absolute;
    top: 0;
    right: -60%;
    width: 100%;
    height: 100%;
}
.right > ul:first-child:before, .right > ul:first-child:after{
    background-color:#182333 ;
    z-index: -1;
}
.right > ul:first-child{
    background-color:#182333 ;
}
.right > ul:last-child:before, .right > ul:last-child:after{
    background-color: #fbc700;
    z-index: -1;
}
.right > ul:last-child{
    background-color: #fbc700;
}
nav .wrapper {
    position: relative;
    /*max-width: 1320px;*/
    padding: 0px 10px;
    /* height: 70px; */
    /* line-height: 70px; */
    /* margin: auto; */
    display: flex
;
    align-items: center;
    justify-content: space-between;
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a {
    color: #f2f2f2;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.nav-links li a:hover{
  background: #3A3B3C;
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu {
    position: absolute;
    background: #182333;
    width: 250px;
    line-height: 45px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    padding: 0;
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 45px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 500;
  border-radius: 0px;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}
nav {
    top: 0;
    background: #fff;
}
@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}

.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 45px;
  font-weight: 600;
}



/*  */

.products-description-wrapper h2 {
    font-size: 32px;
    text-align: left;
    margin-bottom: 24px;
}
.products-description-wrapper p {
    color: #000;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 15px;
}


.services-categories {
    position: relative;
}
.services-categories li {
    position: relative;
    margin-bottom: 5px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.services-categories li.active a, .services-categories li a:hover {
    border-color:#182333;
    background-color: #182333;
}
.services-categories li.active a, .services-categories li a:hover {
    color: #ffffff;
    border-color: #182333;
    background-color: #182333;
}
.services-categories li a {
    color: #001e57;
}
.awards_recognition_cnt p {
    font-weight: 500;
}
.products-description-wrapper {
    background: #eeeeee73;
    padding: 34px;
}
.services-categories li a {
    position: relative;
    color: #001e57;
    font-size: 17px;
    font-weight: 500;
    display: block;
    background-color: #f3f5f9;
    border-bottom: 1px solid #9eaac0;
    padding: 10px 15px 10px 30px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.services-categories li.active a:before, .services-categories li:hover a:before {
    color: #ffffff;
}
.services-categories li a:before {
    position: absolute;
    content: '\f105';
    right: 22px;
    top: 12px;
    color: #000048;
    font-size: 25px;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}
.pro_description ul {
    list-style: disc;
    color: #000;
    padding-left: 44px;
}
.pro_description ul li {
    font-size: 18px;
    line-height: 28px;
    color: #000 !important;
    margin-bottom: 10px;
}
section.cate-pg.sp .section-title {
    margin-bottom: 24px;
}


.informations {
    padding: 28px 0;
    display: flex
;
    border-bottom: 1px solid var(--gray-ex-lite);
}

.info-icons {
    width: 41px;
    height: 45px;
    margin-right: 15px;
}
.info-icons img {
    width: 100%;
}

.informations h5 {
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
}
.info-icons img {
    width: 100%;
    filter: hue-rotate(156deg);
}
.informations a {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    margin-right: 10px;
    letter-spacing: 0;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.form-contactus-page-main {
    background-color: #eeeeee75;
    padding: 45px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}


.form-inputs h5 {
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 14px;
}


.form-inputs input, textarea {
    font-size: 18px;
    width: 100%;
    height: 50px;
    outline: none;
    padding: 15px;
    background: #fff;
    border: solid 1px #fff0;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal;
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin-bottom: 24px;
}

/*.product_category_item.wow.fadeInUp:hover::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    background: #0e131abd;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    transition: all 0.8s ease-in-out;*/
/*}*/

/*.product_category_item.wow.fadeInUp:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    background: #0e131abd;*/
/*    width: 100%;*/
/*    height: 0%;*/
/*    transition: all 0.8s ease-in-out;*/
/*}*/
/*.product_category_item:hover p {*/
/*    height: 100% !important;*/
/*    opacity: 1 !important;*/
/*    margin-bottom: 24px !important;*/
/*}*/
.privacy_main p {
    margin-bottom: 19px;
	   color: #000000e8 !important;
	 font-weight: 400;
}
.privacy_main h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 22px;
}
.privacy_main h2 {
    font-size: 42px;
    line-height: 32px;
    margin-bottom: 25px;
}
.privacy_main ul li {
    color: #000000e8 !important;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 12px;
    font-weight: 400;
}
.products_category_wrapper.sp_int .product_category_wrap p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 17px;
    color: #000;
    /*opacity: 0;*/
    /*margin-bottom: 0;*/
    /*height: 0;*/
}
.clients-logo {
    min-height: 150px;
    border: 1px solid #ccc;
    display: flex
;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
    margin-bottom: 30px;
    transition: all 0.5s;
}
.clients-logo:before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff0;
    position: absolute;
    z-index: -1;
    transition: all 0.5s;
    transform: scale(0);
}
.cr_content p {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 0;
}
.cr_content {
    width: 60%;
    margin: 0 auto;
    text-align: center;
}
input#formFile {
    height: 60px;
    padding-left: 30px;
}
.clients-logo img {
    width: 100%;
    transition: all 0.5s;
}
section.cate-pg.sp .col-md-8 {
    padding-left: 42px;
}
/**.services-categories li a{
	    padding: 24px;**/
}

.career-form-parent {
    width: 75%;
    margin: 0 auto;
}
.request-a-quote-page-main {
    background-color: #f7f5ef;
    padding: 48px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin-top: 58px;
}

.form-inputs-submit button:hover {
    background: #1E2956;
    color: #fff;
    border-color: transparent;
    transition: all 0.8s ease;
}
.form-inputs-submit button {
    border: 1px solid #1E2956;
    padding: 10px 44px;
    background: transparent;
    font-size: 16px;
    transition: all 0.8s ease;
}


section.all_products_wrapper .facility_tabs_wrapper {
    background: none !important;
}

.facility_tabs_wrapper {
    background: #000;
    padding: 24px 0 0;
    text-align: center;
    border-bottom-left-radius: 24px;
    overflow: hidden;
    border-bottom-right-radius: 24px;
}
.facility_tabs_wrapper ul#myTab {
    border-bottom: 1px solid transparent;
    margin-bottom: 32px;
    margin: 0 auto;
    justify-content: center;
    background: #eee;
    padding: 6px;
}
.tabs_maunfucturings {
    position: relative;
    padding: 70px 0 0 !important;
    margin-top: 58px;
}
.certificates_main {
    display: grid
;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding-left: 0;
}
.certicificate_main_item {
    margin-bottom: 0;
}
.certicificate_main_item h3 {
    font-size: 15px;
    line-height: 23px;
    text-align: center;
    padding: 24px 0;
    /* font-weight: 400; */
}
div#profile-tab-pane11 .about_image_content {
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    height: auto;
}
div#profile-tab-pane11 .about_image_content p {
    color: #000;
}

div#profile-tab-pane11 .col-md-8 p {
    width: 90%;
    margin-left: auto;
    margin-top: 24px;
}
.about_image_content {
    display: flex
;
    flex-direction: column;
    justify-content: flex-start;
    align-items: normal;
    width: 100%;
    height: 100%;
    text-align: left;
}
.tabs_maunfucturings {
    position: relative;
    padding: 70px 0;
/*     background: #f3f3f3; */
    z-index: -9;
}
.about_image_content ul li {
    color: #000 !important;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}
.about_image_content ul {
    list-style: disc;
    padding-left: 24px;
}
.about_image_content h3 {
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 12px;
}
/* .about_image_content p {
    font-size: 22px;
    line-height: 37px;
    color: #000;
} */

textarea {
    height: 100px;
    resize: none;
}
.story_wrapper.about_wrapper .about_image {
    width: 80%;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden !important;
    /*height: 50%;*/
    display: flex
;
    justify-content: center;
    align-items: normal;
}
.about_image img {
    border-radius: 24px;
}
.facility_tabs_wrapper ul li button:hover {
    border: 1px solid transparent !important;
    color: #1E2956;
}
.facility_tabs_wrapper ul li .nav-link.active {
    position: relative;
    font-weight: 700;
    color: #1E2956;
    background: transparent;
    border: 1px solid transparent;
}

.facility_tabs_wrapper ul li .nav-link.active:before {
    content: "";
    position: absolute;
    top: 22px;
    left: 35px;
    background: #1E2956;
    border-radius: 50%;
    width: 12px;
    height: 12px;
}
.facility_tabs_wrapper ul li button {
    display: inline-block;
    background: transparent;
    border: 1px solid transparent;
    color: #726c72;
    font-size: 22px;
    line-height: 32px;
    margin: 0;
    padding: 12px 64px;
    font-weight: 700;
}
.tabs_maunfucturings {
    position: relative;
    padding: 70px 0;
}

.tabs_maunfucturings:before {
    content: "";
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    background: #0c1d2c;
    z-index: -9;
    border-top-right-radius: 54px;
    border-bottom-right-radius: 54px;
}
.main_title h2 {
    font-weight: 700;
    font-size: clamp(32px, 2.8vw, 56px);
    line-height: 1.2;
    letter-spacing: 0%;
    margin-bottom: 24px;
}
div#home-tab-pane .main_title {
    margin-bottom: 48px;
}
.facilty_wrapper .story_wrapper.about_wrapper {
    margin-bottom: 74px;
}

.all_pro_wrapper .col-md-6 {
    margin-bottom: 34px;
}



section.no-padding.bg-breadcrump {
    padding: 18px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #2d56af00;
    background: #090979;
    background: linear-gradient(90deg, rgb(0 0 0 / 48%) 0%, rgb(0 212 255 / 25%) 100%);
    width: 100%;
    height: 100%;
    display: flex
;
    justify-content: flex-end;
    align-items: flex-end;
    background: #090979;
    background: linear-gradient(181deg, rgb(0 95 135 / 0%) 0%, rgb(25 172 215 / 58%) 61%);
    background: linear-gradient(180deg, rgb(255 255 255 / 0%) 0%, rgba(110, 213, 244, 0.58) 74%, rgb(1 182 235 / 46%) 98%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(120, 216, 244, 0) 59%, rgb(30 190 237 / 58%) 89%, rgba(1, 182, 235, 1) 100%);
	    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(30, 190, 237, 0.13) 53%, rgba(2, 22, 28, 0.66) 81%);
}
	.all-pages-breadcrump {
  
    justify-content: flex-end;
}
	.internal_page_banner{
		position:relative;
	}
	

.menu-breadcrump ul li::after {
    content: '\f105';
    position: absolute;
    font-size: 22px;
    line-height: 21px;
    color: #000 !important;
    font-family: 'Font Awesome 5 Free';
    margin-left: 10px;
    font-weight: 900;
    margin-top: 2px;
}
	.menu-breadcrump ul li{
    margin-right: 10px;
}
	.menu-breadcrump ul li:first-child {
    margin-right: 10px;
}
	
	.menu-breadcrump ul li::after {
   
    color: #fff !important;
   
}


section.all_products_wrapper.manufacturing_wrapper.sp_int {
    padding-top: 60px;
}

.all_pro_wrapper.pro_infra .prod-pg-box:hover {
    background: #e3e3e3;
}
.heading-breadcrump h1 {
    display: none;
}
nav {
    top: 0;
    background: #fff;
    /*box-shadow: 2px 2px 19px 2px #d9d9d9;*/
}

	
.main_wrap .menu-breadcrump ul li {
    margin-left: 18px;
    font-size: 15px;
    line-height: 25px;
     color: #000 !important;
}
	
.main_wrap	.menu-breadcrump ul li a {
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    line-height: 25px;
		  color: #000 !important;
	}
	.heading-breadcrump {
    display: none;
}
.main_wrap {
    margin-top: 100px;
    /* background: #1a1f34; */
    padding: 24px 0 0;
    color: #000 !important;
}
.main_wrap .all-pages-breadcrump {
    justify-content: flex-end;
    border-bottom: 1px solid #00000054;
    padding-bottom: 18px;
}

.main_wrap .heading-breadcrump h1 {
    display: block;
    color: #000 !important;
}
.right > ul:first-child li a.desktop-item {
    padding: 10px;
}
.menu-breadcrump ul li{
    color:#000;
}
section.cate-pg.sp {
    padding-top: 60px;
}
.menu-breadcrump ul li a{
    color:#000;
}
.main_wrap .menu-breadcrump ul li::after {
    color: #000 !important;
    margin-top: 4px;
}
.carousel-control-next-icon, .carousel-control-prev-icon{
    height:7rem;
}
	
	
	button.carousel-control-prev {
    width: 70px;
    height: 70px;
    display: flex
;
    justify-content: center;
    align-items: center;
    background: #000000c4;
    padding: 12px;
    margin-top: 20%;
    opacity: 1;
}
.all_pro_wrapper.pro_infra .prod-pg-box {
    background: none;
    padding: 0;
}
button.carousel-control-next {
    width: 70px;
    height: 70px;
    display: flex
;
    justify-content: center;
    align-items: center;
    background: #000000c4;
    padding: 12px;
    margin-top: 20%;
    opacity: 1;
}
.post-featured-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: inherit !important;
}
.pro_description h2 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 12px;
}

.pro_description h3{
     font-size: 26px;
    line-height: 36px;
    margin-bottom: 12px;
}
.post-featured-image {
    margin-bottom: 24px;
    height: 300px;
}

.post-featured-image figure {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
}
.post-featured-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: inherit !important;
}
.inner-box img {
    height: 100%;
}
section.single-news-new.sp_int .inner-box {
    height: 75vh;
}
.unocal-content p {
    color: #fff;
}
section.bg-content.sp_int img {
    height: 70vh;
}
nav.sticky {
    box-shadow: 2px 2px 19px 6px #d9d9d9;
}

section.bg-content img {
    width: 100%;
    position: relative;
}

section.stats-section.int_stats.mt-3.sp {
    top: 80px;
}
.unocal-content {
    position: absolute;
    background: #373588;
    width: 35%;
    padding: 50px 60px;
    bottom: 10px;
}
section.bg-content.sp_int {
    position: relative;
    padding: 0;
}
section.bg-content.vision.content.sp_int h2.map-title.text-start.mb-3 span {
    color: #fff;
}

section.bg-content.vision.content.sp_int h2.map-title.text-start.mb-3 {
    color: #fff;
}

section.bg-content.vision.content.sp_int {
    padding: 180px 0 !important;
}
section.bg-content.vision.content h2.map-title.text-start.mb-3 span {
    color: #fff;
}

section.bg-content.vision.content h2.map-title.text-start.mb-3 {
    color: #fff;
}
section.bg-content.sp_int.vision_wrap {
    padding: 100px 0;
}
section.bg-content{
    height:100vh;
}
section.bg-content.sp_int.vision_wrap h2.map-title.text-start.mb-3 {
    color: #fff;
}
section.bg-content.vision.content.sp_int {
    padding: 100px 0;
}
section.about_wrapper.sp_int .about_content {
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 65%;
    height: 100%;
}

section.bg-content.sp_int.vision_wrap .section-title span {
    color: #fff;
}
section.bg-content img {
    width: 100%;
    position: relative;
}
section.bg-content.sp_int.vision_wrap {
    padding-top: 70px;
}

section.bg-content.vision.content.sp_int .unocal-content {
    right: 14%;
}
.accordion-button{
    font-size:20px;
}
.accordion-button::after {
    filter: invert(1);
}
section.values_wrapper_main.sp {
    background: #eee;
    margin-top: 100px;
}

.accordion-button .stat-icon {
    /* font-size: 24px; */
    width: 40px;
    height: auto;
    margin: 0 auto;
    margin-right: 13px !important;
    margin: unset;
}
section.values_wrapper_main.sp {
    background: #eee;
    margin-top: 100px;
}
button.accordion-button.collapsed {
    background: #0065A8;
    color: #fff;
    border-bottom: 1px solid #eeeeee59;
}
.accordion-button:focus{
    box-shadow:none;
}
.accordion-button:not(.collapsed) {
    background: #0065A8;
    color: #fff;
    border-bottom: 1px solid #eeeeee59;
}
section.bg-content.vision.content.sp_int img {
    height: 70vh;
    width: 70%;
}

section.bg-content.vision.content.sp_int {
    height: 90vh;
}
section.bg-content.sp_int.vision_wrap img {
    width: 70%;
    margin-left: 30%;
}
section.bg-content.vision.content.sp_int .unocal-content {
    right: 14%;
	 position: absolute;
    background: #373588;
    width: 35%;
    padding: 50px 60px;
    bottom: 50%;
    transform: translateY(70%);
}
section.bg-content.sp_int.vision_wrap {
    padding-top: 70px;
    padding-bottom: 0;
    height: auto;
}
section.bg-content.sp_int {
    padding: 0;
    height: auto;
}
section.bg-content.sp_int img {
    width: 70%;
}
section.bg-content.sp_int .unocal-content {
    position: absolute;
    background: #373588;
    width: 35%;
    padding: 50px 60px;
    bottom: 50%;
    right: 15%;
    transform: translateY(50%);
}
section.about-us.sp {
    /* padding-top: 30px; */
    padding: 10px 0 140px;
}
section.bg-content.sp_int.vision_wrap .unocal-content {
    left: 15%;
    transform: translateY(60%) !important;
}
section.bg-content.sp_int.vision_wrap .unocal-content {
	 position: absolute;
    background: #373588;
    width: 35%;
    padding: 50px 60px;
    bottom: 50%;
    transform: translateY(40%);
}

.single_lastest_blogs h2 {
    margin-bottom: 0;
}


/* Styling for Swiper Navigation Arrows */

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;       /* Width of the arrow button */
    height: 50px;      /* Height of the arrow button */
    background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent white background */
    border-radius: 50%; /* Makes the button a circle */
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #182333;   /* Arrow color */
    transition: background-color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #fbc700; /* Yellow background on hover */
    color: #fff;               /* White arrow on hover */
}

/* Positioning the buttons */
.swiper-button-prev {
    left: 20px; /* Distance from the left edge */
}

.swiper-button-next {
    right: 20px; /* Distance from the right edge */
}
.swiper-button-prev {
    background: #182333;
    width: 50px;
    height: 50px;
    padding: 12px;
}
.swiper-button-next {
    background: #182333;
    width: 50px;
    height: 50px;
    padding: 12px;
}
/* This creates the actual arrow shape using Swiper's built-in method */
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    font-size: 22px;
	color:#fff;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: 'next';
	font-size: 22px;
	color:#fff;
}
.image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    overflow: hidden;
}
.pro_description .certicificate_main_item h3 {
    font-size: 15px;
    line-height: 23px;
    text-align: center;
    padding: 24px 0;
}
.image {
    margin-bottom: 34px;
}


.innerLinkBox {
    /* min-height: 80vh; */
    border-radius: 12px;
    overflow: hidden;
    display: flex
;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    position: relative;
    gap: 20px;
    row-gap: 20px;
    column-gap: 20px;
}
.innerLinkBox:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
   z-index: 9;
    transition: 0.3s;
}
.innerLinkBox img {
    width: 100%;
    object-fit: cover;
}
.locations_wrapper.sp {
    padding: 0;
}
.innerLinkBox:hover h3 {
    transform: translateY(-100px) scale(1.1);
}
.innerLinkBox h3 {
    font-size: clamp(22px, 4vw, 40px);
    line-height: clamp(28px, 4.1vw, 50px);
    font-weight: 600;
    color: #fff;
    padding-bottom: 20px;
    transition: 0.5s;
    text-align: center;
    width: 70%;
    font-size: 22px;
    line-height: 32px;
    margin: 0 auto;
    position: absolute;
    z-index: 9;
}



/* Scroll to Top Button */
#scrollTopBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place while scrolling */
    bottom: 20px; /* Place at the bottom */
    right: 30px; /* Place on the right */
    z-index: 99; /* Make sure it's on top of other content */
    border: none; /* Remove default border */
    outline: none; /* Remove outline on focus */
    background-color: #007BFF; /* A nice blue background */
    color: white; /* White icon color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 50%; /* Make it a circle */
    width: 55px; /* Set a fixed width */
    height: 55px; /* Set a fixed height */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
    transition: background-color 0.3s, opacity 0.4s, transform 0.3s; /* Smooth transitions */
}

#scrollTopBtn:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-5px); /* Slightly lift the button on hover */
}

/* Style for the SVG icon inside the button */
#scrollTopBtn svg {
    width: 25px;
    height: 25px;
}

.modulegrid {
    display: -ms-grid;
    display: grid
;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.indmodule img {
    width: 92px;
    height: 92px;
}
.indmodule {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    padding: 24px 24px;
    border-radius: 12px;
    opacity: 0.9;
    background: #0065A8;
}
.modulesubheader{
	  max-height: 200px; /* Set the max height for scrolling */
    overflow-y: auto;  /* Enables vertical scrolling if content overflows */
    padding-right: 10px; /* Optional: for some space on the right of the scroll */
	scrollbar-width: thin;  /* For Firefox */
    scrollbar-color: #888 #e0e0e0; /* Dark scroll thumb and light scroll track */
}
.modulesubheader p {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

/* For Webkit browsers (Chrome, Safari) */
.modulesubheader::-webkit-scrollbar {
    width: 8px;  /* Thinner scrollbar */
}

.modulesubheader::-webkit-scrollbar-track {
    background: #e0e0e0;  /* Light background for track */
}

.modulesubheader::-webkit-scrollbar-thumb {
    background-color: #888;  /* Darker color for the thumb */
    border-radius: 10px;  /* Rounded corners for the thumb */
    border: 2px solid #e0e0e0; /* Optional: adds a border for contrast */
}

.modulesubheader::-webkit-scrollbar-thumb:hover {
    background-color: #555;  /* Darker thumb when hovered */
}

.moduleheader {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
	
	
}