/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color			: #040303;
	--secondary-color		: #F4F4F4;
	/*--text-color			: #808080;*/
	--text-color			: #666666;
	--accent-color			: #00A088;
	--dark-color			: #004050;
	--white-color			: #FFFFFF;
	--divider-color			: #F3F3F3;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "DM Sans", sans-serif;
}


/************************************/
/*** 	   02. General Css		  ***/
/************************************/

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7em;
	background-color: var(--white-color);
	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;
}

.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: 18px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 100px;
	padding: 18px 70px 18px 30px;
	border: none;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.btn-default:hover{
	background-color: transparent;
}

.btn-default::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
	right: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
	border-radius: 100px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::before{
	width: 100%;
    left: 0;
	right: auto;
}

.btn-default::after{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 30px;
    height: 30px;
    background-image: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    transform: translate(-30px, -50%);
    transition: all 0.4s ease-in-out;
}

.btn-default.btn-highlighted{
	padding: 18px 30px;
}

.btn-default.btn-highlighted::after{
	display: none;
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	/*background-color: var(--dark-color);*/
	background-color: #003124;
	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{
	margin-bottom: 60px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-btn{
	text-align: end;
}

.section-title-content p{
	margin: 0;
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-size: 16px;
    font-weight: 700;
	line-height: 1.3em;
	/*letter-spacing: 0.2em;*/
    /*text-transform: uppercase;*/
    color: var(--primary-color);
	padding-left: 34px;
    margin-bottom: 15px;
}

.section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../images/icon-sub-heading.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    width: 24px;
    height: 24px;
}

.section-title.our-core-values h3::before{ 
    background: url('../images/icons/home/our-core-values.svg')!important;
    width: 25px!important;
    height: 25px!important;
}

.section-title.beyond-scf h3::before{ 
    background: url('../images/icons/about-us/beyond-scf.svg')!important;
    width: 22px!important;
    height: 25px!important;
}

.section-title h1{
	font-size: 70px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 46px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-color);
}
.section-title h1 span{font-weight: 600;}
.section-title p{
	margin-top: 20px;
	margin-bottom: 0;
}

.section-title.dark-section h1,
.section-title.dark-section h2,
.section-title.dark-section h3{
	color: var(--white-color);
}

.section-title.dark-section h3::before{
	filter: brightness(0) invert(1);
}

.section-title.dark-section p{
	color: var(--white-color);
	opacity: 80%;
}

.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;
}



.leadership-team .section-title h2{
	font-size: 36px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}


/************************************/
/**** 	   03. Header Css		 ****/
/************************************/

header.main-header{
	position: relative; 
	background: transparent; 
	z-index: 100;
}

header.main-header #header-inner{
	position: absolute; 
	top: 0;
	left: 0;
	right: 0;
	background: transparent;
	border-bottom: 1px solid var(--dark-divider-color);
	z-index: 100;
}

header.main-header #header-inner.header-sticky{
	width: 100%;
	position: fixed;
	background: #003627;
	border-bottom: 1px solid var(--dark-divider-color);
	top: 0;
	z-index: 100;
}

header.main-header #header-inner.header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header #header-inner.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;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.navbar-brand img{
	width: 15rem;
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3em;
	padding: 15px 20px !important;
	color: var(--white-color);
	opacity: 80%;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.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 a:hover,
.main-menu ul li a:focus{
	color: var(--white-color);
	opacity: 100%;
}

.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-color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.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;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	opacity: 100%;
	padding: 10px 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 a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 10px 20px 10px 23px !important;
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	position: relative;
	top: 0;
}

.slicknav_btn{
	background: var(--accent-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(--white-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(--white-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(--white-color);
	position: absolute;
	right: 15px;
    top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: translateY(-50%) rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero Css	      ***/
/************************************/

.hero{
	position: relative;
	/*background-color: var(--dark-color);*/
	background-color: #003627;
	/*background-image: url('../images/hero-bg.svg');*/
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 150px 0 0;
}

.hero.hero-bg-image{
	background: url('../images/home/banner.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 160px 0 80px 0;
}

.hero.hero-bg-image::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 60%;
    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-bg-image.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide{
	position: relative;
    padding: 160px 0 95px 0;
    /*padding: 240px 0;*/
}

.hero.hero-bg-image.hero-slider-layout .hero-slide::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
	opacity: 40%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 50px;
	text-align: center;
	z-index: 2;
}

.hero.hero-bg-image.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-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}
.swiper-button-next, .swiper-button-prev{color: #fff!important; opacity: 40%;}
.swiper-button-next:after, .swiper-button-prev:after{font-size: 30px!important;}
.hero-content{
	position: relative;
	margin-right: 30px;
	z-index: 2;
}

.hero.hero-bg-image .hero-content{
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	text-align: left;
}

.hero-content-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

/*.hero.hero-bg-image .hero-content .hero-content-body{
	justify-content: center;
}*/

.hero-btn{
	display: flex;
	margin-right: 40px;
}

.video-play-button{
	display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-button a{
	height: 50px;
	width: 50px;
	border: 2px solid var(--white-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: none;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.video-play-button:hover a{
	border-color: var(--primary-color);
}

.video-play-button img{
	max-width: 20px;
	transition: all 0.3s ease-in-out;
}

.video-play-button:hover a img{
	filter: brightness(0) invert(0);
}

.video-play-button p{
	font-size: 18px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--white-color);
	margin: 0;
}

.hero-content-footer{
	margin-top: 100px;
}

.hero-content-footer h2{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 30px;
}

.hero-client-slider .client-logo{
	text-align: center;
}

.hero-client-slider .client-logo img{
	width: 80%;
	/*max-height: 30px;*/
	opacity: 50%;
	transition: all 0.4s ease-in-out;
}

.hero-client-slider .client-logo img.fill-width{
	width: 100%!important;
}

.hero-client-slider .client-logo img:hover{
	opacity: 100%;
}

.hero-client-slider .swiper-wrapper{
 transition-timing-function: linear !important; 
-webkit-transition-timing-function: linear !important;
}

.hero-image{
	position: relative;
	padding-left: 80px;
}

.hero-img figure{
	display: block;
}

.hero-img img{
	width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1.352;
    border-radius: 30px 30px 0px 0px;
}

.company-experience{
	position: absolute;
	bottom: 25%;
	left: 0;
	background-color: var(--accent-color);
	border-radius: 10px;
	padding: 16px;
	display: flex;
	align-items: center;
	width: 280px;
	animation: experienceobject 3s infinite linear alternate;
	overflow: hidden;
}

@keyframes experienceobject{
	50%{
		left: 40px;
	}
}

.company-experience::before{
	content: '';
    position: absolute;
    top: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.company-experience:hover::before{
    top: 0;
}

.company-experience h3{
	position: relative;
	width: 35%;
	color: var(--white-color);
	font-size: 46px;
	margin-right: 15px;
	z-index: 1;
}

.company-experience p{
	position: relative;
	width: 65%;
	color: var(--white-color);
	text-align: left;
	margin: 0;
	z-index: 1;
}

/************************************/
/***        05. About Us Css	  ***/
/************************************/

.about-us{
	padding: 60px 0;
}

.about-us-images{
	position: relative;
	padding: 0 30px 80px 0;
}

.about-img-1{
	position: relative;
} 

.about-img-1 figure,
.about-img-2 figure{
	display: block;
	border-radius: 20px;
}

.about-img-1 img,
.about-img-2 img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.about-img-1 img{
	aspect-ratio: 1 / 1.18;
}

.about-img-2{
	width: 300px;
	position: absolute;
	bottom: 0;
	right: 0;
}

.about-img-2 img{
	aspect-ratio: 1 / 1.334;
}

.contact-circle{
	position: absolute;
	top: 30px;
	right: 50px;
	animation: infiniterotate 30s infinite linear;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.contact-circle img{
	max-width: 150px;
}

.about-us-content{
	margin-left: 30px;
}

.about-goal-box{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.about-goal-box .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}

.about-goal-box .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 5px;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.about-goal-box:hover .icon-box:before{
	transform: scale(1);
}

.about-goal-box .icon-box img{
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.about-goal-box-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.about-goal-box-content p{
	margin: 0;
}

.about-contact-box{
	display: flex;
	align-items: center;
}

.about-contact-box .icon-box{
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.about-contact-box .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 100px;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.about-contact-box:hover .icon-box:before{
	transform: scale(1);
}

.about-contact-box .icon-box img{
	position: relative;
	max-width: 24px;
	z-index: 1;
}

.about-contact-box .about-contact-content{
	width: calc(100% - 60px);
}

.about-contact-content p{
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
	margin: 0;
}

.about-contact-content p a{
	color: inherit;
}

.about-author-box{
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
}

.about-info-box{
	display: flex;
	align-items: center;
	margin-bottom: 50px;
}

.about-info-box figure,
.about-info-box img{
	max-width: 50px;
	border-radius: 5px;
	margin-right: 10px;
}

.about-author-content{
	width: calc(100% - 60px);
}

.about-author-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 2px;
}

.about-author-content p{
	text-transform: capitalize;
	margin: 0;
}

.about-info-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-info-list ul li{
	position: relative;
	text-transform: capitalize;
	margin-bottom: 10px;
	padding-left: 30px;
}

.about-info-list ul li:last-child{
	margin-bottom: 0;
}

.about-info-list ul li:before{
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 50%;
    left: 0;
	transform: translateY(-50%);
}


/************************************/
/***        05. About Us NEW Css	  ***/
/************************************/

.about-banner-bg {
  position: relative;
  height: 100vh;
  overflow: hidden;
  border:0px;
}

.about-banner-bg video {
  position: absolute;
  top: 60%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.about-banner-bg .banner-content {
  position: relative;
  z-index: 1; 
  text-align: center;
  top: 25%;
  transform: translateY(-50%); 
}

header.main-header #header-inner.header-white-bg.header-sticky {
    width: 100%;
    position: fixed;
    background: #fff;
    border-bottom: 1px solid var(--dark-divider-color);
    top: 0;
    z-index: 100;
}

.how-we-build {
  position: relative;
  height: 100vh;
  overflow: hidden;
  border:0px;
}

.how-we-build video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.how-we-build .how-we-build-content {
  position: relative;
  z-index: 1; 
  text-align: center;
  top: 25%;
  transform: translateY(-50%); 
}


/*.how-we-build{
	background: url('../images/about/how-we-build.png') no-repeat;
	background-position: center center;
	background-size: cover;
	padding:100px 0px 500px 0px;
}*/
.about-what-we-do-section .service-item  {
    border: 1px solid #1AA189!important;
    padding: 20px;
} 

.about-what-we-do-section .service-item .icon-box {
    display: flex;
    border-radius: 10px;
    padding: 12px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 160, 136, 0.1);
}
.about-what-we-do-section .service-item .icon-box img {
    position: relative;
    z-index: 1;
    max-width: 25px;
}
.about-what-we-do-section .service-item .service-item-content h3{
	font-size: 22px;
	min-height: 90px;
}

.about-what-we-do-section .service-item:hover .icon-box {
    background: #00A088;
    color: #ffffff;
}

.about-what-we-do-section .service-btn::before{background: #fff!important;}
.about-what-we-do-section .service-item:hover .service-btn img{filter: brightness(0) saturate(100%) invert(52%) sepia(31%) saturate(7064%) hue-rotate(142deg) brightness(89%) contrast(101%)!important;}

.fact-counter-box-list.company-overview-institutional{
	border-bottom: 0px;
    margin-bottom: 0px;
    padding-top: 60px;
    padding-bottom: 0px;
    gap:0px;
}
.fact-counter-box-list.company-overview-institutional .fact-counter-box{
    border-right: 1px solid #ddd;
    padding: 0px 0px 0px 60px; 
}
.fact-counter-box-list.company-overview-institutional .fact-counter-box:last-child{
	 border-right: 0px;
}

.fact-counter-box-list.company-overview-institutional .fact-counter-box-content h2{
	font-size: 26px;
	color: #000;
}
.fact-counter-box-list.company-overview-institutional .fact-counter-box .icon-box.public-listing{
	width: 70px;
	padding: 0px; 
}
.fact-counter-box-list.company-overview-institutional .fact-counter-box .icon-box.public-listing img.public-listing-icon{
	width: 50px;
	max-width: inherit!important;
}
.fact-counter-box-list.company-overview-institutional .fact-counter-box .icon-box img.disbursements-icon{
	width: 15px;
	max-width: inherit!important;
}
.fact-counter-box-list.company-overview-institutional .fact-counter-box .icon-box img{
	width: 25px;
	max-width: inherit!important;
}
.fact-counter-box-list.company-overview-institutional .fact-counter-box:hover .icon-box::before{
	display: none;
}


.abt-last-section {
  	position: relative;
  	background:url(../images/about/abt-last-section.png) no-repeat center top;
  	background-size: cover;
  	width: 100%; 
  	height: 70vh; 
  	border:0px;
  	margin:0px;
	padding: 0px;  
	display: flex;
	justify-content: center;
	align-items: center;
} 
.abt-last-section .abt-last-section-content {
    position: relative;
    text-align: center;
    max-width: 400px;
    margin:250px auto 0px auto;
    padding: 0px; 
}

.abt-last-section .abt-last-section-content p {
        font-size: 26px;
        line-height: 1.2;
        color: #000;
    }

.abt-last-section .abt-last-section-content strong {
        color: #1AA189;
        font-weight: 900;
    }

.about-banner {
  position: relative;
  height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scan-line {
  position: absolute;
  top: 23%;
  left: 46%;
  width: 90px;
  height: 3px;
  background: linear-gradient(to right, transparent, #3aa89d, transparent);
  /*animation: scan 4s infinite ease-in-out;*/
}
.about-banner-content {
  position: relative;
  text-align: center;
  z-index: 2; 
}

.about-banner-content h1 {
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 300;
  color: #0f2f2c;
}

.about-banner-content h1 span {
  position: relative;
  font-weight: 400;
  color: var(--accent-color);
}

.about-banner-content h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0%;
  height: 3px;
  background: #2aa198;
  animation:underline 1s ease forwards .9s;
} 
.about-banner-content p {
  margin-top: 28px;
  font-size: 30px;
  color: #5e7f7b;
} 
.about-banner-content .explore {
  margin-top: 80px;
  font-size: 13px;
  letter-spacing: 2px;
  color: #2aa198;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  animation: float 2.5s ease-in-out infinite;
}

.about-banner-content .arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #2aa198;
  border-bottom: 2px solid #2aa198;
  transform: rotate(45deg);
  margin-top: 8px;
}

/* ANIMATIONS */ 
@keyframes underline {
  to {
    width: 100%;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
@keyframes scan {
  0% { transform: translateX(-200px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(200px); opacity: 0; }
}

.who-we-are {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0px;
  background: linear-gradient(180deg, #062825 0%, #041c1a 100%);
}

.who-we-are .who-we-are-section {
  max-width: 900px;
  margin: auto;
}

/* Header */
.who-we-are .who-we-are-section .section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 50px;
  opacity: 0.85;
}

.who-we-are .who-we-are-section .section-header .icon {
  color: #6fe3d6;
  font-size: 14px;
}

.who-we-are .who-we-are-section .section-header .label {
  font-size: 16px;
  letter-spacing: 2px;
  color: #9fdad3;
}

.who-we-are .who-we-are-section .section-header .line {
  flex: 1;
  height: 1px;
  background: rgba(159, 218, 211, 0.25);
  margin-left: 12px;
}

/* Content */
.who-we-are .who-we-are-section .content p {
  position: relative;
  padding-left: 28px;
  margin-bottom: 34px;
  font-size: 18px;
  line-height: 1.7;
  color: #e4f1ef;
}

/* Vertical accent line */
.who-we-are .who-we-are-section .content p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: calc(100% - 12px);
  background: linear-gradient(
    180deg,
    #3D9B8F,
    #04201e 
  );
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
.who-we-are .who-we-are-section .content p {
    font-size: 16px;
  }
  .scan-line { 
  top: 20%!important;
  left: 35%!important;
}

  .why-we-exist-section .why-we-exist{
  	padding: 70px 20px!important; 
  }
  .why-we-exist-section .why-we-exist .timeline{
  	padding-left: 40px!important;
  }
  .how-we-build-section .badge{font-size: 11.5px!important;}
}

/* Section */
.why-we-exist-section {  
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0px;
  background: #0F3D36; 
}

.why-we-exist-section .why-we-exist {
  max-width: 900px;
  margin: auto;
}

/* Header */
.why-we-exist-section .why-we-exist .section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 60px;
}

.why-we-exist-section .why-we-exist .icon-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(90deg, #3D9B8F, #2A6B61); 
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.why-we-exist-section .why-we-exist .icon-box img{
	height: 1.5rem;
}
.why-we-exist-section .why-we-exist .label {
  letter-spacing: 2px;
  font-size: 16px;
  color: #9fd2c8;
  position: relative;
}
.why-we-exist-section .why-we-exist .label::after {
    content: "";
    position: absolute;
    left: 0;
    top: 30px; 
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3D9B8F, #0f3d36); 
}
/* Timeline */
.why-we-exist-section .why-we-exist .timeline {
  position: relative;
  padding-left: 60px;
}
 

/* Item */
.why-we-exist-section .why-we-exist .timeline-item {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Number Circle */
.why-we-exist-section .why-we-exist .circle {
  width: 36px;
  height: 36px;  
  background: linear-gradient(90deg, #3D9B8F, #2A6B61); 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #c8efe6;
  flex-shrink: 0;
  margin-left: -60px;
}

/* Card */
.why-we-exist-section .why-we-exist .card {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding:16px 20px;
  line-height: 1.6;
  color: #d6f3ee; 
}

/* Responsive */
@media (max-width: 600px) { 
.why-we-exist-section .why-we-exist .circle {
    margin-left: -40px;
  }
}

.how-we-build-section { 
  margin: 0px;
  padding: 100px 0px;
  text-align: center;
  background-color: #F0F9F7;
}

.how-we-build-section .badge {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 20px;
  background: #e6f6f2;
  color: #3D9B8F;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.how-we-build-section h1 {
  margin-top: 20px;
  font-size: 40px;
  font-weight: 400;
}

.how-we-build-section .subtitle {
  max-width: 700px;
  margin: 16px auto 50px;
  color: #5b7f78;
  font-size: 16px;
  line-height: 1.6;
}

.how-we-build-section .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.how-we-build-section .card {
  background: rgba(255, 255, 255, 50%);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: left;
  /*box-shadow: 0 10px 30px rgba(0,0,0,0.04);*/
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
    overflow: hidden;
}

.how-we-build-section .card .icon img{
  width: 1.3rem;
}
.how-we-build-section .card:hover {
  transform: translateY(-6px);
  border-color: #3D9B8F;
  box-shadow: 0 20px 40px rgba(91,198,180,0.25);
}

.how-we-build-section .card:hover .icon {
  background: #00A088;
  color: #ffffff;
}

.how-we-build-section .card:hover .icon img{
  filter: brightness(0) invert(1);
}

.how-we-build-section .card:hover::after{
	content: "";
    position: absolute;
    left: 0;
    right: 0px;
    bottom: 0px; 
    width: 100%;
    height: 3px;
    background: #3D9B8F; 
}
.how-we-build-section .card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(61, 155, 143, 13%);
  color: #3aa18d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.how-we-build-section .card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 500;
}

.how-we-build-section .card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #5A7872;
}

.how-we-build-section .card.active {
  border-color: #3D9B8F;
  box-shadow: 0 20px 40px rgba(91,198,180,0.25);
}

.how-we-build-section .card.active .icon {
  background: #00A088;
  color: #ffffff;
}

.how-we-build-section .card.active .icon img{
  filter: brightness(0) invert(1);
}
.how-we-build-section .card.active::after{
	content: "";
    position: absolute;
    left: 0;
    right: 0px;
    bottom: 0px; 
    width: 100%;
    height: 3px;
    background: #3D9B8F; 
}


.how-we-build-section .info-box {
  width: 100%;
  background: #ffffff;
  border-radius: 24px;
  padding:30px; 
  margin: 0px;
  text-align: left;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.03);
  overflow: hidden;
  min-height: 200px;
}

.how-we-build-section .info-box::after {
  	content: "";
    position: absolute; 
    right: 50px;
    top: 40px; 
    width: 300px;
    height: 300px;
    border-radius: 100%;
    background: rgba(91,198,180,5%);
}

.how-we-build-section .info-box p {
  margin: 0 0 10px;
  max-width: 850px;
  font-weight: 400;
  color: #000;
  font-size: 20px;
  line-height: 1.7;
}

.how-we-build-section .highlight {
  color: #3aa18d;
  font-weight: 600;
}

.how-we-build-section .info-box small {
  color: #5A7872;
  font-size: 13px; 
  font-weight: 400;
}

.how-we-build-section.company-overview-section .card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
    overflow: hidden;
}

.how-we-build-section.company-overview-section .card .icon{
	margin:0px auto 20px auto;
}
.how-we-build-section.company-overview-section .card h3{
	    margin: 10px 0 0 0;
}
.how-we-build-section.company-overview-section .info-box p{
	max-width: 100%;
}
.how-we-build-section.company-overview-section .info-box::after{
	display: none;
}
.how-we-build-section.company-overview-section .what-we-do-list ul li{
	padding:10px 10px 10px 50px!important; 
	border-radius: 14px;
	background: #F0F9F7;
}

.how-we-build-section.company-overview-section .what-we-do-list ul li:before{
	left: 15px;
}

/* HERO SECTION */
.building-for-the-long-term {
  min-height: 100vh;
  background: radial-gradient(
      circle at bottom right,
      rgba(90, 170, 160, 0.15),
      transparent 40%
    ),
    radial-gradient(
      circle at top left,
      rgba(90, 170, 160, 0.12),
      transparent 45%
    ),
    #062b28;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

/* CONTENT */
.building-for-the-long-term .content {
  max-width: 820px;
}

/* TOP DOT */
.building-for-the-long-term .top-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;

}
 
.building-for-the-long-term .top-dot::after {
  content: "";
  width: 50px;
  height: 1.5px;
  background: linear-gradient(90deg, #3D9B8F, #062b28);
}
.building-for-the-long-term .top-dot::before {
  content: "";
  width: 50px;
  height: 1.5px;
  background: linear-gradient(90deg, #062b28, #3D9B8F);
}

.building-for-the-long-term .top-dot span {
  width: 10px;
  height: 10px;
  background: #3D9B8F;
  box-shadow: 0 0 0 3px rgba(95, 191, 180, 0.15);
  border-radius: 50%;
  margin: 0 12px;
}

/* HEADINGS */
.building-for-the-long-term .content h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 50px;
}

.building-for-the-long-term .content h1 span {
  color: #5fbfb4;
  font-weight: 400;
}

/* PARAGRAPH */
.building-for-the-long-term .content p {
  font-size: 20px;
  line-height: 1.7;
  color: #A8D5CC;
  max-width: 680px;
  margin: 0 auto 80px;
}

/* BOTTOM CIRCLE */
.building-for-the-long-term .content .circle-wrap {
  display: flex;
  justify-content: center;
}

.building-for-the-long-term .content .circle-wrap .outer-ring {
  width: 90px;
  height: 90px;
  border: 2px solid #3D9B8F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.building-for-the-long-term .content .circle-wrap .outer-ring .inner-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(90deg, #3D9B8F, #2A6B61);
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 600px) { 
.how-we-build-section .info-box::after {  
    right: auto!important;
    left: auto!important;
    top: auto!important;
    bottom: -50px!important;  
}
.about-what-we-do .card{
	flex-direction: column!important;
}
.about-what-we-do .number {
	bottom: 40px!important;
	right: 10px!important;
	top: auto!important;
}
.about-what-we-do .content {
	text-align: center!important;
}
.about-what-we-do span.arrow {
	display: none!important;
}
}


.about-what-we-do {
  background: linear-gradient(180deg, #062825 0%, #041c1a 100%);
  padding: 100px 0px;
}


.about-what-we-do .section-header {
  max-width: 800px;
  margin-bottom: 30px;
}

.about-what-we-do .section-header .line {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #3D9B8F, #0f3d36); 
  display: block;
  margin-bottom: 14px;
}

.about-what-we-do .eyebrow {
      font-size: 16px;
    letter-spacing: 2px;
    color: #9fdad3;
}

.about-what-we-do .section-header h2 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 400;
  color: #fff;
}

.about-what-we-do .cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-what-we-do .card {
  position: relative;
  background: rgba(255, 255, 255, 5%);
  border: 2px solid rgba(61, 155, 143, 20%);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.about-what-we-do .icon {
  width: 70px;
  height: 70px;
  background: rgba(61, 155, 143, 20%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.about-what-we-do .card:hover {
  transform: translateY(-6px);
  border-color: #3D9B8F;
  box-shadow: 0 10px 20px rgba(91,198,180,0.25);
}

.about-what-we-do .card:hover .icon {
  background: #00A088;
  color: #ffffff;
}

.about-what-we-do .card:hover .icon img{
  filter: brightness(0) invert(1);
}
 


.about-what-we-do .content h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #fff;
}

.about-what-we-do .content h3 span {
  opacity: 0.6;
  margin:0 0 0 10px;
}

.about-what-we-do .content p {
  font-size: 17px;
  font-weight: 400; 
  color: #7FA89F;
  padding: 0px;
  margin:0px;
}

.about-what-we-do .number {
  position: absolute;
  top: 35px;
  right: 30px;
  font-size: 80px;
  font-weight: 700;
  opacity: 0.10;
  color: #3D9B8F;
}

.about-what-we-do .text {
  margin: 40px auto 0px auto;
  font-size: 16px;
  color: #7FA89F;
  font-weight: 400; 
  text-align: center;
  max-width: 800px;
}
.about-what-we-do .text span { 
  color: #A8D5CC; 
}


/************************************/
/***    06. Our Services Css      ***/
/************************************/

.our-services{
	background: var(--secondary-color);
	padding: 60px 0;
}

.our-service-content{
	position: sticky;
	top: 20px;
}

.our-service-list{
	display: flex;
	flex-wrap: wrap;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	overflow: hidden;
}

.service-item{
	position: relative;
	width: 50%;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	padding: 40px;
	overflow: hidden;
}

.service-item:nth-child(odd){
	border-bottom: none;
}

.service-item:nth-child(even){
	border-left: none;
	border-bottom: none;
}

.service-item:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.service-item:hover::before,
.service-item.active::before{
	top: auto;
    height: 100%;
}

.service-content-box{
	display: flex;
}

.service-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	overflow: hidden;
}

.service-item .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 5px;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.service-item:hover .icon-box:before,
.service-item.active .icon-box::before{
	top: auto;
	height: 100%;
}

.service-item .icon-box img{
	position: relative;
	z-index: 1;
	max-width: 34px;
}

.service-item-content{
	position: relative;
    width: calc(100% - 70px);
    z-index: 1;
}

.service-item-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.service-item-content p{
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-item-content h3,
.service-item.active .service-item-content h3,
.service-item:hover .service-item-content p,
.service-item.active .service-item-content p{
	color: var(--white-color);
}

.service-btn{
	position: relative;
	width: 56px;
	height: 32px;
	background: var(--accent-color);
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.service-btn::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--primary-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-btn::before,
.service-item.active .service-btn::before{
	top: auto;
	bottom: 0;
    height: 100%;
}

.service-btn img{
	position: relative;
	max-width: 20px;
	z-index: 1;
}

.service-no{
	position: absolute;
	right: 40px;
	bottom: -40px;
	z-index: 1;
}

.service-no h2{
	font-size: 100px;
	letter-spacing: 0.03em;
	color: transparent;
    -webkit-text-stroke-width: 1px;
    stroke-width: 10px;
    -webkit-text-stroke-color: var(--divider-color);
    stroke: var(--divider-color);
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-no h2,
.service-item.active .service-no h2{
	-webkit-text-stroke-color: var(--white-color);
    stroke: var(--white-color);
}

.service-footer{
	margin-top: 40px;
}

.service-footer p{
	margin-bottom: 0;
}

.service-footer p a{
	font-weight: 700;
	text-decoration: underline;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.service-footer p a:hover{
	color: var(--primary-color);
}

/************************************/
/***      07. Why Choose Us Css   ***/
/************************************/

.why-choose-us{
	padding: 100px 0;
}

.why-choose-content{
	margin-right: 30px;
}

.why-choose-box-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.why-choose-box{
	width: calc(50% - 15px);
}

.why-choose-box .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}

.why-choose-box .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 5px;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.why-choose-box:hover .icon-box:before{
	transform: scale(1);
}

.why-choose-box .icon-box img{
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.why-choose-box-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.why-choose-box-content p{
	margin: 0;
}

.why-choose-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
}

.why-choose-list ul li{
	width: calc(50% - 15px);
	position: relative;
	color: var(--primary-color);
	text-transform: capitalize;
	padding-left: 30px;
}

.why-choose-list ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 50%;
    left: 0;
	transform: translateY(-50%);	
}

.why-choose-image{
	position: relative;
	padding: 0 0 165px 235px;
}

.why-choose-img-2{
	max-width: 375px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.why-choose-img-1 figure,
.why-choose-img-2 figure{
	display: block;
	border-radius: 20px;
}

.why-choose-img-1 img,
.why-choose-img-2 img{
	width: 100%;
	aspect-ratio: 1 / 1.09;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-contact-circle{
	position: absolute;
	right: 50px;
	bottom: 0;
	animation: infiniterotate 30s infinite linear;
}

.why-choose-contact-circle img{
	max-width: 130px;
}

/************************************/
/***      08. Our Feature Css     ***/
/************************************/

.our-feature{
	padding: 60px 0;
	background-color: var(--dark-color); 
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.our-feature-list{
	display: flex;
	flex-wrap: wrap;
}

.our-feature-item{
	width: 33.33%;
	padding: 40px;
	border-radius: 20px;
}

.our-feature-item:nth-child(odd){
	background: var(--dark-divider-color);
}

.our-feature-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--dark-divider-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	overflow: hidden;
}

.our-feature-item .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 5px;
    height: 100%;
    width: 100%;
	transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.our-feature-item:hover .icon-box:before,
.our-feature-item.active .icon-box::before{
	transform: scale(1);	
}

.our-feature-item:nth-child(odd) .icon-box{
	background: var(--dark-color);
}

.our-feature-item .icon-box img{
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.feature-item-content h3{
	color: var(--white-color);
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.feature-item-content p{
	color: var(--white-color);
	opacity: 80%;
	margin: 0;
}

.our-feature-footer{
	text-align: center;
	margin-top: 60px;
}

.our-feature-footer p{
	color: var(--white-color);
	margin: 0;
}

.our-feature-footer p span{
	background-color: var(--accent-color);
	color: var(--white-color);
	border-radius: 100px;
	line-height: 1.1em;
	padding: 2px 10px;
	margin-right: 5px;
}

.our-feature-footer a{
	font-weight: 700;
	text-decoration: underline;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.our-feature-footer a:hover{
	color: var(--primary-color);
}

/************************************/
/***     09. Fact Counter Css     ***/
/************************************/

.fact-counter{
	padding: 60px 0;
}

.fact-counter-image{
	position: relative;
	padding: 0 45px 0 0;
}

.fact-counter-img figure{
	display: block;
	border-radius: 20px;
}

.fact-counter-img img{
	width: 100%;
	aspect-ratio: 1 / 0.945;
	object-fit: cover;
	border-radius: 20px;
}

.fact-counter-skillbar{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	max-width: 350px;
	border-radius: 20px;
	animation: moveskillbar 3s infinite linear alternate;
}

@keyframes moveskillbar{
	50%{
		right: 40px;
	}
}

.fact-counter-skillbar img{
	border-radius: 20px;
}

.fact-counter-content{
	margin-left: 20px;
}

.fact-counter-box-list{
	display: flex;
	gap: 30px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.fact-counter-box{
	width: calc(33.33% - 20px);
}

.fact-counter-box .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	justify-content: center;
	align-items: center;
	display: flex;
	background-color: var(--accent-color);
	border-radius: 5px;
	margin-bottom: 20px;
	overflow: hidden;
}

.fact-counter-box .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
	border-radius: 5px;
	transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.fact-counter-box:hover .icon-box::before{
	transform: scale(1);
}

.fact-counter-box .icon-box img{
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.fact-counter-box-content h2{
	font-size: 46px;
	color: var(--dark-color);
	margin-bottom: 10px;
}

.fact-counter-box-content p{
	text-transform: capitalize;
	margin-bottom: 0;
}

.fact-counter-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
}

.fact-counter-list ul li{
	width: calc(50% - 15px);
	position: relative;
	color: var(--primary-color);
	text-transform: capitalize;
	padding-left: 30px;
}

.fact-counter-list ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 50%;
    left: 0;
	transform: translateY(-50%);
}

/************************************/
/***      10. What We Do Css      ***/
/************************************/

.what-we-do{
	background-color: var(--secondary-color);
	padding: 60px 0;
}

.what-we-do-content{
	margin-right: 30px;
}

.what-we-do-list{
	margin-bottom: 40px;
}

.what-we-do-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
}

.what-we-do-list ul li{
	width: calc(50% - 15px);
	position: relative;
	color: var(--primary-color);
	text-transform: capitalize;
	padding-left: 30px;
}

.what-we-do-list ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 50%;
    left: 0;
	transform: translateY(-50%);
}

.what-we-do-images{
	position: relative;
	padding: 0 80px 100px 15px;
}

.what-do-we-img-1 figure,
.what-do-we-img-2 figure{
	display: block;
	border-radius: 20px;
}

.what-do-we-img-1 img{
	width: 100%;
	aspect-ratio: 1 / 0.831;
	object-fit: cover;
	border-radius: 20px;
}

.what-do-we-img-2{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	max-width: 280px;
}

.what-do-we-img-2 img{
	width: 100%;
	aspect-ratio: 1 / 0.723;
	object-fit: cover;
	border: 9px solid var(--secondary-color);
	border-radius: 20px;
}

.experience-counter-box{
	position: absolute;
	bottom: 45px;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 275px;
	background-color: var(--white-color);
	border-left: 2px solid var(--accent-color);
	border-radius: 5px;
	padding: 15px;
	overflow: hidden;
	animation: yearbox 3s infinite linear alternate;
}

@keyframes yearbox{
	50%{
		left: 30px;
	}
}

.experience-counter-box::before{
	content: '';
    position: absolute;
    top: 0;
	left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.experience-counter-box:hover::before{
    width: 100%;
}

.experience-counter-no{
	margin-right: 15px;
}

.experience-counter-no h2{
	position: relative;
	font-size: 46px;
	line-height: normal;
	letter-spacing: -0.02em;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.experience-counter-content{
	width: 60%;
}

.experience-counter-content p{
	position: relative;
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.experience-counter-box:hover .experience-counter-no h2,
.experience-counter-box:hover .experience-counter-content p{
	color: var(--white-color);
}

/************************************/
/***      11. How It Work Css     ***/
/************************************/

.how-it-work{
	padding: 60px 0;
}

.how-it-work-content{
	position: sticky;
	top: 30px;
}

.work-step-item{
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 40px 40px 0 40px;
	margin-bottom: 40px;
	overflow: hidden;
}

.work-step-item:last-child{
	margin-bottom: 0;
}

.work-step-item::before{
    content: '';
    display: block;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    width: 100%;
    height: 0;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.work-step-item:hover::before{
    height: 100%;
    top: 0;
    bottom: auto;
}

.work-step-item-content{
	position: relative;
	margin-bottom: 15px;
	z-index: 1;
}

.work-step-item-content h3{
	font-size: 16px;
	text-transform: uppercase;
	color: var(--accent-color);
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.work-step-item-content h2{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.work-step-item:hover .work-step-item-content h3,
.work-step-item:hover .work-step-item-content h2{
	color: var(--white-color);
}

.work-step-item-content p{
	margin-bottom: 0;
	transition: all 0.3s ease-in-out;
}

.work-step-item:hover .work-step-item-content p{
	color: var(--white-color);
	opacity: 80%;
}

.work-step-item-no{
	position: relative;
	margin-bottom: -35px;
	z-index: 1;
}

.work-step-item-no h2{
    font-size: 100px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: transparent;
    stroke-width: 10px;
    -webkit-text-stroke-width: 1px;
	stroke: var(--text-color);
    -webkit-text-stroke-color: var(--text-color);
	opacity: 15%;
    transition: all 0.4s ease-in-out;
}

.work-step-item:hover .work-step-item-no h2{
	stroke: var(--white-color);
	-webkit-text-stroke-color: var(--white-color);
}

/************************************/
/***      12. Our Pricing Css     ***/
/************************************/

.our-pricing{
	background-color: var(--secondary-color);
	padding: 60px 0;
}

.pricing-box{
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 0px);
	margin-bottom: 0px;
	padding: 30px;
}

.pricing-header{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.pricing-header h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.pricing-header h2{
	font-size: 46px;
	color: var(--accent-color);
}

.pricing-header sup{
	font-size: 30px;
	top: -6px;
}

.pricing-header sub{
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	color: var(--text-color);
	bottom: 0;
}

.pricing-body{
	margin-bottom: 30px;
}

.pricing-list-title{
	margin-bottom: 20px;
}

.pricing-list-title h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}

.pricing-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.pricing-list ul li{
	position: relative;
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 10px;
}

.pricing-list ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: var(--accent-color);
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
	transform: translateY(-50%);
}

.pricing-list ul li:last-child{
	margin-bottom: 0;
}

.pricing-btn .btn-default{
	width: 100%;
	text-align: center;
}

.pricing-box.highlighted-box{
	position: relative;
	background-color: var(--dark-color);
	overflow: hidden;
}

.highlighted-box::before{
	content: 'featured';
	position: absolute;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--dark-color);
	top: 35px;
    right: -45px;
	width: 190px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--white-color);
	transform: rotate(45deg);
}

.pricing-box.highlighted-box .pricing-header{
	border-color: var(--dark-divider-color);
    padding: 0 60px 30px 0;
}

.pricing-box.highlighted-box .pricing-header h3,
.pricing-box.highlighted-box .pricing-header h2,
.pricing-box.highlighted-box .pricing-header h2 sub,
.pricing-box.highlighted-box .pricing-list-title h3,
.pricing-box.highlighted-box .pricing-list ul li,
.pricing-box.highlighted-box .pricing-list ul li::before{
	color: var(--white-color);
}

.pricing-header .icon-box img{
	max-width: 32px;
}
.pricing-box.highlighted-box .pricing-btn .btn-default{
	background: var(--white-color);
	color: var(--dark-color);
}

.pricing-box.highlighted-box .pricing-btn .btn-default:hover{
	color: var(--white-color);
}

.pricing-box.highlighted-box .pricing-btn .btn-default:hover::before{
	background: var(--accent-color);
}

.pricing-benefit-list{
	margin-top: 30px;
}

.pricing-benefit-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
	gap: 20px 40px;
}

.pricing-benefit-list ul li{
	color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list ul li img{
	max-width: 20px;
	margin-right: 15px;
}


.cash-management-page .pricing-box{
    padding: 20px;
}

.cash-management-page .pricing-header .icon-box {
    position: relative;
    width: 36px;
    height: 36px; 
    margin-right: 10px;
}

.cash-management-page .pricing-header .icon-box img {
    max-width: 20px;
}
/************************************/
/***       13. Our FAQs Css       ***/
/************************************/

.our-faqs{
	padding: 60px 0;
}

.our-faqs-image{
	position: relative;
	padding-right: 70px;
}

.our-faqs-img figure{
	display: block;
	border-radius: 20px;
}

.our-faqs-img img{
	width: 100%;
	aspect-ratio: 1 / 1.065;
	object-fit: cover;
	border-radius: 20px;
}

.client-review-box{
	position: absolute;
	bottom: 40px;
	right: 0;
	width: 100%;
	max-width: 210px;
	text-align: center;
	background-color: var(--dark-color);
	border-radius: 10px;
	padding: 20px;
	animation: reviewbox 3s infinite linear alternate;
}

@keyframes reviewbox{
	50%{
		right: 50px;
	}
}

.client-review-box-content{
	margin-bottom: 15px;
}

.client-review-box-content p{
	font-size: 18px;
	font-weight: 500;
	color: var(--white-color);
	margin-bottom: 0;
}

.client-review-box-content p span{
	font-size: 16px;
	font-weight: 400;
	display: block;
}

.client-review-images{
	display: inline-flex;
}

.client-review-images .client-image{
	position: relative;
    display: inline-block;
    margin-left: -10px;
    border: 1px solid var(--dark-color);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.client-review-images .client-image:first-child{
    margin: 0;
}

.client-review-images .client-image figure{
	display: block;
}

.client-review-images .client-image img{
    max-width: 50px;
}

.client-image.add-more{
	width: 32px;
	height: 32px;
	background-color: var(--white-color);
	text-align: center;
	display: inline-flex;
    align-items: center;
    justify-content: center;
	transition: all 0.3s ease-in-out;
}

.client-image.add-more:hover{
	background-color: var(--accent-color);
}

.client-image.add-more p{
	font-size: 12px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.client-image.add-more:hover p{
	color: var(--white-color);
}

.faq-accordion .accordion-item{
    border: 1px solid var(--divider-color);
	border-radius: 10px;
	margin-bottom: 30px;
    padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button{
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2em;
	padding: 16px 45px 16px 20px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed){
   background-color: var(--dark-color);
   color: var(--white-color);
   border-bottom: 1px solid var(--dark-divider-color);
}

.faq-accordion .accordion-header .accordion-button.collapsed{
	background-color: var(--white-color);
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f068';
	font-family: "Font Awesome 6 Free";
	font-size: 20px;
	font-weight: 900;
	color: var(--white-color);
	position: absolute;
	right: 16px;
	top: 50%;
	bottom: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	transform: translate(0px, -10px);
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f067';
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body{
	background-color: var(--dark-color);
	padding: 16px 45px 16px 20px;
}

.faq-accordion .accordion-item .accordion-body p{
    color: var(--white-color);
	opacity: 80%;
	margin: 0;
}

.faq-accordion.investor-info-accordion .accordion-button:not(.collapsed){
	background-color: var(--accent-color)!important; 
}
.faq-accordion.investor-info-accordion .accordion-item .accordion-body {
	background-color: transparent!important;
	padding: 20px!important;
}
.faq-accordion.investor-info-accordion p{color: #000!important;}
.investor-info-pages-section .table-striped>tbody>tr th{border-bottom-width: 0px!important; padding: 15px 20px!important}
.investor-info-pages-section .table-striped>tbody>tr td{border-bottom-width: 0px!important; padding: 15px 20px!important}
.investor-info-pages-section .table-striped>tbody .service-btn i{color: #fff;}
/************************************/
/***   14. Our Testimonial Css    ***/
/************************************/

.our-testimonial{
	padding: 100px 0;
	background:  var(--secondary-color);
}

.testimonial-content{
	margin-right: 40px;
}

.testimonial-slider-box{
	background-color: #fff;
	backdrop-filter: blur(20px);
	padding: 50px 40px;
	border-radius: 20px;
	margin-bottom: 30px;
}

.testimonial-slider{
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 50px;
	padding-bottom: 50px;
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonial-header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.customer-logo img{
	width: 100%;
	max-width: 170px;
}

.testimonial-quotes{
	margin-left: 20px;
}

.testimonial-quotes img{
	width: 100%;
	max-width: 40px;
}

.testimonial-body{
	margin-bottom: 20px;
}

.testimonial-body p{
	color: var(--text-color); 
	margin: 0;
	font-size: 18px;
}

.testimonial-author{
	width: 100%;
	display: flex;
	align-items: center;
}

.testimonial-author .author-image{
	margin-right: 20px;
}

.testimonial-author .author-image figure{
	display: block;
	border-radius: 5px;
}

.testimonial-author .author-image img{
	max-width: 70px;
	border-radius: 10px;
}

.testimonial-author .author-content{
	width: calc(100% - 60px);
}

.testimonial-author .author-content h3{
	position: relative;
	display: inline-block;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: capitalize;
	color: #000;
	padding-right: 20px;
}

.testimonial-author .author-content p{
	font-size: 12px;
	line-height: normal;
	font-weight: 400;
	text-transform: capitalize;
	color: var(--text-color);
	opacity: 80%;
	margin: 0;
}
.testimonial-author .author-image .author-company img{
	width: 100%;
}
.testimonial-slider .swiper {padding-bottom: 30px;}
.testimonial-slider .testimonial-pagination{
	position: relative;
	top: 35px;
	right: 0;
    text-align: right;
	z-index: 1;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet{
	position: relative;
    height: 12px;
    width: 12px;
    background: var(--white-color);
    margin: 0 8px;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active{
	background: var(--accent-color);
}

/*.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active:before{
	height: 24px;
	width: 24px;
	border: 1px solid var(--accent-color);
}*/

.customer-rating-boxes{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
}

.customer-rating-box{
	width: calc(33.33% - 26.67px);
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	border: 1px solid var(--dark-divider-color);
	border-radius: 10px;
	padding: 10px;
}

.customer-rating-image{
	margin-right: 10px;
}

.customer-rating-image img{
	width: 100%;
	max-width: 40px;
}

.customer-rating-content p{
	color: var(--white-color);
	text-transform: capitalize;
	display: block;
	margin-bottom: 5px;
}

.customer-rating-counter{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.customer-rating-counter h3{
	font-size: 20px;
	font-weight: 500;
	color: var(--white-color);
}

.customer-rating-star-box{
	text-align: center;
}

.customer-rating-star i{
	font-size: 12px;
	color: var(--white-color);
}

.customer-rating-counter p{
	text-transform: capitalize;
	text-align: center;
	color: var(--white-color);
	margin-right: 10px;
	margin-bottom: 0;
}

.customer-rating-counter p span{
	display: block;
	font-size: 20px;
	font-weight: 500;
}

.star-rating-img img{
	width: 100%;
	max-width: 85px;
}

.customer-rating-box.customer-rating-content p{
	margin: 0;
}


.humansOfVeefin-slider{
	width: 100%;
	margin: 0px;
	padding:0px;
}
.humansOfVeefin-slider .swiper{
	width: 100%;
	margin: 0px;
	padding-bottom: 30px;
}

.humansOfVeefin-slider .swiper-wrapper{
	cursor: none;
}

.humansOfVeefin-slider .swiper-wrapper .swiper-slide .team-member-item{
	width: 100%;
	margin:0px;
	padding: 0px;
	background-color: #fff;
	padding: 10px; 
}

.humansOfVeefin-slider .swiper-wrapper .swiper-slide .team-member-item .team-image img{
	width: 100%;
	margin:0px;
	padding: 0px; 
} 
.humansOfVeefin-slider .swiper-wrapper .swiper-slide .team-content h3{
	color: #000;
	font-size: 18px
}
.humansOfVeefin-slider .swiper-wrapper .swiper-slide .team-content p{
	color: var(--accent-color);
	font-size: 13px
}

.humansOfVeefin-slider .awards-pagination{
	position: relative;
	bottom: -30px;
	right: 0;
    text-align: center;
	z-index: 1;
}

.humansOfVeefin-slider .awards-pagination .swiper-pagination-bullet{
	position: relative;
    height: 12px;
    width: 12px;
    background: #000;
    margin: 0 8px;
	transition: all 0.3s ease-in-out;
}

.humansOfVeefin-slider .awards-pagination .swiper-pagination-bullet:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.humansOfVeefin-slider .awards-pagination .swiper-pagination-bullet-active{
	background: var(--accent-color);
}


.awards-slider{
	width: 100%;
	margin: 0px;
	padding:0px;
}
.awards-slider .swiper{
	width: 100%;
	margin: 0px;
	padding-bottom: 30px;
}

.awards-slider .swiper-wrapper{
	cursor: none;
}

.awards-slider .swiper-wrapper .swiper-slide .awards-item img{
	width: 100%;
	margin:0px;
	padding: 0px;
	border-radius: 20px;
}
 

.awards-slider .awards-pagination{
	position: relative;
	bottom: -30px;
	right: 0;
    text-align: center;
	z-index: 1;
}

.awards-slider .awards-pagination .swiper-pagination-bullet{
	position: relative;
    height: 12px;
    width: 12px;
    background: #000;
    margin: 0 8px;
	transition: all 0.3s ease-in-out;
}

.awards-slider .awards-pagination .swiper-pagination-bullet:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.awards-slider .awards-pagination .swiper-pagination-bullet-active{
	background: var(--accent-color);
}


.careers-awards-slider{
	width: 100%;
	margin: 0px;
	padding:0px;
}
.careers-awards-slider .swiper{
	width: 100%;
	margin: 0px;
	padding-bottom: 30px;
}

.careers-awards-slider .swiper-wrapper{
	cursor: none;
}

.careers-awards-slider .swiper-wrapper .swiper-slide .awards-item img{
	width: 100%;
	margin:0px;
	padding: 0px;
	border-radius: 20px;
}
 

.careers-awards-slider .awards-pagination{
	position: relative;
	bottom: -30px;
	right: 0;
    text-align: center;
	z-index: 1;
}

.careers-awards-slider .awards-pagination .swiper-pagination-bullet{
	position: relative;
    height: 12px;
    width: 12px;
    background: #000;
    margin: 0 8px;
	transition: all 0.3s ease-in-out;
}

.careers-awards-slider .awards-pagination .swiper-pagination-bullet:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.careers-awards-slider .awards-pagination .swiper-pagination-bullet-active{
	background: var(--accent-color);
}

/************************************/
/***       15. Our Blog Css       ***/
/************************************/

.our-blog{
	padding: 60px 0 60px;
}
.events-section .post-item{
	flex-wrap: inherit;
	padding-right: 20px; 
}

.events-section .post-item
.post-featured-image {
	width: calc(40% - 0px);
}

.events-section .post-item 
.post-item-body{
	width: calc(60% - 0px);
}

.post-item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image,
.post-item-body{
	width: calc(30% - 15px);
}

.post-featured-image a{
    cursor: none;
}

.post-featured-image figure,
.post-featured-image a{
    display: block;
	border-radius: 20px;
}

.post-featured-image img{
    width: 100%;
	aspect-ratio: 1 / 0.85;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img{
    transform: scale(1.1);
}
.awards-section .post-featured-image img{aspect-ratio: inherit!important;transition: inherit!important;}
.awards-section.post-item:hover .post-featured-image img{transform: inherit!important;}
.awards-section.post-item{gap: 50px!important; margin-bottom: 0px!important;}

.post-item-meta{
    margin-bottom: 20px;
}

.post-item-meta ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.post-item-meta ul li{
    color: var(--text-color);
    text-transform: capitalize;
    display: inline-block;
    margin-right: 15px;
}

.post-item-meta ul li:last-child{
    margin-right: 0;
}

.post-item-meta ul li i{
	color: var(--text-color);
	font-size: 16px;
	margin-right: 5px;
}

.post-item-content{
	margin-bottom: 20px;
}
.events-section .post-item-content h2{
	font-size: 17px;
	display: -webkit-box; /* Required for -webkit-line-clamp to work */
  -webkit-box-orient: vertical; /* Required for -webkit-line-clamp to work */
  overflow: hidden; /* Hides the overflowing content */
  -webkit-line-clamp: 2; /* Limits the text to 3 lines */
  /* For better cross-browser compatibility, consider adding the unprefixed version as well */
  line-clamp: 2;
}
.post-item-content h2{
    font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1.4em;
}

.post-item-content h2 a{
    color: inherit;
}

.readmore-btn{
	position: relative;
	font-size: 18px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 35px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover{
	color: var(--primary-color);
}

.readmore-btn::before{
	content: '';
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 0;
	transform: translateY(-50%);
	background: url('../images/arrow-accent.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	width: 24px;
	height: 24px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover:before{
	filter: brightness(0) invert(0);
}

/************************************/
/***        16. Footer Css        ***/
/************************************/

footer.main-footer{
	background: var(--dark-color);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	padding: 60px 0 0 0;
}

.footer-newsletter-box{
    margin-right: 120px;
}

.footer-newsletter-title{
	margin-bottom: 40px;
}

.footer-newsletter-title h3{
	font-size: 34px;
	color: var(--white-color);
}

.newsletter-form .form-group{
	display: flex;
}

.newsletter-form .form-group .form-control{
	width: 85%;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4em;
	color: var(--white-color);
	background: transparent;
	border: 1px solid var(--dark-divider-color);
	border-right: none;
	border-radius: 10px 0 0 10px;
	outline: none;
	box-shadow: none;
	padding: 15px;
	opacity: 80%;
}

.newsletter-form .form-group .form-control::placeholder{
	color: var(--white-color);
	opacity: 80%;
}

.newsletter-form .form-group .newsletter-btn{
	background-color: var(--accent-color);
	width: 15%;
	border: none;
	border-radius: 0 10px 10px 0;
	padding: 15px;
	transition: all 0.3s ease-in-out;
}

.newsletter-form .form-group .newsletter-btn:hover{
	background-color: var(--primary-color);
}

.newsletter-form .form-group .newsletter-btn img{
	max-width: 28px;
}

.footer-links h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-links ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links ul li{
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
	opacity: 80%;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover{
	color: var(--accent-color);
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li a{
	color: inherit;
}

.footer-cta-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	background-color: var(--dark-divider-color);
	border-radius: 20px;
	margin-top: 30px;
	padding: 20px 30px;
}

.footer-logo{
	width: calc(20% - 10px);
}

.footer-logo img{
	width: 100%;
	max-width: 210px;
}

.footer-contact-box{
	width: calc(80% - 10px);
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	gap: 30px 80px;
}

.footer-contact-item{
	position: relative;
}

.footer-contact-item::before{
	content: '';
	position: absolute;
	right: -40px;
	bottom: 0;
	background-color: var(--dark-divider-color);
	height: 100%;
	width: 1px;
}

.footer-contact-item:last-child::before{
	display: none;
}

.footer-contact-item p{
	color: var(--white-color);
	opacity: 80%;
	margin-bottom: 10px;
}

.footer-contact-item h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);	
}

.footer-copyright{
	padding: 30px 0;	
}

.footer-copyright-text p{
	color: var(--white-color);
	margin: 0;
	opacity: 80%;
}

.footer-menu ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: right;
}

.footer-menu ul li{
	position: relative;
	display: inline-block;
	text-transform: capitalize;
	line-height: normal;
	color: var(--white-color);
	margin-right: 40px;
	opacity: 80%;
	transition: all 0.3s ease-in-out;
}

.footer-menu ul li:last-child{
	margin-right: 0;
}

.footer-menu ul li::before{
	content: '';
	position: absolute;
	top: 50%;
	right: -23px;
	background-color: var(--dark-divider-color);
	border-radius: 50%;
	height: 6px;
	width: 6px;
	transform: translateY(-50%);
}

.footer-menu ul li:last-child:before{
	display: none;
}

.footer-menu ul li:hover{
	color: var(--accent-color);
}

.footer-menu ul li a{
	color: inherit;
}

/************************************/
/***     17. About Us Page Css    ***/
/************************************/

.page-header{
	background-color: #003627;
	/*background-color: var(--dark-color);
	background-image: url('../images/page-header-bg.svg');*/
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 160px 0 70px 0;
}

.page-header-box{
	text-align: center;
}

.page-header-box h1{
	display: inline-block;
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: -0.02em;
    color: var(--white-color);
	text-align: center;
    margin-bottom: 10px;
    cursor: none;
}

.page-header-box ol{
	justify-content: center;
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
	font-size: 18px;
    color: var(--white-color);
}
.page-header-box ol li.breadcrumb-item.active{color: var(--accent-color);}
.our-approach{
	background: var(--secondary-color);
	padding: 60px 0 60px;
}

.mission-vission-item.start-your-journey .icon-box{
	width: 100px;
} 
.mission-vission-item.start-your-journey .service-btn{
	position: relative;
	width: 56px;
	height: 32px;
	background: var(--accent-color);
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}
.mission-vission-item.start-your-journey .service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #000!important;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}


.mission-vission-item.start-your-journey:hover .service-btn::before,
.mission-vission-item.start-your-journey.active .service-btn::before{
	top: auto;
	bottom: 0;
    height: 100%;
}

.mission-vission-item{
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px; 
	overflow: hidden;
}

.mission-vission-header{
	position: relative;
	padding: 40px;
}

.mission-vission-header:after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.mission-vission-item:hover .mission-vission-header::after{
	top: auto;
	bottom: 0;
    height: 100%;
}

.mission-vission-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	z-index: 1;
	overflow: hidden;
}

.mission-vission-item .icon-box:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--primary-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.mission-vission-item:hover .icon-box:before{
	top: auto;
    height: 100%;
}

.mission-vission-item .icon-box img{
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.mission-vission-content{
	position: relative;
	z-index: 1;
}

.mission-vission-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.mission-vission-content p{
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.mission-vission-item:hover .mission-vission-content h3,
.mission-vission-item:hover .mission-vission-content p{
	color: var(--white-color);
}

.mission-vission-image img{
	width: 100%;
	aspect-ratio: 1 / 0.59;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.mission-vission-item:hover .mission-vission-image img{
	transform: scale(1.1);
}

.our-benefit{
	padding: 60px 0;
}

.our-benefit-content{
	margin-right: 30px;
}

.our-benefit-content.margin-left{
	margin-left: 30px;
	margin-right: 0px;
}

.our-benefit-img{
	margin-top: 30px;
}

.our-benefit-img figure{
	display: block;
	border-radius: 20px;
}

.our-benefit-img img{
	width: 100%;
	aspect-ratio: 1 / 0.543;
	object-fit: cover;
	border-radius: 20px;
}

.our-benefit-box{
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 60px 0px;
}

.our-benefit-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin:0px;
}

.column-3 .our-benefit-item{
	position: relative;
	width: calc(32% - 10px);
	background: var(--white-color);
	border-radius: 20px;
	padding: 30px;
	overflow: hidden;
}

.our-benefit-item{
	position: relative;
	width: calc(50% - 15px);
	background: var(--white-color);
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
}

.our-benefit-item:after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover::after{
	top: auto;
	bottom: 0;
    height: 100%;
}

.our-benefit-item .icon-box{
	margin-bottom: 40px;
}

.our-benefit-item .icon-box img{
	position: relative;
	z-index: 1;
	max-width: 34px;
	transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.benefit-item-content{
	position: relative;
	z-index: 1;
}

.benefit-item-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.benefit-item-content p{
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover .benefit-item-content h3,
.our-benefit-item:hover .benefit-item-content p{
	color: var(--white-color);
}

.our-benefit-get-quote{
	text-align: center;
}

.our-benefit-get-quote p{
	margin-bottom: 0;
}

.our-benefit-get-quote p a{
	font-weight: 600;
	color: var(--accent-color);
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.our-benefit-get-quote p a:hover{
	color: var(--primary-color);
}

.our-partners{
	padding: 100px 0;
	background-color: var(--dark-color);
	background-image: url('../images/our-partners-bg.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.our-partners-content{
	margin-right: 80px;
}

.our-partners-list{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 25px;
	text-align: center;
}

.our-partner-item{
	width: auto;
	display: inline-flex;
	background: var(--dark-divider-color);
	border-radius: 20px;
	padding: 25px;
	text-align: center;
}

.our-partner-item:first-child{
	margin-left: 1px;
}

.our-partner-item img{
	width: 100%;
	max-height: 35px;
}

.solutions.our-partner-item{
	width: auto;
	display: inline-flex;
	background: var(--dark-divider-color);
	border-radius: 20px;
	padding: 25px;
	text-align: center;
}

.solutions.our-partner-item h1{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: #fff;
	transition: all 0.4s ease-in-out;
}

.solutions.our-partner-item img{
	width: 100%;
	max-height: 35px;
}

.our-team{
	padding: 100px 0 70px;
}
.leadership-team-page .nav.nav-pills .nav-item .nav-link{
	background-color: var(--secondary-color);
    border-radius: 30px;
    margin: 0 10px 30px 10px;
    color: #000;
    font-size: 18px; 
    font-weight: 500;
    padding: 12px 30px;
}
.leadership-team-page .nav.nav-pills .nav-item .nav-link.active{
	background: var(--accent-color);
    color: var(--white-color);
}

.leadership-team-page .team-member-item{	
	border: 0px;
    border-radius: 0px;
	padding: 0px;
	height: auto;
	margin:0 0 50px 0;
	overflow: inherit;
	text-align: center;
}

.leadership-team-page .team-member-item .team-image{
	border-radius: 0px;
	overflow: inherit;
	margin: 0 0 20px 0;
}

.leadership-team-page .team-member-item .team-image img{
	width: 150px;
	height: 150px;
	padding: 0px;
	border: 2px solid var(--accent-color);
    border-radius: 100%;
	aspect-ratio: inherit;
	object-fit: contain;
	transition: all 0.5s ease-in-out;
}

.leadership-team-page .team-member-item:hover .team-image img{
    transform: inherit;
}

.leadership-team-page .team-member-item .team-body{
    display: inherit;
    flex-wrap: inherit;
    align-items: inherit;
	justify-content: inherit;
	gap: 0px;
}

.leadership-team-page .team-member-item .team-content h3{
    color: var(--primary-color);
	font-size: 20px;
	font-weight: 900;
    text-transform: capitalize;
    margin-bottom: 5px;
}
 
.leadership-team-page .team-member-item:hover .team-content h3{
    color: var(--accent-color);
}

.leadership-team-page .team-member-item .team-content p{
    text-transform: capitalize;
    margin: 0;
    font-size: 14px;
    color: var(--text-color);
}

.team-single-img img.leadership-team-modal-img{	
	width: 200px;
	height: 200px;
	padding: 0px;
	border: 2px solid var(--accent-color);
    border-radius: 100%;
	aspect-ratio: inherit;
	object-fit: contain;
	transition: all 0.5s ease-in-out;
}

.team-member-item{
	border: 0px;
    border-radius: 0px;
	padding: 0px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}
.letter-from-our-founder.team-member-item{height: auto; margin-bottom: 0px; border: 1px solid var(--divider-color); border-radius: 20px;  padding: 0px 20px;}
.letter-from-our-founder.team-member-item img{border-radius: 10px;}
.team-image{
	border-radius: 0px;
	overflow: hidden;
	margin-bottom: 30px;
}

.team-image a{
	display: block;
	cursor: none;
}

.team-image img{
	width: 100%;
	aspect-ratio: 1 / 1.083;
	object-fit: cover;
    border-radius: 0px;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img{
    transform: scale(1.1);
}

.team-body{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
	justify-content: space-between;
	gap: 15px 10px;
}

.team-content h3{
    color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.team-content h3 a{
    color: inherit;
}

.team-content p{
    text-transform: capitalize;
    margin: 0;
}

.team-social-icon ul{
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.team-social-icon ul li{
    display: inline-block;
    margin-right: 15px;
}

.team-social-icon ul li:last-child{
    margin-right: 0;
}

.team-social-icon ul li a i{
	color: var(--accent-color);
    font-size: 20px;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover i{
	color: var(--primary-color);
}

.news-section{padding: 0 10rem;}
.news-section .team-image img{
	width: 100%;
	aspect-ratio: 1 / 1;
}
.news-section .team-content h3{
	font-size: 17px;
	display: -webkit-box; /* Required for -webkit-line-clamp to work */
  -webkit-box-orient: vertical; /* Required for -webkit-line-clamp to work */
  overflow: hidden; /* Hides the overflowing content */
  -webkit-line-clamp: 2; /* Limits the text to 3 lines */
  /* For better cross-browser compatibility, consider adding the unprefixed version as well */
  line-clamp: 2;
}

.leadership-team .leadership-team-box{
	padding: 10px;
	margin-bottom: 30px;
	border-radius: 20px;
	background-color: var(--secondary-color)!important;

}
.leadership-team .leadership-team-box .team-image{
	margin-bottom: 0px;
}
.leadership-team .leadership-team-box .team-image img{
	border-radius: 20px 0px 20px 0px!important;
}

.leadership-team .leadership-team-box .team-content{
  	display: flex;
    flex-wrap: nowrap;
    height: 145px; 
    flex-direction: column;
    align-content: flex-start;
    justify-content: space-between; 
}

.leadership-team .leadership-team-box .team-content h3{
    color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.leadership-team .leadership-team-box .team-content h6{
    color: var(--primary-color);
	font-size: 16px;
	font-weight: 500;
    text-transform: capitalize; 
}
.leadership-team .leadership-team-box .team-content a.social-icon {
    display: grid;
    align-items: center;
    justify-content: center;
    height: 26px;
    width: 26px;
    background: var(--accent-color);
    border-radius: 50%;
    color: #1C2539; 
}
.leadership-team .leadership-team-box .team-content i{
    color: #fff;
	font-size: 13px;
	font-weight: 400;
    text-transform: capitalize; 
}
/************************************/
/***    18. Services Page Css     ***/
/************************************/

.page-services{
	padding: 60px 0;
}

.page-services .service-item{
	width: 100%;
	box-shadow: 0px 0px 50px 2px #04030308;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}
.page-services .service-item.last-child{margin-bottom: 0px;height: calc(100% - 0px);}
.page-services .service-item:before{
	background: var(--dark-color);
}

.page-services .service-item .icon-box{
	margin-right: 0;
	margin-bottom: 40px;
}

.page-services .service-item-content{
	width: 100%;
}

.page-services .service-footer{
	text-align: center;
	margin-top: 10px;
}

/************************************/
/***    19. Service Single Css    ***/
/************************************/

.page-service-single{
	padding: 60px 0;
}

.service-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.board-of-directors .service-catagery-list {
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 60px;
}

.board-of-directors .service-catagery-list h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.board-of-directors .service-catagery-list ul li {
    margin-bottom: 10px;
}

.board-of-directors .service-catagery-list ul li a{font-size: 16px;}

.board-of-directors .service-catagery-list ul li:hover a {
    color: var(--white-color);
    background-color: var(--dark-color);
}
.board-of-directors .service-catagery-list ul li.active a {
    color: var(--white-color);
    background-color: var(--accent-color);
}
.board-of-directors .service-catagery-list ul li.active a::after {
    filter: brightness(0) invert(1);
}
.service-catagery-list{
	background-color: var(--secondary-color); 
	padding: 20px 0px;
	margin-bottom: 40px;
	z-index: 9999;
}

.service-catagery-list h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--accent-color);
	margin-bottom: 30px;
}

.service-catagery-list ul.column-3{
	-webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}

.service-catagery-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-catagery-list ul li{
    margin:0px;
}

.service-catagery-list ul li:last-child{
	margin-bottom: 0;
}

.service-catagery-list ul li a{
	position: relative;
    display: block;
    color: #000;
    font-size: 18px;
    background-color: var(--white-color);
    border-radius: 10px;
    text-transform: capitalize;
    padding: 10px 50px 10px 20px;
    transition: all 0.4s ease-in-out;
}

.service-catagery-list ul li:hover a{
	color: var(--white-color);
    background-color: var(--dark-color);
}

.service-catagery-list ul li a.active{
	color: var(--white-color);
    background-color: var(--accent-color);
}
.service-catagery-list ul li a.active::after{filter: brightness(0) invert(1);}
.service-catagery-list ul li a::after{
	content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background-image: url('../images/arrow-text.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    transition: all 0.4s ease-in-out;
}

.service-catagery-list ul li:hover a::after{
    filter: brightness(0) invert(1);
}

.sidebar-cta-box{
	position: relative;
	background: url('../images/cta-box-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 20px;
	padding: 40px;
}

.sidebar-cta-box:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	opacity: 60%;
	border-radius: 20px;
	z-index: 0;
}

.cta-box-content{
	margin-bottom: 40px;
}

.cta-box-content,
.cta-contact-info{
	position: relative;
	z-index: 1;
}

.cta-box-content img{
	max-width: 160px;
	margin-bottom: 20px;
}

.cta-box-content h3{
	color: var(--white-color);
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}

.cta-contact-info{
	position: relative;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0px 0px 10px 0px #04030380;
}

.cta-contact-info:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--white-color);
	opacity: 20%;
	border-radius: 10px;
	z-index: 0;
}

.cta-info-item{
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--dark-divider-color);
	z-index: 1;
}

.cta-info-item:last-child{
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

.cta-info-item p{
	color: var(--white-color);
	opacity: 80%;
	margin-bottom: 5px;
}

.cta-info-item h3{
	color: var(--white-color);
	font-size: 20px;
	font-weight: 600;
}

.service-featured-image{
	margin-bottom: 40px;
}

.service-featured-image figure{
	display: block;
	border-radius: 20px;
}

.service-featured-image img{
	width: 100%;
	aspect-ratio: 1 / 0.55;
	object-fit: cover;
	border-radius: 20px;
}

.service-entry{
	margin-bottom: 40px;
}

.service-entry h2{
	font-size: 46px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.service-entry p{
	margin-bottom: 20px;
}

.service-entry p:last-child{
	margin-bottom: 0;
}

.service-entry-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
}

.service-entry-list ul li{
	width: calc(33.33% - 13.33px);
	position: relative;
	text-transform: capitalize;
	padding-left: 30px;
}

.service-entry-list ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 3px;
    left: 0;
}

.service-list-video{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin: 40px 0;
}

.service-list-video .service-entry-list{
	width: calc(52% - 15px);
}

.service-list-video .service-entry-list ul li{
	width: 100%;
}

.service-image-video{
    position: relative;
	width: calc(48% - 15px);
}

.service-image-video .video-image a{
	display: block;
    cursor: none;
}

.service-image-video .video-image figure{
	display: block;
	border-radius: 20px;
}

.service-image-video .video-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	opacity: 40%;
}

.service-image-video .video-image img{
	width: 100%;
	aspect-ratio: 1 / 0.647;
	object-fit: cover;
	border-radius: 20px;
}

.service-image-video .video-play-button{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	z-index: 1;
}

.service-image-video .video-play-button a{
	border: none;
	background-color: var(--accent-color);
	width: 50px;
	height: 50px;
	margin: 0;
}

.service-image-video .video-play-button a:before{
	content: '';
	position: absolute;
	top: -50%;
    left: -50%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.service-image-video .video-play-button a:after{
	content: '';
	position: absolute;
	top: -50%;
    left: -50%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.service-image-video .video-play-button a i{
	font-size: 20px;
	color: var(--white-color);
}

.service-guidance,
.services-steps{
	margin-bottom: 40px;
}

.service-guidance-box{
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	/*gap: 20px 30px;*/
}

.service-guidance-item{
	width: 100%;
}

.service-guidance-content{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	background-color: var(--secondary-color);
    padding: 10px;
    border-radius: 10px;
}


.service-guidance-item.active .service-guidance-content{
	background-color: var(--accent-color)!important;
}
.service-guidance-item.active .service-guidance-content h3{
	color:#fff;
}

.service-guidance-item.active .service-guidance-content .icon-box{
	background-color: var(--primary-color)!important;
}

.service-guidance-content .icon-box{
	position: relative;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    overflow: hidden;
}

.service-guidance-content .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 5px;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.service-guidance-item.active .service-guidance-content .icon-box{background-color: var(--primary-color)!important;}
.service-guidance-item:hover .service-guidance-content .icon-box::before{
	top: auto;
	height: 100%;
}

.service-guidance-content .icon-box img{
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.service-guidance-title{
	width: calc(100% - 60px);
}

.service-guidance-title h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}

.service-guidance-img figure{
	display: block;
	border-radius: 20px;
}

.service-guidance-img img{
	width: 100%;
	aspect-ratio: 1 / 0.89;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.service-guidance-item:hover .service-guidance-img img{
	transform: scale(1.1);
}

.service-steps-box{
	background-color: var(--dark-color);
	border-radius: 20px;
	padding: 60px;
	margin-top: 40px;
}

.service-step-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.service-step-item{
	width: calc(33.33% - 20px);
}

.service-step-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--dark-divider-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	overflow: hidden;
}

.service-step-item .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 5px;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.service-step-item:hover .icon-box:before{
	top: auto;
	height: 100%;
}

.service-step-item .icon-box img{
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.service-step-item-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 15px;
}

.service-step-item-content p{
	color: var(--white-color);
	opacity: 80%;
	margin-bottom: 30px;
}

.service-steps-box .service-entry-list ul li,
.service-steps-box .service-entry-list ul li:before{ 
	color: var(--white-color);
}

/************************************/
/***     20. Blog Archive Css     ***/
/************************************/

.page-blog{
	padding: 60px 0;
}

.page-blog .post-item{
	gap: 20px;
}

.page-blog .post-featured-image,
.page-blog .post-item-body{
	width: 100%;
}

.page-blog .post-featured-image img{
	aspect-ratio: 1 / 0.75;
}

.page-blog .post-item-meta{
	margin-bottom: 15px;
}

.page-pagination{
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 600;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--accent-color);
    color: var(--white-color);
}

/************************************/
/***     21. Blog Single Css      ***/
/************************************/

.page-single-post{
	background-color: var(--white-color);
	padding: 100px 0;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;	
	overflow: hidden;
}

.post-image figure,
.post-image img{
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 20px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 700;
	line-height: 1.2em;
	margin: 0 0 0.6em;
}

.post-entry h1{
	font-size: 70px;
}

.post-entry h2{
	font-size: 46px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 18px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600; 
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ol li{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li{
	font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: url('../images/icon-blockquote.svg'), var(--dark-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
    background-size: 58px;
    border-radius: 20px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 5px;
    padding: 6px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--primary-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 5px;
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/***      22. Team Page Css       ***/
/************************************/

.page-team{
	padding: 60px 0 60px;
}

/************************************/
/***      23. Team Single Css     ***/
/************************************/

.page-team-single{
	padding: 60px 0;
}

.team-single-sidebar{
	position: sticky;
    top: 30px;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
}

.team-single-img{
	margin-bottom: 60px;
}

.team-single-img figure{
	display: block;
	border-radius: 20px;
}

.team-single-img img{
	width: 100%;
	aspect-ratio: 1 / 1.04;
	object-fit: cover;
	border-radius: 20px;
}

.team-contact-form{
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--text-color);
	background: var(--white-color);
	border: none;
	border-radius: 10px;
	padding: 18px 20px;
	box-shadow: none;
}

.contact-form .form-control::placeholder{
	color: var(--text-color);
}
.contact-form select.form-control{ 
   appearance: none; /* Disable the default arrow */
    -webkit-appearance: none; /* For WebKit-based browsers */
    -moz-appearance: none; /* For Firefox */
    width: 100%;   
    background-image: url('../images/icons/arrow-down.svg');
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 15px;
    cursor: pointer;
}


.team-single-content h3{
	font-size: 16px;
	font-weight: 400;
	color: var(--text-color);
	margin-bottom: 5px;
}

.team-single-content h2{
	display: inline-block;
	font-size: 46px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
	cursor: none;
}

.team-single-content p{
	margin-bottom: 20px;
}

.team-single-content p:last-child{
	margin-bottom: 0;
}

.team-member-content,
.team-personal-info,
.team-expertise{
	margin-bottom: 40px;
}

.team-member-header{
	margin-bottom: 40px;
}
.team-member-body{
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 0px;
	padding-bottom: 30px;
}

.team-contact-box{
	position: relative;
	width: calc(50% - 15px);
	background: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	align-items: center;
	padding: 20px;
	overflow: hidden;
}

.team-contact-box::before{
	content: '';
	position: absolute;
	top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 5px;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.team-contact-box:hover::before{
	top: auto;
	height: 100%;
}

.team-contact-box .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	overflow: hidden;
}

.team-contact-box .icon-box:before{
	content: '';
	position: absolute;
	top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 5px;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.team-contact-box:hover .icon-box:before{
	top: auto;
	height: 100%;
}

.team-contact-box .icon-box img{
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.team-contact-content{
	position: relative;
	width: calc(100% - 65px);
	z-index: 1;
}

.team-contact-content p{
	margin: 5px 0px;
	transition: all 0.4s ease-in-out;
	line-height: normal;
}

.team-contact-box:hover .team-contact-content p{
	color: var(--white-color);
	opacity: 80%;
}

.team-contact-content h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0;
	transition: all 0.3s ease-in-out;
}

.team-contact-box:hover .team-contact-content h3{
	color: var(--white-color);
}

.team-member-footer{
    display: flex;
    align-items: center;
    gap: 20px;
}

.team-member-footer span{
    font-size: 20px;
	font-weight: 600;
    text-transform: capitalize;
    color: var(--primary-color);
}

.team-member-footer ul{
	display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-member-footer ul li{
    display: inline-block;
    border-radius: 50%;
    margin-right: 15px;
}

.team-member-footer ul li:last-child{
	margin: 0;
}

.team-member-footer ul li a{
	color: var(--accent-color);
}

.team-member-footer ul li:hover a{
	color: var(--primary-color);
}

.team-member-footer ul li a i{
    color: inherit;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

.team-expertise ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.team-expertise ul li{
	width: calc(50% - 10px);
	position: relative;
	text-transform: capitalize;
	padding-left: 30px;
}

.team-expertise ul li:before{
	content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 20px;
    color: var(--accent-color);
    display: inline-block;
    line-height: normal;
    position: absolute;
    top: 50%;
    left: 0;
	transform: translateY(-50%);
}

.skills-progress-bar{
    margin-bottom: 20px;
}

.skills-progress-bar:last-child{
	margin-bottom: 0;
}

.skills-progress-bar .skill-data{
	display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skills-progress-bar .skill-data .skill-title{
    font-size: 16px;
    font-weight: 400;
	text-transform: capitalize;
    color: var(--text-color);
}

.skills-progress-bar .skill-data .skill-no{
    font-size: 16px;
    font-weight: 400;
	color: var(--primary-color);
}

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 14px;
	background: var(--secondary-color);
	border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--accent-color);
	border-radius: 100px;
}

/************************************/
/***     24. Pricing Page Css     ***/
/************************************/

.page-pricing{
	padding: 60px 0;
}

/************************************/
/***     25. Client Page Css      ***/
/************************************/

.page-client{
	padding: 60px 0 60px;
}
.company-logo{
	background-color: var(--secondary-color);
    border-radius: 30px;
	text-align: center;
    height: calc(100% - 0px);
    margin-bottom: 30px;
    padding: 20px;
}
.customers-page .company-logo{background-color: transparent!important;}
.loan-origination.credit-assessment-decisioning .company-logo{margin-bottom: 60px; border-radius: 20px;}
.loan-origination.credit-assessment-decisioning .company-logo:last-child{margin-bottom: 0px;}
.loan-management-system.credit-assessment-management .company-logo{margin-bottom: 40px;}
.loan-management-system.portfolio-monitoring-reporting .company-logo{margin-bottom: 60px;}
.loan-management-system.portfolio-risk-management .company-logo{margin-bottom: 30px;}
 

/************************************/
/***   26. Testimonial Page Css   ***/
/************************************/

.page-testimonial{
	padding: 100px 0 70px;
}

.client-testimonial-item{
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 50px 2px #04030308;
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.client-testimonial-header{
	position: relative;
	padding: 30px 30px 60px;
	text-align: center;
	overflow: hidden;
}

.client-testimonial-header:before{
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--dark-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.client-testimonial-item:hover .client-testimonial-header::before{
	top: 0;
}

.client-testimonial-quote{
	margin-bottom: 20px;
}

.client-testimonial-quote img{
	position: relative;
	max-width: 44px;
	z-index: 1;
	transition: all 0.5s ease-in-out;
}

.client-testimonial-item:hover .client-testimonial-quote img{
	filter: brightness(0) invert(1);
}

.client-testimonial-header p{
	position: relative;
	margin: 0;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.client-testimonial-item:hover .client-testimonial-header p{
	color: var(--white-color);
}

.client-testimonial-body{
	background: var(--dark-color);
	text-align: center;
	padding: 0 30px 30px 30px;
}

.client-author-image{
	position: relative;
	top: -30px;
}

.client-author-image figure,
.client-author-image img{
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin: 0 auto;
}

.client-author-image img{
	border: 2px solid var(--divider-color);
}

.client-author-content h3{
	color: var(--white-color);
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.client-author-content p{
	color: var(--white-color);
	opacity: 80%;
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***     27. Image Gallery Css    ***/
/************************************/

.page-gallery{
	padding: 100px 0 70px;
}

.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{
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
	aspect-ratio: 1 / 0.79;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***     28. Video Gallery Css    ***/
/************************************/

.page-video-gallery{
	padding: 100px 0 70px;
}

.video-gallery-image{
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
	border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 40%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***       29. FAQs Page Css      ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.faq-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.faq-catagery-list{
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 60px;
}

.faq-catagery-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-catagery-list ul li{
    margin-bottom: 20px;
}

.faq-catagery-list ul li:last-child{
	margin-bottom: 0;
}

.faq-catagery-list ul li a{
	position: relative;
    display: block;
    color: var(--text-color);
    background-color: var(--white-color);
    border-radius: 15px;
    text-transform: capitalize;
    padding: 15px 50px 15px 20px;
    transition: all 0.4s ease-in-out;
}

.faq-catagery-list ul li:hover a{
	color: var(--white-color);
    background-color: var(--dark-color);
}

.faq-catagery-list ul li a::after{
	content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background-image: url('../images/arrow-text.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    transition: all 0.4s ease-in-out;
}

.faq-catagery-list ul li:hover a::after{
    filter: brightness(0) invert(1);
}

.page-faq-accordion{
	margin-bottom: 40px;
}

.page-faq-accordion:last-child{
	margin-bottom: 0;
}


.faq-sidebar.for-financial-institutions-for-corporates-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.faq-sidebar.for-financial-institutions-for-corporates-sidebar .faq-catagery-list{
	background-color: #fff;
	border-radius: 0px;
	padding: 0px;
	margin-bottom: 60px;
	border: 1px solid var(--divider-color);

}

.faq-sidebar.for-financial-institutions-for-corporates-sidebar .faq-catagery-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-sidebar.for-financial-institutions-for-corporates-sidebar .faq-catagery-list ul li{
    margin:0px;
}

.faq-sidebar.for-financial-institutions-for-corporates-sidebar .faq-catagery-list ul li:last-child{
	margin-bottom: 0;
}

.faq-sidebar.for-financial-institutions-for-corporates-sidebar .faq-catagery-list ul li a{
	position: relative;
    display: block; 
    font-weight: 600!important;
    font-size: 16px!important; 
    color: var(--text-color);
    border-bottom: 1px solid var(--divider-color);
    border-radius: 0px;
    text-transform: capitalize;
    padding: 15px 0px 15px 20px;
    transition: all 0.4s ease-in-out;
}

.faq-sidebar.for-financial-institutions-for-corporates-sidebar .faq-catagery-list ul li a img{
	height: 1.6rem;
	padding: 0px;
	margin:0 10px 0 0;
}
.for-financial-institutions-for-corporates .section-title h2{
	font-size: 36px!important;
    font-weight: 500!important;
    letter-spacing: normal!important;
}

.for-financial-institutions-for-corporates .section-title h3{ 
	padding-left: 0px!important;
}

.for-financial-institutions-for-corporates .section-title h3 img{
	height: 1.6rem;
	padding: 0px;
	margin:0 5px 0 0;
}

.for-financial-institutions-for-corporates .section-title h3 img.img-white-filter{
	filter: brightness(0) invert(1);
}

.for-financial-institutions-for-corporates .section-title h3::before{
	display: none!important;
	padding-left: 0px!important;
}



.faq-sidebar.for-financial-institutions-for-corporates-sidebar .faq-catagery-list ul li:hover a{
	color: var(--accent-color);
    background-color: transparent;
}

.faq-sidebar.for-financial-institutions-for-corporates-sidebar .faq-catagery-list ul li a::after{ 
    background-image: none; 
}

.faq-sidebar.for-financial-institutions-for-corporates-sidebar .faq-catagery-list ul li:hover a::after{
    filter: brightness(0) invert(1);
}

/************************************/
/***     30. Contact Page Css     ***/
/************************************/

.page-contact-us{
	padding: 100px 0 70px;
}

.contact-info-item{
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	margin-bottom: 30px;
	overflow: hidden;
}

.contact-info-img img{
	width: 100%;
	aspect-ratio: 1 / 0.61;
	object-fit: cover;
}

.contact-info-body{
	position: relative;
	padding: 0 10px 40px;
	text-align: center;
}

.contact-info-body.contact-info-address{height: 260px;}

.contact-info-body:after{
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .contact-info-body:after{
	top: 0;
}

.contact-info-body .icon-box{
	position: relative;
	top: -30px;
	width: 60px;
	height: 60px;
	background: var(--accent-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	z-index: 1;
	overflow: hidden;
}

.contact-info-body .icon-box:after{
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--dark-color);
	border-radius: 5px;
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box:after{
	top: 0;
}

.contact-info-body .icon-box img{
	position: relative;
	width: 100%;
	max-width: 34px;
	z-index: 1;
}

.contact-info-content{
	position: relative;
	z-index: 1;
}

.contact-info-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.contact-info-content p{
	margin: 0;
  	color: var(--bs-body-color);
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .contact-info-content h3,
.contact-info-item:hover .contact-info-content p{
	color: var(--white-color);
}
.contact-info-content p a{
  	color: var(--bs-body-color);
}

.contact-form-section{
	background: var(--secondary-color);
	padding: 60px 0;
}

.contact-form-img{
	margin-right: 45px;
}

.contact-form-img figure{
	display: block;
	border-radius: 20px;
}

.contact-form-img img{
	width: 100%;
	aspect-ratio: 1 / 1.25;
	object-fit: cover;
	border-radius: 20px;
}

.google-map{
	overflow: hidden;
}

.google-map .container-fluid{
	padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe{
    height: 600px;
    width: 100%;
}

/************************************/
/***    31 . 404 Error 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;
}
.featured-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	margin-bottom: 20px;
	overflow: hidden;
}

.featured-item .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 5px;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.featured-item:hover .icon-box:before,
.featured-item.active .icon-box::before{
	top: auto;
	height: 100%;
}

.featured-item .icon-box img{
	position: relative;
	z-index: 1;
	max-width: 30px;
}

/************************************/
/***      32. Responsive Css      ***/
/************************************/
/* For 100% scaling on 1920x1080 */
@media (max-width: 1920px) and (min-width: 1920px) {
	body{font-size: 18px;}
	.header__list-item > a{font-size: 20px!important;}
	.hero-content-footer h2{font-size: 24px!important;}
	.hero.hero-bg-image{padding: 300px 0 150px 0;}
	.submenu-list__item-title{font-size: 18px!important;}
	.submenu-content .submenu-content-header h4{font-size: 20px!important;}
	.submenu-content-body .service-item .service-item-content h3{font-size: 18px!important;}
	.mission-vission-content h3{font-size: 26px!important;}
	.feature-item-content h3{font-size: 23px!important;}
	.footer-links h3{font-size: 23px!important;}
	.service-guidance-title h3{font-size: 22px!important;}
	.benefit-item-content h3{font-size: 23px!important;}
	.pricing-header h3{font-size: 23px!important;}
	.customers-page{height: 800px!important;}
	.orbit-wrapper{height: 800px!important;}
	.workflow-orchestration-compliance .mission-vission-content{height: 120px;}
	.faq-sidebar.for-financial-institutions-for-corporates-sidebar .faq-catagery-list ul li a{font-size: 20px!important;}
}

@media only screen and (max-width: 1024px){
	
	.main-menu ul li{
		margin: 0;
	}

	.our-appointment-box{
		padding: 50px;
	}
}

@media only screen and (max-width: 991px){

	.navbar{
		padding: 20px 0;
	}

	.main-menu ul li.highlighted-menu{
		display: block;
	}
	
	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.header-btn{
		display: none;
	}

	.btn-default{
		font-size: 16px;
		padding: 15px 60px 15px 20px;
	}

	.btn-default::after{
		height: 24px;
		width: 24px;
		transform: translate(-20px, -50%);
	}

	.btn-default.btn-highlighted{
		padding: 15px 20px;
		background-color: #fff!important;
	}

	.section-row{
		margin-bottom: 40px;
	}

	.section-title{
		margin-bottom: 20px;
	}

	.section-title h3{
		margin-bottom: 10px;
		padding-left: 30px;
	}

	.section-title h3::before{
		width: 20px;
		height: 20px;
	}

	.section-title h1{
		font-size: 55px;
	}

	.section-title h2{
		font-size: 38px;
	}

	.section-title p{
		margin-top: 15px;
	}

	.section-title-content{
		margin-top: 15px;
	}

	.section-btn{
		text-align: left;
		margin-top: 30px;
	}

	.hero{
		padding: 100px 0 0;
	}

	.hero.hero-bg-image{
		padding: 150px 0 50px 0;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-slide{
		padding: 120px 0;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-pagination{
		bottom: 30px;
	}

	.hero-content{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.hero-content-footer{
		margin-top: 50px;
		margin-bottom: 50px;
	}

	.hero-content-footer h2{
		margin-bottom: 20px;
	}	
	.hero-image{
		width: 100%;
		max-width: 60%;
		margin: 0 auto;
		text-align: center;
	}

	.company-experience{
		width: 250px;
		padding: 10px;
	}

	.company-experience h3{
		font-size: 36px;
	}

	.about-us{
		padding: 50px 0;
	}

	.about-us-images{
		max-width: 620px;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.about-us-content{
		margin-left: 0px;
	}

	.about-goal-box{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.about-goal-box .icon-box{
		margin-bottom: 20px;
	}

	.about-info-box{
		margin-bottom: 30px;
	}

	.our-services{
		padding: 50px 0;
	}

	.our-service-content{
		margin-bottom: 30px;
	}

	.service-item{
		padding: 30px;
	}

	.service-no{
		bottom: -30px;
	}

	.service-item .icon-box{
		width: 45px;
		height: 45px;
		margin-right: 15px;
	}

	.service-item .icon-box img{
		max-width: 26px;
	}

	.service-item-content{
		width: calc(100% - 60px);
	}

	.service-item-content h3{
		margin-bottom: 10px;
	}

	.service-item-content p{
		margin-bottom: 20px;
	}

	.service-no h2{
		font-size: 80px;
	}

	.service-footer{
		margin-top: 30px;
	}

	.why-choose-us{
		padding: 50px 0;
	}

	.why-choose-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.why-choose-box .icon-box{
		margin-bottom: 20px;
	}

	.why-choose-box-content h3{
		margin-bottom: 10px;
	}

	.why-choose-image{
		max-width: 620px;
		margin: 0 auto;
	}

	.our-feature{
		padding: 50px 0;
	}

	.our-feature-item{
		padding: 20px;
	}

	.our-feature-item .icon-box{
		margin-bottom: 20px;
	}

	.feature-item-content h3{
		margin-bottom: 10px;
	}

	.our-feature-footer{
		margin-top: 30px;
	}

	.fact-counter{
		padding: 50px 0;
	}

	.fact-counter-image{
		margin-bottom: 30px;
	}

	.fact-counter-img img{
		aspect-ratio: 1 / 0.7;
	}

	.fact-counter-skillbar{
		max-width: 300px;
	}

	.fact-counter-content{
		margin-left: 0;
	}

	.fact-counter-box-list{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.fact-counter-box-content h2{
		font-size: 36px;
		margin-bottom: 5px;
	}

	.what-we-do{
		padding: 50px 0;
	}

	.what-we-do-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.what-we-do-list{
		margin-bottom: 30px;
	}

	.what-we-do-images{
		padding: 0 60px 80px 15px;
	}

	.what-do-we-img-1 img{
		aspect-ratio: 1 / 0.7;
	}

	.experience-counter-box{
		max-width: 245px;
		padding: 10px;
	}

	.experience-counter-no{
		margin-right: 10px;
	}

	.experience-counter-no h2{
		font-size: 36px;
	}

	.experience-counter-content{
		width: 66%;
	}

	.how-it-work{
		padding: 50px 0;
	}

	.how-it-work-content{
		position: initial;
		margin-bottom: 30px;
	}

	.work-step-item{
		padding: 30px 30px 0 30px;
		margin-bottom: 30px;
	}

	.work-step-item-content{
		margin-bottom: 10px;
	}

	.work-step-item-no{
		margin-bottom: -30px;
	}

	.work-step-item-no h2{
		font-size: 80px;
	}

	.our-pricing{
		padding: 50px 0;
	}

	.pricing-box{
		padding: 20px;
	}

	.pricing-header{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.pricing-header h3{
		margin-bottom: 15px;
	}

	.pricing-header h2{
		font-size: 36px;
	}

	.pricing-header sup{
		font-size: 22px;
	}
	.pricing-list-title{
		margin-bottom: 15px;
	}

	.pricing-body{
		margin-bottom: 20px;
	}

	.pricing-box.highlighted-box .pricing-header{
		padding: 0 60px 20px 0;
	}

	.highlighted-box::before{
		font-size: 12px;
		top: 22px;
		right: -65px;
		height: 26px;;
	}

	.pricing-benefit-list{
		margin-top: 10px;
	}

	.our-faqs{
		padding: 50px 0;
	}

	.our-faqs-image{
		margin-bottom: 30px;
	}

	.our-faqs-img img{
		aspect-ratio: 1 / 0.8;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button,
	.faq-accordion .accordion-item .accordion-body{
		padding: 12px 40px 12px 15px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		right: 12px;
	}

	.our-testimonial{
		padding: 50px 0;
	}

	.testimonial-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.testimonial-slider{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.testimonial-slider-box{
		padding: 30px;
	}

	.testimonial-header{
		margin-bottom: 20px;
	}

	.testimonial-body{
		margin-bottom: 20px;
	}

	.testimonial-slider .testimonial-pagination .swiper-pagination-bullet{
		height: 8px;
		width: 8px;
		margin: 0 6px;
	}

	.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active:before{
		height: 20px;
		width: 20px;
	}

	.customer-rating-boxes{
		gap: 20px;
	}

	.customer-rating-box{
		width: calc(33.33% - 13.33px);
	}

	.our-blog{
		padding: 50px 0 20px;
	}

	.post-item{
		gap: 20px;
	}

	.post-featured-image,
	.post-item-body{
		width: 100%;
	}

	.post-featured-image img{
		aspect-ratio: 1 / 0.79;
	}

	.post-item-meta{
		margin-bottom: 10px;
	}

	.post-item-content{
		margin-bottom: 15px;
	}
	
	.readmore-btn{
		font-size: 16px;
		padding-right: 30px;
	}

	.readmore-btn::before{
		height: 20px;
		width: 20px;
	}

	footer.main-footer{
		padding: 50px 0 0 0;
	}

	.footer-newsletter-box{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.footer-newsletter-title{
		margin-bottom: 20px;
	}

	.footer-newsletter-title h3{
		font-size: 28px;
	}

	.newsletter-form .form-group .form-control,
	.newsletter-form .form-group .newsletter-btn{
		padding: 10px;
	}

	.footer-links h3{
		margin-bottom: 20px;
	}

	.footer-cta-box{
		margin-top: 30px;
		padding: 30px;
	}

	.footer-logo{
		width: calc(25% - 10px);
	}

	.footer-contact-box{
		width: calc(75% - 10px);
		gap: 20px 30px;
	}

	.footer-contact-item::before{
		right: -15px;
	}

	.footer-contact-item h3{
		font-size: 18px;
	}

	.footer-copyright{
		padding: 30px 0;
	}

	.footer-menu ul li{
		margin-right: 20px;
	}

	.footer-menu ul li::before{
		right: -14px;
	}
	
	.page-header{
		background-size: contain;
        padding: 120px 0 40px 0;
    }

	.page-header-box h1{
        font-size: 55px;
    }

	.our-approach{
		padding: 50px 0 20px;
	}

	.mission-vission-header{
		padding: 30px;
	}

	.start-your-journey.mission-vission-item .icon-box{
		width: 200px!important;
		margin-bottom: 20px;
	}
	.mission-vission-content.margin-left-xl{
		    margin-left: 20px !important;
	}
	.mission-vission-content h3{
		margin-bottom: 10px;
	}

	.our-benefit{
		padding: 50px 0;
	}

	.our-benefit-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.our-benefit-img{
		margin-top: 30px;
	}
	
	.our-benefit-list{
		margin-bottom: 0px;
		margin-top: 0px!important;
	}

	.our-benefit-box{
		padding: 30px;
	}

	.our-benefit-item .icon-box{
		margin-bottom: 30px;
	}

	.benefit-item-content h3{
		margin-bottom: 10px;
	}

	.our-partners{
		padding: 50px 0 ;
	}

	.our-partners-content{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.our-partners-list{
		max-width: 620px;
		margin: 0 auto;
	}

	.our-partner-item{
		padding: 20px 25px;
	}

	.our-team{
		padding: 50px 0 20px;
	}

	.team-member-item{
		padding: 15px;
	}

	.team-image{
		margin-bottom: 20px;
	}

	.page-services{
		padding: 50px 0;
	}

	.page-services .service-item .icon-box{
		margin-bottom: 20px;
	}

	.page-service-single{
		padding: 50px 0;
	}

	.service-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.service-catagery-list{
		padding: 20px;
		margin-bottom: 30px;
	}

	.service-catagery-list h3{
		margin-bottom: 20px;
	}

	.service-catagery-list ul li a{
		padding: 10px 45px 10px 15px;
	}

	.service-catagery-list ul li a::after{
		right: 15px;
	}

	.sidebar-cta-box{
		padding: 30px;
	}

	.cta-box-content{
		margin-bottom: 30px;
	}

	.cta-info-item{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.service-featured-image{
		margin-bottom: 30px;
	}

	.service-entry{
		margin-bottom: 30px;
	}

	.service-entry h2{
		font-size: 36px;
	}

	.service-entry-list ul{
		gap: 10px;
	}

	.service-entry-list ul li:before{
		font-size: 18px;
	}

	.service-entry-list ul li{
		width: calc(33.33% - 6.67px);
		padding-left: 30px;
	}

	.service-list-video{
		gap: 20px;
		margin: 30px 0;
	}

	.service-list-video .service-entry-list{
		width: calc(54% - 10px);
	}

	.service-image-video{
		width: calc(46% - 10px);
	}

	.service-guidance,
	.services-steps{
		margin-bottom: 30px;
	}

	.service-guidance-box{
		margin-top: 30px;
		/*gap: 20px;*/
	}

	.service-guidance-item{
		width: 100%;
	}

	.service-guidance-content{
		margin-bottom: 20px;
	}

	.service-steps-box{
		padding: 30px;
		margin-top: 30px;
	}

	.service-step-item-list{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.service-step-item .icon-box{
		width: 40px;
		height: 40px;
		margin-bottom: 20px;
	}

	.service-step-item .icon-box img{
		max-width: 25px;
	}

	.page-blog{
		padding: 50px 0;
	}

	.page-blog .post-item-meta{
		margin-bottom: 10px;
	}

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
		padding: 50px 0;
	}

	.post-image{
		margin-bottom: 20px;
	}

	.post-entry blockquote{
		background-position: 25px 25px;
		background-size: 45px;
		padding: 25px 25px 25px 85px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p{
		font-size: 18px;
	}

	.post-entry{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.post-entry h2{
		font-size: 38px;
	}

	.post-entry ul li{
		font-size: 16px;
		margin-bottom: 10px;
	}

	.post-tags{
		margin-bottom: 20px;
	}

	.post-social-sharing ul{
		text-align: left;
	}

	.post-tags .tag-links a{
		padding: 6px 15px;
	}

	.page-team{
		padding: 50px 0 20px;
	}

	.page-team-single{
		padding: 50px 0;
	}

	.team-single-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.team-single-img{
		margin-bottom: 30px;
	}

	.team-single-img img{
		aspect-ratio: 1 / 0.65;
		object-position: top center;
	}

	.team-contact-form{
		padding: 30px;
	}

	.contact-form .form-control{
		padding: 14px 16px;
	}

	.team-single-content h2{
		font-size: 36px;
	}

	.team-member-content,
	.team-personal-info,
	.team-expertise{
		margin-bottom: 30px;
	}

	.team-member-header{
		margin-bottom: 30px;
	}

	.page-pricing{
		padding: 50px 0;
	}

	.page-client{
		padding: 50px 0 20px;
	}

	.company-logo{
		border-radius: 20px;
		padding: 20px 30px;
	}

	.company-logo img{
		width: 100%;
		height: 60px;
	}

	.page-testimonial{
		padding: 50px 0 20px;
	}

	.client-testimonial-header{
		padding: 20px 20px 50px;
	}

	.client-testimonial-body{
		padding: 0 20px 20px 20px;
	}

	.page-gallery{
		padding: 50px 0 20px;
	}

	.page-video-gallery{
		padding: 50px 0 20px;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.faq-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-catagery-list{
		margin-bottom: 30px;
	}

	.faq-catagery-list ul li a{
		padding: 10px 50px 10px 20px;
	}

	.page-faq-accordion{
		margin-bottom: 30px;
	}

	.page-contact-us{
		padding: 50px 0 20px;
	}

	.contact-info-body{
		padding: 0 60px 30px;
	}

	.contact-info-body .icon-box{
		top: -25px;
		width: 50px;
		height: 50px;
	}

	.contact-info-body .icon-box img{
		max-width: 28px;
	}

	.contact-form-section{
		padding: 50px 0;
	}

	.contact-form-img{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.contact-form-img img{
		aspect-ratio: 1 / 0.8;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 450px;
	}

	.error-page{
		padding: 50px 0;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}
}


video.about-banner-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media only screen and (max-width: 767px){
	.image-anime.reveal{height: auto!important;}
	.about-what-we-do-section{flex-direction: column!important;}
    .how-we-build{height:160vh!important;}
	.how-we-build-content .row{flex-direction: column!important;} 
	.how-we-build video{top: 60%!important;}
	.how-we-build .how-we-build-content{padding-top: 50px!important; top: 0%!important;transform: translateY(0%)!important; background: #f2f2f2;}
	.about-what-we-do-section .service-item{margin: 0 0 20px 0px!important;}
	.leadership-team-page .nav.nav-pills .nav-item .nav-link{
		background-color: var(--secondary-color);
	    border-radius: 30px;
	    margin: 0 5px 30px 5px;
	    color: #000;
	    font-size: 13px; 
	    font-weight: 500;
	    padding: 6px 15px;
	}
	.news-blog-section{padding: 0px!important;}

	.slicknav_nav li,
	.slicknav_nav ul{
        width: 98%!important;
    }

	.section-row{
		margin-bottom: 30px;
	}

	.section-title h3{
		font-size: 14px;
		padding-left: 25px;
	}

	.section-title h3:before{
		height: 18px;
		width: 18px;
	}

	.section-title h1{
		font-size: 36px;
	}

	.section-title h2{
		font-size: 26px;
	}

	.hero-btn{
		margin-right: 20px;
	}

	.video-play-button a{
		width: 45px;
		height: 45px;
		margin-right: 10px;
	}

	.video-play-button img{
		max-width: 14px;
	}

	.video-play-button p{
		font-size: 16px;
	}

	.hero-content-footer h2{
		font-size: 18px;
		margin-bottom: 20px;
	}

	.hero-image{
        max-width: 100%;
		padding-left: 0px;
    }

	.company-experience{
		width: 230px;
		bottom: 10%;
	}

	.company-experience h3{
		width: 25%;
		font-size: 26px;
	}

	.company-experience p{
		width: 75%;
	}

	.about-us-images{
		padding: 0px;
	}
 

	.about-img-2{
		width: 180px;
	}

	.contact-circle{
        top: 10px;
        right: 20px;
    }

	.contact-circle img{
		max-width: 90px;
	}

	.about-content-info{
		margin-bottom: 30px;
	}

	.about-goal-box-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.about-contact-content p{
		font-size: 18px;
	}

	.about-author-box{
		padding: 20px;
	}

	.about-author-content h3{
		font-size: 18px;
		margin-bottom: 0;
	}
	
	.about-info-box{
		margin-bottom: 20px;
	}

	.about-info-list ul li{
		padding-left: 25px;
	}

	.about-info-list ul li:before{
		font-size: 18px;
	}

	.service-item{
		width: 100%;
		padding: 20px;
		border-right: none;
		border-left: none;
	}

	.service-item-content h3{
		font-size: 18px;
	}

	.service-no{
        bottom: -25px;
    }

	.service-no h2{
        font-size: 60px;
    }

	.service-footer{
		text-align: center;
	}

	.service-footer p{
		font-size: 12px;
	}

	.why-choose-box{
		width: 100%;
	}

	.why-choose-box-content h3{
		font-size: 18px;
	}

	.why-choose-list ul{
		gap: 10px;
	}

	.why-choose-list ul li{
		width: 100%;
		padding-left: 25px;
	}

	.why-choose-list ul li:before{
		font-size: 18px;
	}

	.why-choose-image{
		max-width: 100%;
		padding: 0 0 100px 125px;
	}

	.why-choose-img-2{
		max-width: 220px;
	}

	.why-choose-contact-circle{
		right: 10px;
	}

	.why-choose-contact-circle img{
		max-width: 90px;
	}

	.our-feature-item{
		width: 100%;
	}

	.feature-item-content h3{
		font-size: 18px;
	}

	.fact-counter-image{
		padding: 0px;
	}

	.fact-counter-img img{
		aspect-ratio: 1 / 0.9;
	}

	.fact-counter-skillbar{
		max-width: 250px;
	}

	.fact-counter-box-list{
		gap: 20px;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.fact-counter-box{
		width: calc(33.33% - 13.33px);
	}

	.fact-counter-box .icon-box{
		width: 40px;
		height: 40px;
		margin-bottom: 15px;
		text-align: center;
		margin:0px auto 20px auto;
	}

	.fact-counter-box .icon-box img{
		max-width: 25px;
	}

	.fact-counter-box-content h2{
        font-size: 26px;
		margin-bottom: 5px;
    }

	.fact-counter-list ul{
		gap: 10px;
	}

	.fact-counter-list ul li{
		width: 100%;
		padding-left: 25px;
	}

	.fact-counter-list ul li:before{
		font-size: 18px;
	}

	.what-we-do-list ul li{
		width: 100%;
		padding-left: 25px;
	}

	.what-we-do-list ul li:before{
		font-size: 18px;
	}

	.what-we-do-images{
        padding: 0px;
    }

	.what-do-we-img-1 img{
		aspect-ratio: 1 / 0.75;
	}

	.what-do-we-img-2{
		max-width: 200px;
	}

	.what-do-we-img-2 img{
		border-width: 5px;
		aspect-ratio: 1 / 0.68;
	}

	.experience-counter-box{
		top: 0;
		bottom: auto;
        max-width: 210px;
        padding: 5px;
    }

	.experience-counter-no h2{
        font-size: 26px;
    }

	.experience-counter-content{
        width: 68%;
    }

	.experience-counter-content p{
		font-size: 14px;
	}

	.work-step-item{
        padding: 20px 20px 0 20px;
        margin-bottom: 20px;
    }

	.work-step-item-content h2{
		font-size: 18px;
	}

	.work-step-item-no{
        margin-bottom: -25px;
    }

	.work-step-item-no h2{
        font-size: 60px;
    }

	.pricing-header{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

	.pricing-header h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.pricing-header h2{
        font-size: 26px;
    }
	
    .pricing-header sup{
        font-size: 18px;
		top: -3px;
    }

	.pricing-header sub{
		font-size: 14px;
	}

	.pricing-list-title h3{
		font-size: 18px;
	}

	.pricing-list ul li{
		padding-left: 25px;
	}

	.pricing-list ul li:before{
		font-size: 18px;
	}

	.pricing-benefit-list ul{
        gap: 10px;
    }

    .pricing-benefit-list ul li{
        width: calc(50% - 7.5px);
        font-size: 12px;
		line-height: normal;
    }

    .pricing-benefit-list ul li img{
        max-width: 16px;
        margin-right: 5px;
    }

	.our-faqs-image{
		padding-right: 0px;
	}

	.our-faqs-img img{
        aspect-ratio: 1 / 0.98;
    }

	.client-review-box{
		bottom: 20px;
		max-width: 180px;
		padding: 10px;
	}

	.client-review-box-content{
		margin-bottom: 10px;
	}

	.client-review-box-content p{
		font-size: 16px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 18px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		font-size: 18px;
    	width: 18px;
		height: 18px;
    }

	.faq-accordion .accordion-item .accordion-body{
		padding: 12px 15px;
	}

	.testimonial-slider-box{
        padding: 20px;
    }

	.testimonial-header,
	.testimonial-body{
        margin-bottom: 20px;
    }

	.customer-logo img{
		max-width: 150px;
	}

	.testimonial-quotes img{
		max-width: 30px;
	}

	.testimonial-author .author-image{
		margin-right: 10px;
	}

	.testimonial-author .author-content{
		width: calc(100% - 50px);
	}

	.testimonial-author .author-content h3{
		font-size: 16px;
		padding-right: 15px;
	}

	.testimonial-author .author-content h3::before{
		right: 5px;
		font-size: 16px;
	}

	.customer-rating-box{
		justify-content: left;
		width: 100%;
	}

	.customer-rating-counter h3{
		font-size: 18px;
		margin-right: 5px;
	}

	.customer-rating-counter p span{
		font-size: 18px;
	}

	.post-item-content h2{
		font-size: 18px;
	}

	.footer-newsletter-title h3{
        font-size: 22px;
    }

	.newsletter-form .form-group .newsletter-btn img{
		max-width: 22px;
	}

	.footer-links{
		margin-bottom: 30px;
	}

	.footer-links h3{
		font-size: 18px;
        margin-bottom: 15px;
    }

	.footer-links ul li{
		margin-bottom: 5px;
	}

	.footer-cta-box{
		margin-top: 0;
		padding: 20px;
	}

	.footer-logo,
	.footer-contact-box{
		width: 100%;
	}

	.footer-logo img{
		max-width: 150px;
	}

	.footer-contact-box{
		justify-content: left;
		gap: 20px;
	}

	.footer-contact-item{
		width: calc(50% - 10px);
	}

	.footer-contact-item::before{
		right: -10px;
	}

	.footer-contact-item:nth-of-type(2n + 2)::before{
		display: none;
	}

	.footer-contact-item p{
		margin-bottom: 5px;
	}

	.footer-contact-item h3{
		font-size: 16px;
	}

	.footer-copyright{
		padding: 15px 0;
	}

	.footer-copyright-text{
		margin-bottom: 5px;
		text-align: center;
	}

	.footer-menu ul{
		text-align: center;
	}

	.page-header{
		padding: 120px 0 40px 0;
	}

	.page-header-box h1{
		font-size: 40px;
	}
	.mission-vission-item{ margin-bottom: 30px;}
	/*.mission-vission-item:last-child{ margin-bottom: 0px;}*/
	.mission-vission-header{
        padding: 20px;
    }

	.mission-vission-content h3{
		font-size: 18px;
	}

	.our-benefit-box{
		padding: 30px 0px;
	}

	.our-benefit-item{
		width: 100%!important;
	}

	.our-benefit-item .icon-box{
		margin-bottom: 20px;
	}

	.benefit-item-content h3{
		font-size: 18px;
	}

	.our-partners-list{
		width: 100%;
		gap: 15px;
	}

	.our-partner-item{
		padding: 10px;
	}

	.our-partner-item img{
		max-height: 20px;
	}

	.team-content h3{
		font-size: 18px;
	}

	.team-social-icon ul li{
		margin-right: 10px;
	}

	.team-social-icon ul li i{
		font-size: 18px;
	}

	.service-catagery-list h3{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.service-catagery-list ul li{
		margin-bottom: 15px;
	}

	.sidebar-cta-box{
        padding: 20px;
    }

	.cta-box-content{
        margin-bottom: 20px;
    }

	.cta-box-content img{
		margin-bottom: 15px;
	}

	.cta-box-content h3{
		font-size: 18px;
	}

	.cta-info-item h3{
		font-size: 18px;
	}

	.service-featured-image{
        margin-bottom: 20px;
    }

	.service-featured-image img{
        aspect-ratio: 1 / 0.7;
    }
	
	.service-entry p{
		margin-bottom: 15px;
	}

	.service-entry h2{
        font-size: 26px;
    }

	.service-entry-list ul{
        gap: 5px;
    }

	.service-entry-list ul li{
        padding-left: 25px;
		width: 100%;
    }

	.service-entry-list ul li:before{
		font-size: 16px;
		top: 6px;
	}

	.service-list-video .service-entry-list,
	.service-image-video{
		width: 100%;
	}

	.service-list-video{
        margin: 20px 0;
    }

	.service-guidance-item{
		width: 100%;
	}

	.service-guidance-img img{
		aspect-ratio: 1 / 0.6;
	}

	.service-guidance-content{
        margin-bottom: 15px;
    }

	.service-guidance-title h3{
		font-size: 18px;
	}

	.service-steps-box{
        padding: 20px;
    }

	.service-step-item-list{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

	.service-step-item{
        width: 100%;
    }

	.service-step-item-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.post-image figure,
	.post-image img{
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote{
		background-position: 15px 15px;
		padding: 60px 15px 15px 15px;
	}

	.post-entry blockquote p{
        font-size: 16px;
    }

	.post-entry h2{
		font-size: 26px;
	}

	.team-single-img img{
        aspect-ratio: 1 / 1.01;
        object-position: center center;
    }

	.team-contact-form{
        padding: 20px;
    }
	
	.team-single-content h2{
		font-size: 26px;
		margin-bottom: 15px;
    }

	.team-single-content p{
		margin-bottom: 15px;
	}

	.team-member-body{
		gap: 20px;
		margin-bottom: 0px;
		padding-bottom: 20px;
	}

	.team-contact-box{
		width: 100%;
		padding: 10px 15px;
	}

	.team-contact-box .icon-box{
		width: 40px;
		height: 40px;
	}

	.team-contact-box .icon-box img{
		max-width: 25px;
	}

	.team-contact-content{
		position: relative;
		width: calc(100% - 55px);
		z-index: 1;
	}

	.team-contact-content p{
		margin-bottom: 5px;
	}

	.team-contact-content h3{
		font-size: 18px;
	}

	.team-member-footer span,
	.team-member-footer ul li a i{
		font-size: 18px;
	}

	.team-member-footer ul li{
		margin-right: 10px;
	}

	.team-expertise ul{
		gap: 10px;
	}

	.team-expertise ul li{
		width: 100%;
		padding-left: 25px;
	}

	.team-expertise ul li:before{
		font-size: 18px;
	}

	.skills-progress-bar{
		margin-bottom: 15px;
	}
	.pricing-box{height: calc(100% - 30px)!important; margin-bottom: 30px!important;}
	.pricing-box.last-child{margin-bottom: 0px;height: calc(100% - 0px);} 
	.company-logo{
		border-radius: 15px;
		padding: 15px 20px;
		margin-bottom: 30px;
	}
	.page-services .service-item{margin-bottom: 30px;height: calc(100% - 30px);}
	.page-services .service-item.last-child{margin-bottom: 0px;height: calc(100% - 0px);} 
	.loan-origination.credit-assessment-decisioning .company-logo{margin-bottom: 30px;} 
	.loan-management-system.portfolio-monitoring-reporting .company-logo{margin-bottom: 30px;}
	
	.company-logo:last-child{margin-bottom: 0px;}

	.company-logo h3{font-size: 1.2rem;}

	.customers-page .company-logo {
		padding: 10px;
		margin-bottom: 30px;
	}

	.customers-page .company-logo img{
		height: auto;
	}

	.company-logo img{
		height: 30px;
	}

	.client-testimonial-header{
        padding: 20px 15px 50px;
    }

	.client-testimonial-quote{
		margin-bottom: 15px;
	}

	.client-testimonial-quote img{
		max-width: 36px;
	}

	.client-testimonial-body{
        padding: 0 15px 20px 15px;
    }

	.client-author-content h3{
		font-size: 18px;
	}

	.faq-catagery-list{
		padding: 20px;
	}

	.contact-info-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
        height: 350px;
    }

    .mob-mt-0{margin-top: 0px!important;}
    .mob-mb-0{margin-bottom: 0px!important;}
    .mob-mt-30{margin-top: 30px!important;}
    .mob-mb-30{margin-bottom: 30px!important;}
    .mob-pt-0{padding-top: 0px!important;}
    .mob-pb-0{padding-bottom: 0px!important;}
    .mob-pt-30{padding-top: 30px!important;}
    .mob-pb-30{padding-bottom: 30px!important;}
    .mob-display-none{display: none!important;}
    .mob-menu-dropdown a.mob-menu-dropdown-main{padding: 8px 20px 8px 10px!important;}
    .mob-menu-dropdown-main-content{height: 250px!important; overflow: auto!important;}
 
    .modal-header{display: grid!important;}
    .modal-header .margin-left-sm{margin-left: 0px!important;}
    .modal-header .btn-close{position: absolute; top: 15px; right: 15px;}
    .trusted_by_global_leaders .marquee-wrap > li > ul li{padding: 2vw 1vw!important;}
    .trusted_by_global_leaders .marquee-wrap > li > ul li img{width: 150px!important;}
    .trusted_by_global_leaders.about-marquee .marquee-wrap > li > ul li img{width: 100%!important;}
    .awards-section .post-featured-image figure{text-align: center!important;}
    .awards-section .post-featured-image img{width: 60%!important; margin: 0px 0px 20px 0px;}
    .col-lg-6.padding-left-xxxl{padding-left: 15px !important;}
    .our-benefit-content.no-right-margin.margin-left-xl{margin-left: 0px !important;}
    .our-benefit-content.margin-left.no-left-margin{margin-left: 0px !important;}
    .our-benefit-content.padding-left-xl.no-right-margin{padding-left: 0px !important;}
    .fact-counter-box-list{display: grid!important; text-align: center;}
    .fact-counter-box-list .fact-counter-box{width: 100%!important; margin: 0 0 20px 0px; background-color: var(--secondary-color) !important; border-radius: 20px!important; padding: 20px!important;}
    .business-process-management-section{background-color: #fff !important;}
    .business-process-management-section .our-benefit-item{background-color: var(--secondary-color) !important;}
    .business-process-management-section .business-process-management.fact-counter-box-list{display: grid!important;background-color: #fff !important;}
    .business-process-management-section .business-process-management.fact-counter-box-list .fact-counter-box{width: 100%!important; background-color: var(--secondary-color) !important; border-radius: 20px!important; padding: 20px!important;}
    .events-section .post-item{padding: 10px!important; display: grid!important; height: auto!important; gap:infinite!important;}
    .events-section .post-item .post-featured-image{width: 100%!important;}
    .events-section .post-item .post-item-body{width: 100%!important;}
    .accordion-button{flex-wrap: wrap!important;}
    .designation-text.margin-left-sm{margin-left: 0px!important;}
    .tabs.margin-left-xl{margin-left: 0px !important;}
    .tabs .nav-pills .nav-item{ width: 100%!important; margin: 5px 0px!important;}
    .tabs .nav-pills .nav-link{ width: 100%!important;}
    .about_page_header_map_wrap{display: none!important;}

/* ============== Integration With Enterprise Systems CSS ============== */
.integration-with-enterprise-systems-text{margin-top: 30px!important;}
.integration-with-enterprise-systems{padding:20px!important;}
.integration-with-enterprise-systems::before{display: none!important;}
.integration-with-enterprise-systems-orbit-wrapper {height: 350px!important;}
.integration-with-enterprise-systems-orbit-1 {width: 140px!important;height: 140px!important;}
.integration-with-enterprise-systems-orbit-2 {width: 300px!important; height: 300px!important;} 
.integration-with-enterprise-systems-logo {width: 60px!important; height: 60px!important; margin: -30px!important;}
/* ============== Integration With Enterprise Systems CSS ============== */


}

.news-blog-section{padding: 0 10rem;}
.news-blog-section .post-featured-image figure{border-radius: 0px;}
.news-blog-section .post-featured-image img{aspect-ratio: 1 / 1;}
.news-blog-section .post-item{align-items: flex-start; align-content: flex-start; margin-bottom: 0px;}
.news-blog-section .post-item-content{margin-bottom: 0px; min-height: 100px;}
.news-blog-section .post-item-content h2{font-weight: 400; display: -webkit-box; -webkit-box-orient: vertical;  overflow: hidden;  -webkit-line-clamp: 3;  line-clamp: 3;}
.news-blog-section .col-lg-4.col-md-6{border-bottom: 1px solid black; padding-bottom: 30px; margin-bottom: 20px;}
.news-blog-section .col-lg-4.col-md-6:last-child{border-bottom:0px; margin-bottom: 0px;}
 
.trusted_by_global_leaders .marquee-wrap > li {
  display: flex;
  align-items: center;
  width: var(--scroller-size);
  will-change: transform;
  animation: text-scroller 15000ms linear 0ms normal infinite;
  text-indent: 0;
  justify-content: space-around;
  -webkit-transition: all 3000ms linear 0ms;
  -moz-transition: all 3000ms linear 0ms;
  -ms-transition: all 3000ms linear 0ms;
  -o-transition: all 3000ms linear 0ms;
  transition: all 3000ms linear 0ms;
  white-space: nowrap;
}
@keyframes text-scroller {
  100% {
    transform: translateX(calc(var(--scroller-size) * -0.5));
  }
} 
.trusted_by_global_leaders .marquee-wrap > li > ul li {
  display: inline-block;
  padding:0vw 2vw; 
  text-transform: uppercase;
}

:root {
  --scroller-size: 100%;
}
@media only screen and (max-width: 600px) {
  :root {
    --scroller-size: 200vw;
  }
}
.marquee-wrap .about-marquee-wrap-img{height: 300px; border-radius: 20px;}

.marquee-container {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 0px;
}

.marquee {
  display: flex;
  width: max-content;
  gap: 40px;
  align-items: center;
}

.marquee img {
  height: 80px;
  /*filter: grayscale(100%);*/
  /*opacity: 0.8;*/
}

.marquee-left {
	margin-bottom: 30px;
  	animation: scroll-left 30s linear infinite;
}

.marquee-right {
	margin-top: 30px;
  	animation: scroll-right 30s linear infinite;
}

/* Animations */
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.pricing-header .icon-box{
position: relative;
width: 50px;
height: 50px;
background: var(--accent-color);
border-radius: 5px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 20px;
overflow: hidden;
}

.collage-container {
  display: grid;
  gap: 15px;
  padding: 0px;
  max-width: 1600px;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
}

.item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.item img:hover {
  transform: scale(1.05);
} 

/* Make some images larger for collage variation */
.item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.item:nth-child(6),
.item:nth-child(7) {
  grid-row: span 2;
}

.item:nth-child(9) {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .collage-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-auto-rows: 180px;
  } 
}

/* ============== customers page Css ============== */
.customers-page{ 
	width: 100%; 
	height: 600px;
	padding: 0px;
	margin:0px;
	overflow: hidden;
}
.orbit-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
}

/* Center */
.center-logo {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 10;
}

.center-logo img {
  width: 80%;
}

/* Orbits */
.orbit {
  position: absolute;
  inset: 0;
  margin: auto;
  border: 2px dashed #7bb7a4;
  border-radius: 50%;
  animation: spin linear infinite;
}

.orbit-1 {
  width: 300px;
  height: 300px;
  animation-duration: 50s;
}

.orbit-2 {
  width: 550px;
  height: 550px;
  animation-duration: 50s;
  animation-direction: reverse;
}

.orbit-3 {
  width: 800px;
  height: 800px;
  animation-duration: 50s;
}

.orbit-4 {
  width: 1050px;
  height: 1050px;
  animation-duration: 50s;
  animation-direction: reverse;
}

/* Logos */
.customers-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px;
  background: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.customers-logo img {
  width: 80%;
    animation: img-rotate 50s linear infinite;
  -webkit-animation: img-rotate 50s linear infinite;
}

.orbit-2 .customers-logo img, .orbit-4 .customers-logo img {
  width: 80%;
  animation: img-rotate-Reverse 50s linear infinite;
  -webkit-animation: img-rotate-Reverse 50s linear infinite;
}

@keyframes img-rotate {
  from {
    transform: rotate(-0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@-webkit-keyframes img-rotate {
  from {
    -webkit-transform: rotate(-0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
  }
}

@keyframes img-rotate-Reverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes img-rotate-Reverse {
  from {
    -webkit-transform: rotate(45deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.customers-page-mob{
	width: 100%; 
	margin: 0px;
	padding: 30px 0px;
}
.customers-page-mob .col-6{ 
	text-align: center;
	margin: 0px auto;
	padding: 0px;
}
.customers-page-mob .customers-logo-mob {  
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    text-align: center;
    margin: 20px auto;
    display: grid;
    justify-content: center;
    align-items: center;
    justify-items: center;
}

.customers-page-mob .customers-logo-mob img {
  width: 80%;    
}
/* ============== customers page Css ============== */

/* ============== Integration With Enterprise Systems CSS ============== */
.integration-with-enterprise-systems-text{
	width: 100%; 
	margin: 0px;
	padding: 0px; 
	position: relative;
} 
.integration-with-enterprise-systems{ 
	width: 100%;  
	padding: 50px 0px;
	margin:0px;
	overflow: hidden;
	position: relative;
}
.integration-with-enterprise-systems::before{
    content: "";
    position: absolute;
    inset: -10%;
    width: 100%;
    background: linear-gradient(to right, rgb(0 64 80) 0%, rgb(0 64 80) 40%, rgba(120, 90, 255, 0) 100%);
    filter: blur(30px);
    z-index: 1;
}

.integration-with-enterprise-systems-orbit-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
}
 

/* Orbits */
.integration-with-enterprise-systems-orbit {
  position: absolute;
  inset: 0;
  margin: auto;
  border: 1px dashed #2989a1;
  border-radius: 50%;
  animation: spin linear infinite;
}

.integration-with-enterprise-systems-orbit-1 {
  width: 300px;
  height: 300px;
  animation-duration: 50s;
}

.integration-with-enterprise-systems-orbit-2 {
  width: 600px;
  height: 600px;
  animation-duration: 50s;
  animation-direction: reverse;
} 

/* Logos */
.integration-with-enterprise-systems-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px;
  background: transparent; 
  display: grid;
  place-items: center;
}

.integration-with-enterprise-systems-logo img {
  width: 100%; 
    animation: img-rotate 50s linear infinite;
  -webkit-animation: img-rotate 50s linear infinite;
}

.integration-with-enterprise-systems-orbit-2 .integration-with-enterprise-systems-logo img{
  width: 80%;
  animation: img-rotate-Reverse 50s linear infinite;
  -webkit-animation: img-rotate-Reverse 50s linear infinite;
}

@keyframes img-rotate {
  from {
    transform: rotate(-0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@-webkit-keyframes img-rotate {
  from {
    -webkit-transform: rotate(-0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
  }
}

@keyframes img-rotate-Reverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes img-rotate-Reverse {
  from {
    -webkit-transform: rotate(45deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
} 
/* ============== Integration With Enterprise Systems CSS ============== */

/* ============== Testimonial customers page  Css ============== */
/* Define keyframes for the top-to-bottom scroll animation */
@keyframes scroll-top-to-bottom {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

/* Define keyframes for the bottom-to-top scroll animation */
@keyframes scroll-bottom-to-top {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

/* Class to apply the top-to-bottom animation */
.testimonial-animate-scroll-t2b {
  animation: scroll-top-to-bottom 150s linear infinite;
}

/* Class to apply the bottom-to-top animation */
.testimonial-animate-scroll-b2t {
  animation: scroll-bottom-to-top 150s linear infinite;
}

/* Utility class to pause the animation on hover */
.testimonial-group:hover .testimonial-group-hover-pause {
  animation-play-state: paused;
}

.\[mask-image\:linear-gradient\(to_bottom\2c transparent\2c white_20\%\2c white_80\%\2c transparent\)\] {
-webkit-mask-image: linear-gradient(to bottom, transparent, white 20%, white 80%, transparent);
mask-image: linear-gradient(to bottom, transparent, white 20%, white 80%, transparent);
}
.overflow-hidden {
overflow: hidden;
} 
.h-\[40rem\] {
height: 30rem;
}

 



/* ============== Testimonial customers page Css ============== */

/* Animation */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


.position-relative{position: relative!important;}
.spinner-process { 
    position: absolute;
    top: 0;
    left: 15px;
    z-index: 3;
    padding: 15px 100px;
    border-radius: 100px;
    background-color: rgba(1, 1, 1, 0.5);
} 
.spinner-loader {
  width: 50px;
  aspect-ratio: 1;
  display:grid;
  -webkit-mask: conic-gradient(from 15deg,#0000,#000);
  animation: l26 1s infinite steps(12);
}
.spinner-loader,
.spinner-loader:before,
.spinner-loader:after{ width: 25px; height: 25px;
  background: radial-gradient(closest-side at 50% 12.5%, #ffffff 96%, #0000) 50% 0 / 20% 80% repeat-y, radial-gradient(closest-side at 12.5% 50%, #ffffff 96%, #0000) 0 50% / 80% 20% repeat-x;
}
.spinner-loader:before,
.spinner-loader:after {
  content: "";
  grid-area: 1/1;
  transform: rotate(30deg);
}
.spinner-loader:after {
  transform: rotate(60deg);
}

@keyframes l26 {
  100% {transform:rotate(1turn)}
}

#backToTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--accent-color);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
#backToTop img{width: 16px; height: 16px; margin-top: -5px;}
#backToTop:hover {
  background: var(--accent-color);
}

.work-steps-box.no-hover-bg .work-step-item::before{background: transparent!important;}
.work-steps-box.no-hover-bg .work-step-item:hover .work-step-item-content h3{color: var(--accent-color)!important;}
.contact-info-item.no-hover-bg .contact-info-body:after{background: transparent!important;} 
.contact-info-item.no-hover-bg:hover .contact-info-content h3{color: var(--primary-color)!important;}
.page-services.for-sourcing_partners-lenders .service-item:before{background: transparent!important;}
.border-radius-20{border-radius: 20px;}
.fs-08{font-size: 0.8rem!important;} 
.fs-20{font-size: 20px!important;} 
.fs-26{font-size: 26px!important;} 
.overflow-visible{ overflow: visible!important;}
.designation-text{font-size: 12px; color: var(--accent-color);}
.accent-color{color: var(--accent-color);}
.investor-info-column{float: left; width: 100%; margin:0px; padding: 0px;}
#genai_solutions .why-choose-contact-circle img{max-width: 100%;}
#genai_solutions .why-choose-contact-circle{right: 20px;}
#fraud_risk .btn-default{background-color: #fff; color: var(--accent-color);}
#fraud_risk .btn-default::after{background-image: url(../images/arrow-green.svg)!important;}

.about_page_header_map_wrap{position: relative; width: 100%;}
.about_page_header_map{width: 100%; max-width: 60rem;}
.about_page_header_map_wrap img{width: 100%; height: auto; margin-top: 0%;}
 
.about-leadership-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-leadership-wrapper .about-leadership-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 300px;
}

.about-leadership-wrapper .about-leadership-card.gradient-left::before,
.about-leadership-wrapper .about-leadership-card.gradient-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #e9e9ff, #00a088);
  opacity: 0.5;
}

.about-leadership-wrapper .about-leadership-card.gradient-right::before {
  background: linear-gradient(150deg, #e6f7ff, #00a088);
}

.about-leadership-wrapper .about-leadership-card .card-content {
  position: relative;
  z-index: 1;
  max-width: 60%;
  margin-top: 30px;
}

.about-leadership-wrapper .about-leadership-card .quote { 
  display: block; 
  position: absolute;
  top: -30px;
} 

.about-leadership-wrapper .about-leadership-card .quote img{ 
  width: 2rem;
} 

.about-leadership-wrapper .about-leadership-card p {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
  margin-top: 20px;
}

.about-leadership-wrapper .about-leadership-card .author {
  margin-top: 16px;
}

.about-leadership-wrapper .about-leadership-card .author h6 {
  display: block;
  font-size: 19px;
  line-height: 24px;
  font-weight: 900;
  padding: 0px;
  margin:0px;
  color: var(--accent-color);
}

.about-leadership-wrapper .about-leadership-card .author p {
  font-size: 13px;
  line-height: 16px;
  font-weight: 300;
  color: #444;
  padding: 0px;
  margin:0px;
}

.about-leadership-wrapper .card-image {
  position: absolute;
  right: 15px;
  bottom: 0;
  z-index: 1;
}

.about-leadership-wrapper .about-leadership-card .card-image img {
  max-height: 300px; 
}

/* Responsive */
@media (max-width: 900px) {
 .about-leadership-wrapper {
    grid-template-columns: 1fr;
  }

.about-leadership-wrapper .about-leadership-card .card-content {
    max-width: 100%;
  }
.about-leadership-wrapper .about-leadership-card .author{
	max-width: 60%;
}
.about-leadership-wrapper .card-image {
    position: absolute;
    right: -25px;
    bottom: -40px;
    z-index: 1;
  }
  .about-leadership-wrapper .about-leadership-card .author p{
  	font-size: 12px;
  	line-height: 16px;
  	margin-top: 5px;
  }

	.about-leadership-wrapper .about-leadership-card .card-image img {
	  max-height: 200px; 
}
}

.tabs .nav-pills .nav-link.active{background: var(--accent-color); font-size: 17px; color: #fff;}
.tabs .nav-pills .nav-link{font-size: 17px; border: 1px solid #ccc; color: var(--text-color);}



:root {
  --marquee-height: 550px;
  --marquee-speed: 80s;
}

.chairmans-message .marquee-box {
  height: var(--marquee-height);
  overflow: hidden;
  position: relative;
  padding: 20px 0px 0px 0px;
}

.chairmans-message .marquee-box .marquee-track {
  display: flex;
  flex-direction: column;
  transform: translateY(-50%);
  will-change: transform;
}

/* animation class (added by JS) */
.chairmans-message .marquee-box .marquee-track.animate {
  animation: marqueeDown var(--marquee-speed) linear infinite;
}

@keyframes marqueeDown {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

/* pause on hover */
.chairmans-message .marquee-box:hover .marquee-track {
  animation-play-state: paused;
}
 
/* gradient fade */
.chairmans-message .marquee-box::before,
.chairmans-message .marquee-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 30px;
  pointer-events: none;
}

.chairmans-message .marquee-box::before {
  top: 0;
  background: linear-gradient(to bottom, #fff, transparent);
  z-index: 1;
}

.chairmans-message .marquee-box::after {
  bottom: 0;
  background: linear-gradient(to top, #fff, transparent);
}

 
.blink-text{animation: blinkAnimation 0.5s infinite;}
@keyframes blinkAnimation {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
.current-opening-list h4{ font-size: 18px; font-weight: 500; color: var(--accent-color); padding: 0px; margin:0px;}
.current-opening-list h4 span{ color: #fff;}
.current-opening-list h5{ font-size: 20px; font-weight: 500; color: #fff; padding: 0px; margin:20px 0 0 0;}
.current-opening-list p{ font-size: 16px!important; color: var(--white-color); margin:0px!important; padding: 0px!important;}
.current-opening-list ul{margin:10px 0 0 20px; padding: 0px;}
.current-opening-list ul li { font-size: 16px; color: var(--white-color)!important; margin:0px; padding: 0px;opacity: 80%;}

/* ============================ Accordion Auto Open Close Start ===========================*/
.progress{height: 3px;}
.progress-bar {width: 0%;transition: width 0.1s linear;background: var(--accent-color)!important;}
/* ============================ Accordion Auto Open Close End ===========================*/

#downloadTheForresterReport label{color: #222!important;}

/* --------- Common css --------- */

.theme-bg{background-color: var(--accent-color)!important;}
.white-bg{background-color: var(--white-color)!important;}
.light-gray-bg{background-color: var(--secondary-color)!important;}
.transparent-bg{background-color: transparent!important;}
.no-hover-bg{background-color: transparent!important;}

.theme-color{color: var(--accent-color)!important;}
.white-color{color: var(--white-color)!important;}

.position-relative{position: relative!important;}
.position-absolute{position: absolute!important;}
.position-inherit{position: inherit!important;}

.text-left{ text-align: left!important; }
.text-right{ text-align: right!important; }
.text-center{ text-align: center!important; }

.border-top-none{border-top: 0px!important;}
.border-right-rone{border-right: 0px!important;}
.border-bottom-none{border-bottom: 0px!important;}
.border-left-none{border-left: 0px!important;} 

.gap-0{gap: 0px;}

.full-width{width: 100%!important;}
.width-10{width: 10px;}
.width-20{width: 20px;}
.width-30{width: 30px;}
.width-40{width: 40px;}
.width-50{width: 50px;}
.width-60{width: 60px;}
.width-70{width: 70px;}
.width-80{width: 80px;}
.width-90{width: 90px;}
.width-100{width: 100px;}
.width-110{width: 110px;}
.width-120{width: 120px;}

.height-10{height: 10px;}
.height-20{height: 20px;}
.height-30{height: 30px;}
.height-40{height: 40px;}
.height-50{height: 50px;}
.height-60{height: 60px;}
.height-70{height: 70px;}
.height-80{height: 80px;}
.height-90{height: 90px;}
.height-100{height: 100px;}
.height-110{height: 110px;}
.height-120{height: 120px;}
.height-130{height: 130px;}
.height-140{height: 140px;}
.height-150{height: 150px;}
.height-160{height: 160px;}
.height-170{height: 170px;}
.height-180{height: 180px;}
.height-190{height: 190px;} 
.height-200{height: 200px;}
.height-220{height: 220px;}
.height-240{height: 240px;}
.height-250{height: 250px;}
.height-260{height: 260px;}
.height-280{height: 280px;}
.height-300{height: 300px;} 
.height-320{height: 320px;} 
.height-340{height: 340px;}
.height-350{height: 350px;}
.height-360{height: 360px;}
.height-380{height: 380px;}
.height-400{height: 400px;}  
.height-420{height: 420px;}
.height-440{height: 440px;}
.height-450{height: 450px;}
.height-460{height: 460px;}
.height-480{height: 480px;}
.height-500{height: 500px;} 
.height-520{height: 520px;}
.height-540{height: 540px;}
.height-550{height: 550px;}
.height-560{height: 560px;}
.height-580{height: 580px;}
.height-600{height: 600px;} 

.no-width{width: inherit!important;}
.no-height{height: inherit!important;}
.no-liheight{line-height: 0px!important;}
.no-float{float: inherit!important;}

.display-none{display: none!important;}
.opacity-full{opacity: 0;}

.no-border{border: 0px!important;}
.border-bottom{border-bottom: 1px solid #eef1f5;}
.border-img{border:1px solid #DDD; padding: 5px;}

.no-all-padding{padding: 0px!important;}
.no-top-padding{ padding-top: 0px!important; }
.no-right-padding{ padding-right: 0px!important; }
.no-bottom-padding{ padding-bottom: 0px!important; }
.no-left-padding{ padding-left: 0px!important; }

.padding-all-xs{ padding: 5px!important;}
.padding-all-sm{ padding: 10px!important;}
.padding-all-md{ padding: 15px!important;}
.padding-all-lg{ padding: 20px!important;}
.padding-all-xl{ padding: 25px!important;}
.padding-all-xxl{ padding: 30px!important;}

.padding-top-bottom-no{ padding-top: 0px!important; padding-bottom: 0px!important;}
.padding-top-bottom-xs{ padding-top: 5px!important; padding-bottom: 5px!important;}
.padding-top-bottom-sm{ padding-top: 10px!important; padding-bottom: 10px!important;}
.padding-top-bottom-md{ padding-top: 15px!important; padding-bottom: 15px!important;}
.padding-top-bottom-lg{ padding-top: 20px!important; padding-bottom: 20px!important;}

.padding-right-left-no{ padding-right: 0px!important; padding-left: 0px!important;}
.padding-right-left-xs{ padding-right: 5px!important; padding-left: 5px!important;}
.padding-right-left-sm{ padding-right: 10px!important; padding-left: 10px!important;}
.padding-right-left-md{ padding-right: 15px!important; padding-left: 15px!important;}
.padding-right-left-lg{ padding-right: 20px!important; padding-left: 20px!important;}
.padding-right-left-xl{ padding-right: 25px!important; padding-left: 25px!important;}
.padding-right-left-xxl{ padding-right: 30px!important; padding-left: 30px!important;}

.padding-top-xs{ padding-top: 5px!important;}
.padding-right-xs{ padding-right: 5px!important;}
.padding-bottom-xs{ padding-bottom: 5px!important;}
.padding-left-xs{ padding-left: 5px!important;}

.padding-top-sm{ padding-top: 10px!important;}
.padding-right-sm{ padding-right: 10px!important;}
.padding-bottom-sm{ padding-bottom: 10px!important;}
.padding-left-sm{ padding-left: 10px!important;}

.padding-top-md{ padding-top: 15px!important;}
.padding-right-md{ padding-right: 15px!important;}
.padding-bottom-md{ padding-bottom: 15px!important;}
.padding-left-md{ padding-left: 15px!important;}

.padding-top-lg{ padding-top: 20px!important;}
.padding-right-lg{ padding-right: 20px!important;}
.padding-bottom-lg{ padding-bottom: 20px!important;}
.padding-left-lg{ padding-left: 20px!important;}

.padding-top-xl{ padding-top: 30px!important;}
.padding-right-xl{ padding-right: 30px!important;}
.padding-bottom-xl{ padding-bottom: 30px!important;}
.padding-left-xl{ padding-left: 30px!important;}

.padding-top-xxl{ padding-top: 40px!important;}
.padding-right-xxl{ padding-right: 40px!important;}
.padding-bottom-xxl{ padding-bottom: 40px!important;}
.padding-left-xxl{ padding-left: 40px!important;}

.padding-top-xxxl{ padding-top: 50px!important;}
.padding-right-xxxl{ padding-right: 50px!important;}
.padding-bottom-xxxl{ padding-bottom: 50px!important;}
.padding-left-xxxl{ padding-left: 50px!important;}

.margin-0-auto{ margin: 0px auto!important; }

.no-all-margin{ margin: 0px!important; }
.no-top-margin{ margin-top: 0px!important; }
.no-right-margin{ margin-right: 0px!important; }
.no-bottom-margin{ margin-bottom: 0px!important; }
.no-left-margin{ margin-left: 0px!important; }

.margin-all-xs{ margin: 5px!important;}
.margin-all-sm{ margin: 10px!important;}
.margin-all-md{ margin: 15px!important;}
.margin-all-lg{ margin: 20px!important;}

.margin-top-bottom-xs{ margin-top: 5px!important; margin-bottom: 5px!important;}
.margin-top-bottom-sm{ margin-top: 10px!important; margin-bottom: 10px!important;}
.margin-top-bottom-md{ margin-top: 15px!important; margin-bottom: 15px!important;}
.margin-top-bottom-lg{ margin-top: 20px!important; margin-bottom: 20px!important;}

.margin-right-left-xs{ margin-right: 5px!important; margin-left: 5px!important;}
.margin-right-left-sm{ margin-right: 10px!important; margin-left: 10px!important;}
.margin-right-left-md{ margin-right: 15px!important; margin-left: 15px!important;}
.margin-right-left-lg{ margin-right: 20px!important; margin-left: 20px!important;}

.margin-top-xs{ margin-top: 5px!important;}
.margin-right-xs{ margin-right: 5px!important;}
.margin-bottom-xs{ margin-bottom: 5px!important;}
.margin-left-xs{ margin-left: 5px!important;}

.margin-top-sm{ margin-top: 10px!important;}
.margin-right-sm{ margin-right: 10px!important;}
.margin-bottom-sm{ margin-bottom: 10px!important;}
.margin-left-sm{ margin-left: 10px!important;}

.margin-top-md{ margin-top: 15px!important;}
.margin-right-md{ margin-right: 15px!important;}
.margin-bottom-md{ margin-bottom: 15px!important;}
.margin-left-md{ margin-left: 15px!important;}

.margin-top-lg{ margin-top: 20px!important;}
.margin-right-lg{ margin-right: 20px!important;}
.margin-bottom-lg{ margin-bottom: 20px!important;}
.margin-left-lg{ margin-left: 20px!important;}

.margin-top-xl{ margin-top: 30px!important;}
.margin-right-xl{ margin-right: 30px!important;}
.margin-bottom-xl{ margin-bottom: 30px!important;}
.margin-left-xl{ margin-left: 30px!important;}

.margin-top-xxl{ margin-top: 40px!important;}
.margin-right-xxl{ margin-right: 40px!important;}
.margin-bottom-xxl{ margin-bottom: 40px!important;}
.margin-left-xxl{ margin-left: 40px!important;}

.margin-top-xxxl{ margin-top: 50px!important;}
.margin-right-xxxl{ margin-right: 50px!important;}
.margin-bottom-xxxl{ margin-bottom: 50px!important;}
.margin-left-xxxl{ margin-left: 50px!important;}

