/************************************/
/*****     Global Variables    *****/
/************************************/	

:root{
	--primary-color			: #00087d;
	--secondary-color		: #cd9600;
	--text-color			: #81848A;
	--accent-color			: #FF9900;
	--white-color			: #FFFFFF;
	--divider-color			: #EBEBEB;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Manrope", sans-serif;
	--cube-1: cubic-bezier(.25,.46,.45,.50);
    --cube-2: cubic-bezier(0.31, -0.105, 0.43, 1.4);
}

/************************************/
/***** 	    General css		   *****/
/************************************/

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7em;
	color: var(--text-color);
}

p{
	line-height: 1.7em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
}

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

.primary-color {
	color: var(--primary-color);
}

.secondary-color {
	color: var(--secondary-color);
}

/* .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(--secondary-color);
	padding: 2px 40px 2px 2px;
	border: none;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}

.btn-default:hover{
	background-color: var(--secondary-color);
}

.btn-default:hover span {
    color: var(--secondary-color);
}

.btn-default::before{
	content: '';
	position: absolute;
	top: 46%;
	right: 0;
	bottom: 0;
	width: 12px;
	height: 12px;
	background-image: url('../icons/icon-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%;
    background: var(--secondary-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;
	color: var(--white-color);
	padding: 17px 20px;
	overflow: hidden;
	z-index: 1;
	transition: all 0.5s ease-in-out;
}

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

.btn-default span::after{
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: auto;
	right: 0;
    bottom: 0;
	width: 0;
	height: 100%;
    background: var(--white-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);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: linear-gradient(225deg, var(--primary-color), var(--secondary-color));
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 200px;
    width: 200px;
	position: relative;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 3px 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%;
	transform: translate(-50%, -50%);
}
#loading-icon img {
	max-width: 150px;
    height: 80px;
}

@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{
	position: relative;
	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);
    margin-bottom: 15px;
}

/* .section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../icons/icon-sub-heading.svg') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 30px;
    height: 30px;
} */

.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-size: 50px;
	font-weight: 700;
	line-height: 1.2em;
	letter-spacing: -0.01em;
	color: var(--primary-color);
	margin-bottom: 0;
}


.section-title h1 span,
.section-title h2 span{
	font-weight: 700;
}

.section-title p{
	margin-top: 20px;
	margin-bottom: 0;
}

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

@keyframes contactrotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

/* Breadcrumb */

.breadcrumb-area {
    position: absolute;
    bottom: 0;
    background: #fff;
    padding: 15px 31px;
    border-radius: 10px 10px 0 0;
    gap: 33px;
    display: flex;
}
.breadcrumb-area a {
    text-transform: uppercase;
    font-size: 15px;
    font-size: 15px;
    color: #000;
}

.breadcrumb-area a:hover {
    color: var(--primary-color);
}
.breadcrumb-area a.current {
    color: var(--secondary-color);
	font-weight: 600;
    position: relative;
	pointer-events: none;
}

.breadcrumb-area a.current::after {
    position: absolute;
    content: "";
    left: -20px;
    height: 4px;
    width: 4px;
    background: #D9D9D9;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.page-header-box ol li.breadcrumb-item{
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol li.breadcrumb-item.active{
	color: var(--accent-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
	content: "\f111";
    font-family: "Font Awesome\ 5 Free";
	font-size: 6px;
    color: var(--accent-color);
}

/************************************/
/*****        Header css	 	 ****/
/************************************/

.topbar{
	padding: 12px 0;
}

.topbar .site-logo {
	width: 150px;
}

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

.topbar-contact-info ul{ 
	margin: 0;
	padding: 0;
	list-style: none;
}

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

.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: 50px;
	height: 50px;
	background: var(--secondary-color);
	border-radius: 5px;
	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 {
	font-size: 15px;
	color: var(--text-color);
	text-transform: uppercase;
	margin-bottom: 0px;
}
.topbar-contact-info ul li h5 {
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 700;
	/* width: calc(100% - 60px); */
	margin: 0;
}
.topbar-contact-info ul li:hover h5{
	color: var(--secondary-color);
}
.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: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: '\f078';
	font-family: 'Font Awesome\ 5 Free';
	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: 250px;
	position: absolute;
	left: 15px;
	top: 120%;
	background: var(--primary-color);
	border-top: 3px solid #cd9600;
	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: 5px 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(--secondary-color);
	background-color: transparent;
	padding: 4px 20px 4px 23px !important;
}

.header-quote a {
	display: flex;
	align-items: center;
	position: relative;
    z-index: 1;
    overflow: hidden;
	background: var(--secondary-color);
    padding: 20px 50px;
	color: #fff;
    font-size: 18px;
    font-weight: bold;
    
}

.header-quote a::after {
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #32377a;
    transform: translateY(110%);
    transition: 0.3s;
    transition-delay: 0.1s;
    z-index: -1;
}

.header-quote a:hover::after {
	transform: translateY(0);
}

.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(--secondary-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(--white-color);
	box-shadow: 0px 20px 20px 0px #6969693b;
}

.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(--primary-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(--secondary-color);
}

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

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

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'Font Awesome\ 5 Free';
	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);
}

/************************************/
/*******         Home   	  *******/
/************************************/

/* HOME BANNER */
.hero{
	padding: 200px 0 200px;
	position: relative;
}

.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%); */
	background: linear-gradient(270deg, rgb(205 150 0 / 30%), rgb(0 8 125 / 40%) 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-content{
	position: relative;
	z-index: 1;
}

/* HOME ABOUT SECTION */
.home-about {
	padding: 100px 0;
}
.home-about-img {
	position: relative;
	display: flex;
	justify-content: end;
	padding-top: 150px;
	margin-right: 40px;
}

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

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

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

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

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

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

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

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

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

img.logo-circle {
	width: 280px;
}

/* PREMIUM SERVICES SECTION */
.home-services-1{
	position: relative;
}

.home-services-1-bg{
	position: relative;
	background: url('../images/footer-bg.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	padding: 80px 0 80px;
}

.home-services-1-bg:before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, var(--primary-color), var(--secondary-color));
    opacity: 90%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.home-services-1-box{
	border-radius: 10px;
	padding: 0px;
	overflow: hidden;
	z-index: 1;
}
.home-services-1-box .nav-pills li.nav-item {
	margin: 20px 10px;
}
.home-services-1-box .nav-pills button.nav-link {
	/* display: flex;
    align-items: center;
	padding: 25px 30px;
    min-height: 120px;
	text-align: left; */
	display: flex;
	align-items: center;
	padding: 20px;
	min-height: 100px;
	text-align: center;
	background: #e7e7e7;
}

.home-services-1-box .nav-pills button.nav-link.active {
	background: var(--primary-color);
	border-radius: 10px;
}

.home-services-1-box .nav-pills button.nav-link.active  .home-services-1-nav h5 {
	color:#fff;
}

.home-services-1-nav {
	display: inline-flex;
	align-items: center;
}

.home-services-1-nav svg {
	width: 35px;
	margin-right: 15px;
}

.home-services-1-box .nav-pills button.nav-link .home-services-1-nav {
	color: var(--primary-color);
}

.home-services-1-box .nav-pills button.nav-link.active .home-services-1-nav {
	color: var(--white-color);
}
.home-services-1-box .tab-content {
	background: var(--white-color);
	border: 1px solid var(--dark-divider-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 10px;
}

.home-services-1-content {
	/* display: flex;
	align-items: center;
    padding: 25px;
	min-height: 400px; */
	padding: 50px 50px;
    min-height: 400px;
}
.home-services-1-content figure  {
	width: 100%;
	height: 100%;
}
.home-services-1-text-content {
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.home-services-1-content img {
	width: 100%;
	height: 400px;
    object-fit: cover;
    border: 10px solid var(--white-color);
    aspect-ratio: 1 / 1.22;
    object-fit: cover;
    border-radius: 40px;
}

.home-services-1-text-content h4 {
	font-size: 30px;
	margin-bottom: 25px;
}

.home-services-1-text-content ul {
	list-style: none;
	margin-bottom: 20px;
	color: #222;
}

.home-services-1-text-content ul li {
	position: relative;
	margin-bottom:10px;
}

.home-services-1-text-content ul li:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
	left: -35px;
    background: url(../icons/icon-list.svg) no-repeat center left;
    background-size: cover;
}

/* OTHER SERVICES SECTION */
.home-services-2 {
	margin: 120px 0;
}

.home-services-2-item  {
	display: flex;
	align-items: start;
	justify-content: center;
	flex-direction: column;
	position: relative;
    z-index: 1;
    overflow: hidden;
	color: #fff;
	background: var(--secondary-color);
    color: #fff;
    padding: 30px 50px;
    border-radius: 10px;
	min-height: 400px;
}

.home-services-2-item::after {
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: var(--primary-color);
    transform: translateY(0);
    transition: 0.3s;
    transition-delay: 0.1s;
    z-index: -1;
}

.home-services-2-item:hover::after {
	transform: translateY(110%);
}

.home-services-2-item .icon-box {
    background: var(--secondary-color);
    display: inline-flex;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.home-services-2-item .icon-box img {
    width: 50px;
}

.home-services-2-body h3 {
	color: #fff;
	margin-bottom: 15px;
}

/* CERTIFICATION SECTION */
.home-certifications {
	background-color: var(--primary-color);
	margin: 100px 0;
}

.home-certifications-col {
	display: flex;
	justify-content: center;
    align-items: center;
	padding: 50px 40px;
}

.home-certifications-list {
    position: relative;
    z-index: 1;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.home-certifications-item {
	display: inline-flex;
	align-items: center;
}

.home-certifications-item:nth-last-child() {
	margin-bottom: 0px;
}
.home-certifications-item h4 {
	color: var(--white-color);
}

.home-certificate-icon {
	width: 60px;
	margin-right: 20px;
}

.home-certifications-title {
	background: url('https://images.pexels.com/photos/26100225/pexels-photo-26100225/free-photo-of-man-fixing-in-electric-box.jpeg') center/cover no-repeat fixed;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	

}
.home-certifications-title > * {
    position: relative;
    z-index: 1;
	padding: 40px 20px;
}
.home-certifications-title::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--white-color);
    opacity: 0.9;
    z-index: 0;
}
.home-certifications-title h2 {
	font-size: 40px;
}
/* PROJECTS SECTION */
.home-projects {
	margin: 100px 0;
} 

.home-projects .button-net-prev-area {
	position: relative;
}

.home-projects .button-net-prev-area .swiper-button-prev {
	background: var(--primary-color);
    padding: 25px;
	margin-right: 20px;
    border-radius: 10px;
    right: 50px;
    left: auto;
	font-size: 25px;
    color: var(--white-color);
}

.home-projects .button-net-prev-area .swiper-button-next {
	background: var(--primary-color);
    padding: 25px;
    border-radius: 10px;
    right: 0px;
    left: auto;
	font-size: 25px;
    color: var(--white-color);
}

.home-projects .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after, .home-projects .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: '';
}

.swiper-home-project-wrapper .single-home-project {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}
.swiper-home-project-wrapper .single-home-project .inner {
    position: absolute;
    bottom: 0px;
    z-index: 1;
    left: -120%;
    opacity: 0;
    transition: 0.3s;
	width: 100%;
}

.swiper-home-project-wrapper .swiper-slide-active .single-home-project .inner {
    left: 0px;
    opacity: 1;
}
.swiper-home-project-wrapper .single-home-project:hover .inner {
    left: 0px;
    opacity: 1;
}

.swiper-home-project-wrapper .single-home-project:hover .inner {
    left: 0px;
    opacity: 1;
}

.swiper-slide.swiper-slide-active .single-home-project::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 0.5;
}

.swiper-slide .single-home-project:hover::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 0.5;
}

.swiper-slide .single-home-project a img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

.swiper-home-project-wrapper .single-home-project .inner .active-text-area {
	backdrop-filter: blur(20px);
    margin: 15px;
    padding: 40px 30px;
    background: rgba(204, 204, 204, 0.05);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.1);
    border-image: initial;
    border-radius: 10px;
}

.swiper-home-project-wrapper .single-home-project .inner .active-text-area h1 {
    color: #fff;
    font-size: 25px;
    margin-bottom: 15px;
}

.swiper-home-project-wrapper .single-home-project .inner .active-text-area p.disc {
    color: #fff;
    border-bottom: 1px solid #8f8f8f;
    padding-bottom: 15px;
}

.swiper-home-project-wrapper .single-home-project .inner .active-text-area ul li p{
	color:#fff;
	margin-bottom: 5px;
}

/* CLIENT SECTION */
.clients-section {
	margin: 100px 0;
}
.client-logo img {
    height: 200px;
    object-fit: contain;
}

/************************************/
/*****         About Us	        *****/
/************************************/

.about-us{
	padding: 100px 0;
	background: url('../images/about-us-bg.svg') no-repeat;
	background-position: bottom left;
	background-size: 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: 30px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url('../icons/icon-list.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;
}

/* Solutions */
.our-solutions {
	padding: 100px 0;
	background: #f5f5f5;
}

.container-1730 {
	max-width: 1730px;
	margin: auto;
}

.mt-dec--130 {
	margin-top: -130px;
}
.g-24 {
	--bs-gutter-x: 24px;
	--bs-gutter-y: 24px;
}

.solutions-image {
	position: relative;
}

.solutions-image .section-title {
	position: absolute;
	top: 20%;
	left: 10%;
	z-index: 2;
}

.solutions-image .section-title h2,
.solutions-image .section-title h3 {
	color: #FFF;
}

.solutions-bg {
	height: 406px;
	background: 
	linear-gradient(1deg, rgba(0, 8, 125, 0.7), rgba(205, 150, 0, 0.85)), 
    url('../images/about/about-4.jpg') center;
	background-size: cover;
}

.solutions-box {
	padding: 40px;
	position: relative;
	background-color: #fff;
	overflow: hidden;
	display: block;
	border-radius: 10px;
	height: 100%;
	transition: color 0.3s ease-in-out;
  }

  .solutions-box::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #cd9600;
	z-index: 0;
	transform: translateX(-100%);
	transition: transform 0.5s ease-in-out;
  }

.solutions-box:hover::before {
	transform: translateX(0%);
}

.solutions-box:not(:hover)::before {
	transform: translateX(-100%);
}

.solutions-box > * {
	position: relative;
	z-index: 1;
	transition: color 0.3s ease-in-out;
  }
  
.solutions-box:hover h3,
.solutions-box:hover p {
	color: #fff;
}

.solutions-box .icon {
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 0 0 10px 0;
	height: 106px;
	width: 106px;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}
  
.solutions-box span.number {
	position: absolute;
	color: #EFEBE7;
	right: 50px;
	top: 50px;
	font-size: 70px;
	font-weight: 700;
	font-family: var(--font-secondary);
}

.solutions-box .title {
	font-size: 23px;
	margin-top: 100px;
	margin-bottom: 10px;
	transition: 0.3s;
}

.our-solutions p {
	margin-bottom: 10px;
	color: #7C7C84;
}

/* About Tagline */
.about-tagline {
	background: var(--secondary-color);
	background-image: url('../images/about/background.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	padding: 30px 0;
}

.about-tagline h2 {
	font-size: 35px;
	color: #fff;
	font-weight: 600;
	text-shadow: 0 0 8px rgb(0 0 0 / 70%);
}

/************************************/
/*****         Our Work         *****/
/************************************/

.our-work{
	padding: 100px 0 60px;
}

.our-Project-nav{
	text-align: center;
	margin-bottom: 60px;
}

.our-Project-nav ul{
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 60px;
	padding: 0;margin: 0;
}

.our-Project-nav ul li a{
	position: relative;
	display: inline-block;
	color: var(--primary-color);
	font-weight: 600;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.our-Project-nav ul li a:before{
    content: '/';
    position: absolute;
    top: 0;
	bottom: 0;
    right: -35px;
}

.our-Project-nav ul li:last-child a:before{
	display: none;
}

.our-Project-nav ul li a.active-btn,
.our-Project-nav ul li a:hover{
	color: var(--accent-color);
}

.project-item{
	position: relative;
	height: calc(100% - 40px);
	margin-bottom: 40px;
	text-align: center;
	overflow: hidden;
}

.project-image{
	position: relative;
	margin-bottom: 30px;
}

.project-image figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.project-image img{
	width: 100%;
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
	border-radius: 40px;
	transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image figure img{
	transform: scale(1.1);
}

.project-tag{
	position: absolute;
	top: 40px;
	left: 40px;
	z-index: 2;
}

.project-tag a{
	position: relative;
	display: block;
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	color: var(--white-color);
	border-radius: 10px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.1em;
	text-transform: capitalize;
	padding: 10px 12px;
	overflow: hidden;
}

.project-tag  a::before{
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
	opacity: 10%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.project-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}

.project-content h3 a{
	color: inherit;
}

.our-process{
	/* background: var(--secondary-color); */
	background: #f5f5f5;
	padding: 100px 0;
}

.our-process-image{
	margin-right: 30px;
}

.our-process-image figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.our-process-image img{
	width: 100%;
	aspect-ratio: 1 / 0.93;
	object-fit: cover;
	border-radius: 40px;
}

.process-step-item{
	position: relative;
	/* border: 1px solid var(--divider-color); */
	border-radius: 40px;
	display: flex;
	align-items: center;
	padding: 30px;
	margin-bottom: 30px;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.process-step-item:last-child{
	margin-bottom: 0;
}

.process-step-item::before{
	content: '';
    display: block;
    position: absolute;
    top: auto;
	bottom: 0;
	left: 0;
    right: 0;
    background: var(--secondary-color);
	width: 100%;
    height: 0;
    transition: all 0.4s ease-in-out;
	z-index: 0;
}

.process-step-item.active:before,
.process-step-item:hover:before{
	height: 100%;
	top: 0;
	bottom: auto;
}

.process-step-no{
	position: relative;
	margin-right: 20px;
	z-index: 1;
}

.process-step-no h2 {
	font-size: 50px;
	font-weight: 700;
	color: var(--secondary-color);
	transition: all 0.3s ease-in-out;
}

.process-step-no svg {
	width: 70px;
	color: var(--secondary-color);
	transition: all 0.3s ease-in-out;
}


.process-step-content{
	position: relative;
	z-index: 1;
}

.process-step-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.process-step-content p{
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.process-step-item.active .process-step-content p,
.process-step-item.active .process-step-content h3,
.process-step-item.active .process-step-no h2,
.process-step-item.active .process-step-no svg,
.process-step-item:hover .process-step-content p,
.process-step-item:hover .process-step-content h3,
.process-step-item:hover .process-step-no h2{
	color: var(--white-color);
}

/************************************/
/*****     CERTIFICATIONS      *****/
/************************************/

.page-certifications{
	padding: 100px 0 60px;
}

.cert-box {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 10px;
}
.cert-box .inner {
	position: absolute;
	left: 0;
	bottom: -100%;
	width: 100%;
	padding: 30px;
	background: linear-gradient(90deg, #cd9600 0%, rgba(248, 78, 29, 0) 100%);
	backdrop-filter: blur(2.5px);
	border-radius: 0px 0px 10px 10px;
	transition: all 0.5s;
}


  @media only screen and (max-width: 991px) {
	.cert-box .inner {
	  bottom: 0;
	}
  }
  .cert-box .inner .title {
	color: #fff;
	margin-bottom: 3px;
  }
  .cert-box .inner span {
	color: #fff;
	font-size: 15px;
	font-weight: 400;
  }
  .cert-box:hover .inner {
	bottom: 0;
  }

  .cert-box::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0px;
    height: 0px;
    background-color: var(--secondary-color);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    overflow: hidden;
    opacity: 0;
    z-index: 1;
    transition: var(--cube-1) 0.4s;
    -webkit-transition: var(--cube-1) 0.4s;
}

.cert-box::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0px;
    height: 0px;
    background-color: var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    overflow: hidden;
    opacity: 0;
    transition: var(--cube-1) 0.4s;
    -webkit-transition: var(--cube-1) 0.4s;
}

.cert-box:hover::after {
    opacity: 1;
	width: 175px;
    height: 85px;
}
.cert-box:hover .project-title-wrap {
    opacity: 1;
}

.cert-box .project-title-wrap {
    position: absolute;
    bottom: 20px;
    left: 0px;
    padding: 0 20px 0 30px;
    overflow: hidden;
    opacity: 0;
    z-index: 3;
    transition: var(--cube-1) 0.5s;
    -webkit-transition: var(--cube-1) 0.5s;
    transition-delay: 0.2s;
}

.cert-box .cert-img-wrap {
    position: relative;
}

.cert-box .cert-img-wrap::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 65.18%, #000000 110.4%);
    filter: drop-shadow(0px 4px 40px rgba(0, 0, 0, 0.3));
    -webkit-filter: drop-shadow(0px 4px 40px rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: var(--cube-1) 0.4s;
    -webkit-transition: var(--cube-1) 0.4s;
}
.cert-box:hover .cert-img-wrap::after {
    opacity: 1;
}
.cert-box .project-title-wrap .project-subtitle {
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    color: #FFFFFF;
    background-color: var(--primary-color);
    padding: 10px 20px;
}
.cert-box .project-title-wrap .project-title {
    font-weight: 900;
    line-height: 40px;
    color: #FFFFFF;
    margin-top: 15px;
    margin-bottom: 18px;
}
.cert-box .project-title-wrap .disc {
    color: #fff;
}



/************************************/
/*****       About Us Page      *****/
/************************************/

.page-header{
	position: relative;
	background-size: cover;
	padding: 100px 0;
}

.page-header::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: linear-gradient(270deg, rgba(0, 0, 0, 0) 23.99%, rgba(0, 0, 0, 0.8) 100%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-box{
	position: relative;
	z-index: 1;
}

.page-header-box h1{
    color: var(--white-color);
    font-size: 70px;
    font-weight: 300;
    line-height: 1.2em;
    letter-spacing: -0.01em;
    margin-bottom: 5px;
}

.page-header-box h1 span{
	font-weight: 700;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
}

.our-mission-vision{
	position: relative;
}

.mission-vision-bg{
	position: relative;
	background: url('../images/our-service-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0 200px;
}

.mission-vision-bg:before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 70%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.mission-vision-box{
	position: relative;
	border: 1px solid var(--dark-divider-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 40px;
	margin-top: -200px;
	overflow: hidden;
	z-index: 1;
}

.mission-vision-nav ul{
	list-style: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
	background-color: var(--white-color);
	border-bottom: 1px solid var(--divider-color);
	overflow: hidden;
}

.mission-vision-nav ul li{
	width: 33.33%;
	position: relative;
    display: inline-block;
	text-align: center;
}

.mission-vision-nav ul li:last-child{
	padding-right: 0;
}

.mission-vision-nav ul li .nav-link{
	display: block;
	width: 100%;
    background: transparent;
	border: none;
	border-radius: 0;
    color: var(--primary-color);
	font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
	padding: 30px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.mission-vision-nav ul li .nav-link.active,
.mission-vision-nav ul li .nav-link:hover{
    background: var(--accent-color);
    color: var(--white-color);
	border-radius: 0;
}

.mission-vision-nav ul li .nav-link img{
	max-width: 40px;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.mission-vision-nav ul li .nav-link.active img,
.mission-vision-nav ul li .nav-link:hover img{
	filter: brightness(0) invert(1);
}

.mission-vision-item{
	background-color: var(--white-color);
	padding: 80px;
}

.mission-vision-content-header{
	margin-bottom: 40px;
}

.mission-vision-content-header p{
	margin: 0;
}

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

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

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

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

.mission-vision-image figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.mission-vision-image img{
	width: 100%;
	aspect-ratio: 1 / 0.63;
	object-fit: cover;
	border-radius: 40px;
}

.our-history{
	padding: 100px 0;
}

.our-history-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 50px;
}

.our-history-nav{
	width: calc(30% - 25px);
}

.our-history-nav ul{
	list-style: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
	background-color: var(--white-color);
	border: 1px solid var(--secondary-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 20px;
	overflow: hidden;
}

.our-history-nav ul li{
	width: 100%;
	position: relative;
    display: inline-block;
	text-align: center;
}

.our-history-nav ul li:last-child{
	border: none;
}

.our-history-nav ul li .nav-link{
	display: block;
	width: 100%;
    background: transparent;
	border-radius: 0;
    color: var(--primary-color);
	font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
    text-transform: capitalize;
	border-bottom: 1px solid var(--divider-color);
	padding: 30px;
    transition: all 0.3s ease-in-out;
}

.our-history-nav ul li .nav-link.active,
.our-history-nav ul li .nav-link:hover{
    background: var(--accent-color);
    color: var(--white-color);
	border-radius: 0;
}

.our-history-item{
	width: calc(70% - 25px);
}

.our-history-list ul{
	margin: 0;
    padding: 0;
    list-style: none;
}

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

.our-history-list ul li:last-child{
	margin-bottom: 0;
}

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

.our-history-image figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.our-history-image img{
    width: 100%;
	aspect-ratio: 1 / 0.96;
    object-fit: cover;
    border-radius: 40px;
}

.our-features{
	padding: 100px 0;
}

.our-features-boxes{
	display: flex;
	flex-wrap: wrap;
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	overflow: hidden;
}

.our-features-item{
	position: relative;
	width: 50%;
	padding: 50px;
	overflow: hidden;
}

.our-features-item:nth-child(1n + 1){
	border-right: 1px solid var(--divider-color);
	border-bottom: 1px solid var(--divider-color);
}

.our-features-item:nth-child(2n + 2){
	border-right: none;
}

.our-features-item::before{
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: var(--accent-color);
    border-radius: 0;
    height: 100%;
    width: 100%;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    z-index: -1;
}

.our-features-item:hover::before{
    top: 0;
    border-radius: 0;
    opacity: 1;
}

.our-features-item .icon-box{
	margin-bottom: 30px;
}

.our-features-item .icon-box img{
	max-width: 50px;
	transition: all 0.4s ease-in-out;
}

.our-features-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.features-item-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.features-item-content p{
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.our-features-item:hover .features-item-content p,
.our-features-item:hover .features-item-content h3{
	color: var(--white-color);
}

.our-features-item.features-image-box{
	border: none;
	padding: 0;
}

.our-features-item.features-image-box figure{
	display: block;
	height: 100%;
}

.our-features-item.features-image-box img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.485;
    object-fit: cover;
}

.our-team{
	padding: 100px 0 70px;
}

.team-member-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image{
	position: relative;
	border-radius: 20px;
	margin-bottom: 20px;
    overflow: hidden;
}

.team-image a{
	display: block;
}

.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-member-item:hover .team-image figure::before{
	opacity: 1;
	visibility: visible;
}

.team-image img{
	width: 100%;
	aspect-ratio: 1 / 1.15;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img{
    transform: scale(1.1);
}

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

.team-member-item:hover .team-social-icon{
	bottom: 20px;
	transform: translateY(0);
}

.team-social-icon ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.team-social-icon ul li{
	display: inline-block;
    text-align: center;
    margin-right: 20px;
}

.team-social-icon ul li:last-child{
	margin-right: 0;
}

.team-social-icon ul li a{
    color: var(--white-color);
	cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a i{
    font-size: 20px;
    color: inherit;
}

.team-social-icon ul li a:hover{
	color: var(--accent-color);
}

.team-content{
	text-align: center;
}

.team-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
}

.team-content h3:hover{
	color: var(--accent-color);
}

.team-content h3 a{
	color: inherit;
}

.team-content p{
	text-transform: capitalize;
	margin: 0;
}

.our-faqs{
	padding: 100px 0;
}

.our-faqs-images{
	position: relative;
}

.our-faqs-img figure{
	position: relative;
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.our-faqs-img figure::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(34, 34, 34, 0) 64.31%, rgba(34, 34, 34, 0.8) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.our-faqs-img figure img{
	width: 100%;
	aspect-ratio:  1 / 0.99;
	object-fit: cover;
}

.faqs-img-cta-box{
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	z-index: 1;
}

.faqs-img-cta-box ul{
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.faqs-img-cta-box ul li{
	display: inline-block;
	margin-right: 40px;
}

.faqs-img-cta-box ul li:last-child{
	margin-right: 0;
}

.faqs-img-cta-box ul li a img{
	max-width: 30px;
	margin-right: 15px;
}

.faqs-img-cta-box ul li a{
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.faqs-img-cta-box ul li:hover a{
	color: var(--accent-color);
}

.our-faq-section .accordion-item{
	padding: 0;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 30px;
	transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-item:last-child{
	margin-bottom: 0;
}

.our-faq-section .accordion-header .accordion-button{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	background-color: transparent;
	color: var(--white-color);
	padding: 15px 50px 15px 20px;
	transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-button:not(.collapsed){
	background: var(--accent-color);
   	color: var(--white-color);
   	border-bottom: 1px solid var(--dark-divider-color);
}

.our-faq-section .accordion-header .accordion-button.collapsed{
	background-color: transparent;
	color: var(--primary-color);
}

.our-faq-section .accordion-item .accordion-button::after, 
.our-faq-section .accordion-item .accordion-button.collapsed::after{
    content: '\f077';
    font-family: 'Font Awesome\ 5 Free';
    position: absolute;
    right: 20px;
    top: 50%;
	transform: translateY(-50%);    
    font-size: 16px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-button:not(.collapsed)::after{
    transform: translateY(-50%) rotate(180deg);
    color: var(--white-color);
}

.our-faq-section .accordion-item .accordion-body{
	background: var(--accent-color);
	padding: 15px 50px 15px 20px;
}

.our-faq-section .accordion-item .accordion-body p{
    color: var(--white-color);
	margin: 0;
}

/************************************/
/*******      Services        *******/
/************************************/

.page-service-single{
    padding: 100px 0;
}

/* Side Navigation */
.service-sidebar{
    position: sticky;
    top: 80px;
    margin-right: 20px;
}

.service-catagery-list{
    border-radius: 8px;
    margin-bottom: 60px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #dee2e6;
	overflow: hidden;
}

.service-catagery-list h3{
	font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 20px 30px;
}

.service-catagery-list ul{
    list-style: none;
    margin: 0;
    padding: 30px;
}

.service-catagery-list ul li{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:last-child{
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.service-catagery-list ul li a{
    position: relative;
	display: block;
    text-transform: capitalize;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li a:hover{
    color: var(--accent-color);
}

.service-catagery-list ul li a:hover:before{
	transform: translateY(-50%) rotate(45deg);
}

.side-link-premium i {
	float: right;
}

.side-link-premium[aria-expanded="true"] i {
    rotate: 180deg;
}

ul.side-sub-service {
    padding: 10px !important;
}

.side-sub-service li.list-group-item {
    padding: 0 0 5px 0 !important;
}

/* CTA */
.sidebar-cta-box{
	position: relative;
	background-image: url(../images/footer-bg.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    border-radius: 10px;
	padding: 40px;
    overflow: hidden;
	z-index: 1;
	box-shadow: 0px 4px 30px 0px #00000017;
}

.sidebar-cta-box::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	/* background: linear-gradient(1deg, var(--primary-color), var(--secondary-color)); */
	opacity: 70%;
	height: 100%;
	width: 100%;
	z-index: 0;
}

.sidebar-cta-logo{
	position: relative;
	margin-bottom: 30px;
}

.sidebar-cta-logo img{
    width: 100%;
	max-width: 160px;	
}

.sidebar-cta-content{
	position: relative;
}

.sidebar-cta-content h3{
    font-size: 25px;
	font-weight: 700;
	color: var(--white-color);
    margin-bottom: 10px;
}

.sidebar-cta-content h3 span{
	font-weight: 700;
}

.sidebar-cta-content p{
	color: var(--white-color);
    margin-bottom: 0;
}

.sidebar-cta-contact-list{
	position: relative;
}

.sidebar-cta-contact-item{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.sidebar-cta-contact-item:last-child{
    margin: 0;
}

.sidebar-cta-contact-item .icon-box{
	position: relative;
	height: 40px;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	margin-right: 15px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	overflow: hidden;
	z-index: 1;
}

.sidebar-cta-contact-item .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--white-color);
	opacity: 16%;
	height: 100%;
	width: 100%;
	border-radius: 10px;
	z-index: 0;
}

.sidebar-cta-contact-item img{
	position: relative;
    max-width: 24px;
	z-index: 1;
}

.cta-contact-item-title h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.sidebar-cta-contact-item:hover .cta-contact-item-title h3{
	color: var(--accent-color);
}

/* MAIN SERVICES */
.service-entry{
    margin-bottom: 40px;
}

.service-entry h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-entry h2 span {
    font-weight: 700;
}

.service-entry p {
    margin-bottom: 20px;
}

.service-entry p:last-child {
    margin-bottom: 0;
}

.service-entry ul{
	padding: 0;
    margin-bottom: 40px;
    list-style: none;
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
}

.service-entry ul li{
	position: relative;
	/* width: calc(33.33% - 20px); */
    color: var(--primary-color);
    text-transform: capitalize;
	padding-left: 40px;
}

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

.service-entry-images{
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.service-entry-img figure{
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

.service-entry-img img{
	width: 100%;
	aspect-ratio: 1 / 0.96;
	object-fit: cover;
	border-radius: 10px;
}

/* ENERGY SERVICES */
.energy-services-box {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	margin: 40px 0;
}

.energy-services-item {
	display: flex;
    flex-direction: column;
    justify-content: center;
	position: relative;
	z-index: 1;
    overflow: hidden;
	width: calc(50% - 15px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #dee2e6;
	border-radius: 8px;
    padding: 30px;
}

.energy-services-item::after {
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #efefef;
    transform: translateY(-110%);
    transition: 0.3s;
    transition-delay: 0.1s;
    z-index: -1;
}

.energy-services-item:hover::after {
	transform: translateY(0);
}

.energy-services-item .icon-box{
	margin-bottom: 30px;
}

.energy-services-item .icon-box img{
	max-width: 50px;
}

.energy-services-item-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.energy-services-item-content p {
	font-size: 16px;
	color: var(--primary-color);
}

/* CORE SERVICES */
.core-services-item {
	display: flex;
	align-items: center;
	position: relative;
	border-radius: 8px;
    z-index: 1;
    overflow: hidden;
	background: #fff;
	border: 1px solid #dee2e6;
    margin-bottom: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.core-services-item::after {
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #efefef;
    transform: translateX(-110%);
    transition: 0.3s;
    transition-delay: 0.1s;
    z-index: -1;
}

.core-services-item:hover::after {
	transform: translateX(0);
}

.core-services-item:first-child {
	margin-top: 20px;
}

.core-services-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px 20px 40px 10px;
}

.core-services-text h4 {
	margin-bottom: 20px;
}

.core-services-text p {
	margin-bottom: 16px;
}

/* VALUE ADDED SERVICES */
ol.vas-list {
	list-style: none;
	padding-left:0px;
	margin-top: 15px;
}

li.vas-title a {
	color: #00087d;
}

li.vas-title i {
	float: right;
}
li.vas-title a[aria-expanded="true"] i {
    rotate: 180deg;
}

li.vas-title {
	position: relative;
	z-index: 1;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 25px;
    padding: 30px;
    font-size: 1.3rem;
	font-weight: 600;
    color: #00087d;
}

li.vas-title::after {
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #efefef;
    transform: translateY(-110%);
    transition: 0.3s;
    transition-delay: 0.1s;
    z-index: -1;
}

li.vas-title:hover::after {
	transform: translateY(0);
}

.vas-card ul {
    margin: 20px 0 10px 15px;
	font-weight: 500;
	font-size: 16px;
}


/* PREMIUM SERVICES */
.premium-services-item {
	margin: 80px 0;
}
.premium-services-item:first-child {
	margin-top: 20px;
}

.premium-services-text {
	display: flex;
    flex-direction: column;
    justify-content: center;
}

.premium-services-item h4 {
	position: relative;
	font-size: 30px;
    padding-bottom: 40px;
}

.premium-services-item h4::before {
	content: '';
    position: absolute;
	top: 15px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--divider-color);
    height: 1px;
    width: 100%;
    transform: translateY(40px);
}


/************************************/
/***     20. Project Page css     ***/
/************************************/



/************************************/
/***    21. Project Single css    ***/
/************************************/

.page-project-single{
	padding: 100px 0;
}

.project-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.project-detail-box{
	border: 1px solid var(--secondary-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 20px;
	margin-bottom: 60px;
	overflow: hidden;
}

.project-detail-title{
	background-color: var(--accent-color);
	padding: 20px 30px;
}

.project-detail-title h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
}

.project-detail-list{
	padding: 30px;
}

.project-detail-item{
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.project-detail-item:last-child{
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

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

.project-detail-item:hover .icon-box{
	background-color: var(--primary-color);
}

.project-detail-item .icon-box img{
	max-width: 20px;
}

.project-detail-content{
	width: calc(100% - 60px);
}

.project-detail-content h3{
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-detail-content p{
	margin-bottom: 0;
}

.project-single-image{
    margin-bottom: 30px;
}

.project-single-image figure{
    display: block;
    border-radius: 40px;
    overflow: hidden;
}

.project-single-image img{
    border-radius: 40px;
    width: 100%;
    aspect-ratio: 1 / 0.67;
    object-fit: cover;
}

.project-entry{
    margin-bottom: 60px;
}

.project-info,
.project-goal{
	margin-bottom: 60px;
}

.project-entry h2{
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 20px;
}

.project-entry h2 span{
    font-weight: 700;
}

.project-entry p{
    margin-bottom: 20px;
}

.project-entry p:last-child{
    margin-bottom: 0;
}

.project-entry ul{
	padding: 0;
    margin-bottom: 20px;
    list-style: none;
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
}

.project-entry ul li{
	position: relative;
	width: calc(50% - 15px);
    color: var(--primary-color);
    text-transform: capitalize;
	padding-left: 40px;
}

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

.project-query-item{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-bottom: 60px;
}

.project-query-item:last-child{
	margin-bottom: 0;
}

.project-query-item:nth-of-type(even){
	flex-direction: row-reverse;
}

.project-query-content{
	width: calc(50% - 15px);
}

.project-query-box ul{
	margin-bottom: 0;
}

.project-query-box ul li{
	width: 100%;
}

.project-query-img{
	width: calc(50% - 15px);
}

.project-query-img figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.project-query-img img{
	width: 100%;
	aspect-ratio: 1 / 0.73;
	object-fit: cover;
	border-radius: 40px;
}

/************************************/
/******      Projects        ******/
/************************************/

.page-project {
	padding: 120px 0;
}

.project-box {
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}

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

.p-20 {
    padding: 20px;
}

.project-box img {
    object-fit: cover;
    height: 290px;
}

.thumbnail {
    display: block;
    position: relative;
    overflow: hidden;
}

.thumbnail img {
    object-fit: cover;
    height: 250px;
    width: 500px;
}

.project-box span.title {
	font-weight: 700;
    color: rgb(20, 20, 22);
}

.tag-area {
    display: flex;
    align-items: center;
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: rgb(255, 255, 255);
    border-radius: 0px 10px 0px 0px;
    overflow: hidden;
}
.tag-area span {
    font-weight: 700;
    font-size: 15px;
    color: rgb(20, 20, 22);
    padding: 9px 25px;
}
.tag-area span.location {
    color: rgb(255, 255, 255);
    background: var(--primary-color);
}
.tag-area span {
    font-weight: 700;
    font-size: 15px;
    color: rgb(20, 20, 22);
    padding: 9px 25px;
}

.project-box:hover {
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
    -o-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.project-box, .project-box:hover, .hwp {
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.project-head a {
    display: block;
    padding: 20px;
	border-top: 1px solid #dddddd;
}
.project-content {
    padding: 20px;
}

.project-head a:after{
	content:"--";
}
.project-head a.collapsed:after{
	content:"+";
}
.project-head a,
.project-head a:hover,
.project-head a.collapsed:hover {
    color: var(--color-primary);
}
.project-head a.collapsed,
.project-head a.collapsed:after {
    color: #000;
}
.project-head a:after {
    float: right;
    color: var(--color-primary);
    font-size: 16px;
	letter-spacing: -2px;
    position: relative;
    top: 8px;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.project-head a.collapsed:after {
	font-size:16px;
}


/************************************/
/******      Customers        ******/
/************************************/

.rts-section-gap {
    padding: 120px 0;
}
.single-team-details-top-area {
	height: 250px;
	margin-bottom: 50px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* .single-team-details-top-area .thumbnail {
    max-width: 255px;
} */

.reveal-item {
    position: relative;
    display: block;
    overflow: hidden;
}
.reveal-item.overflow-hidden.aos-init img {
	padding: 25px;
    width: 100%;
}

.single-team-details-top-area .right-content-inner {
	width: 80%;
    padding: 40px 60px 40px 60px;
}

.right-content-inner .disc {
    padding-top: 20px;
	margin: 0;
}

/************************************/
/*****     Image Gallery css    *****/
/************************************/

.page-gallery{
	padding: 120px 0;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery figure{
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
	border-radius: 20px;
}


/************************************/
/******      Contact Us        ******/
/************************************/

.page-contact-us{
    padding: 100px 0;
}

.contact-information{
	margin-right: 40px;
}

.contact-info-item{
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
    margin-bottom: 40px;
}

.contact-info-item:last-child{
	border: none;
	padding-bottom: 0;
    margin-bottom: 0;
}

.contact-info-item .icon-box{
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 10px;
	height: 60px;
	width: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
    margin-right: 20px;
	transition: all 0.5s ease-in-out;
}

.contact-info-item:hover .icon-box{
	background-color: transparent;
}

.contact-info-item .icon-box::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
	right: 0;
	bottom: 0;
    background: var(--primary-color);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.contact-info-item:hover .icon-box::before{
	transform: scale(1);
}

.contact-info-item .icon-box img{
	position: relative;
    max-width: 30px;
	z-index: 1;
}

.contact-info-content{
    width: calc(100% - 80px);
}

.contact-info-content h3{
    font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-info-content p{
    margin-bottom: 0;
}

.contact-us-form{
	background-color: var(--white-color);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #dee2e6;
	border-radius: 8px;
    padding: 40px;
}

.contact-form .form-control{
    font-size: 16px;
	font-weight: 400;
    background-color: var(--white-color);
    color: var(--text-color);
	border: 1px solid var(--divider-color);
    border-radius: 10px;
    outline: none;
    box-shadow: none;
    padding: 17px 15px;
}

.contact-form .form-control::placeholder{
	color: var(--text-color);
}

.google-map-iframe,
.google-map-iframe iframe{
    height: 600px;
    width: 100%;
}

.google-map-iframe iframe{
    filter: grayscale(1);
    transition: all 0.4s ease-in-out;
}

.google-map-iframe iframe:hover{
    filter: grayscale(0);
}

/************************************/
/*****          Footer         *****/
/************************************/

.main-footer{
	background: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: cover;
	background-attachment: fixed;
	padding: 80px 0 0;
    position: relative;
}

.main-footer > * {
	position: relative;
	z-index: 1;
}

footer.main-footer::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: linear-gradient(1deg, var(--primary-color), var(--secondary-color)); */
    background: var(--primary-color);
    opacity: 0.95;
    width: 100%;
    height: 100%;
}

.footer-header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 60px;
	padding-bottom: 60px;
}

.footer-header .section-title{
	margin-bottom: 0;
}

.footer-contact-circle{
	margin-left: 20px;
}

.footer-contact-circle img{
	max-width: 130px;
	animation: contactrotate 20s infinite linear;
}

.about-footer{
	width: 100%;
	max-width: 300px;
}

.footer-logo{
	margin-bottom: 10px;
}

.footer-logo img{
	max-width: 180px;
}

.about-footer-content{
	margin-bottom: 20px;
}

.about-footer-content p{
	color: var(--white-color);
	margin: 30px 0;
}

.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:last-child{
	margin-right: 0;
}

.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:hover a{
	border-color: var(--white-color);
}

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

.footer-social-links ul li:hover a i{
	color: var(--accent-color);
}

.footer-links h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	margin-bottom: 30px;
}

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

.footer-links ul li{
	color: var(--white-color);
	margin-bottom: 15px;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover a{
	color: var(--accent-color);
}

.footer-copyright{
	text-align: center;
	border-top: 1px solid var(--dark-divider-color);
	padding: 60px 0;
	margin-top: 60px;
}

.footer-copyright-text p{
	color: var(--white-color);
	margin: 0;
}

/************************************/
/***      30. 404 Page css        ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 50%;
}

 .error-page-content{
	text-align: center;
}

.error-page-content .section-title{
	margin-bottom: 20px;
}

.error-page-content-body p{
	margin-bottom: 20px;
}

@media (max-width: 767px) {
    #about-banner {
        background-image: url('/images/about/about-mobile.png') !important;
        background-position: center !important;
		background-size: 100% auto;
		height: 400px; /* or auto, based on image aspect ratio */

    }
}