body {
	margin: 0;
	padding: 0;
	background-color: #000;
	color: #bbb;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

::-webkit-scrollbar {
	width: 5px;
}

::-webkit-scrollbar-thumb {
	background: #101010;
	border-radius: 0px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #fff;
}

/*** Spinner ***/
.spinner {
	width: 80px;
	height: 80px;
	/* background: #14a800; */
	margin: 100px auto;
	-webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
	animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
	0% {
		-webkit-transform: perspective(120px)
	}

	50% {
		-webkit-transform: perspective(120px) rotateY(180deg)
	}

	100% {
		-webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
	}
}

@keyframes sk-rotateplane {
	0% {
		transform: perspective(120px) rotateX(0deg) rotateY(0deg);
		-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
	}

	50% {
		transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
		-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
	}

	100% {
		transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
		-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
	}
}

#spinner {
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s ease-out, visibility 0s linear .5s;
	z-index: 99999;
	background-color: #000000;
	display: flex !important;
}

#spinner.show {
	transition: opacity .5s ease-out, visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}

.nav-link {
	color: #fff;
}

.cursor {
	position: fixed;
	top: 0;
	left: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: white;
	transform: translate(-50%, -50%) scale(0.35);
	pointer-events: none;
	z-index: 9999;
	transition: transform 0.2s ease, background-color 0.3s, border 0.3s;
	mix-blend-mode: difference;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: bold;
	color: black;
}

.cursor span {
	pointer-events: none;
	transition: opacity 0.2s;
}

.cursor.hover {
	transform: translate(-50%, -50%) scale(0.7);
	border: 2px solid white;
	background: transparent;
}

.cursor.click {
	transform: translate(-50%, -50%) scale(0.2);
	background-color: red;
}

.cursor.drag {
	background-color: yellow;
	transform: translate(-50%, -50%) scale(0.4);
}



.magnet-target {
	display: inline-block;
	transition: transform 0.2s ease;
	will-change: transform;
}

.ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	pointer-events: none;
	animation: rippleAnim 0.6s ease-out forwards;
	z-index: 9998;
}

@keyframes rippleAnim {
	0% {
		width: 0px;
		height: 0px;
		opacity: 1;
	}

	100% {
		width: 100px;
		height: 100px;
		opacity: 0;
	}
}

.back-to-top {
	position: fixed;
	display: none;
	right: 15px;
	bottom: 60px;
	z-index: 99;
	background-color: #101010;
	border: 1px solid #1c1c1c;
	border-radius: 12px !important;
}


.back-to-top:hover {
	background-color: #101010;
	border: 1px solid #1c1c1c;
}

.tech-used {
	display: grid;
	align-content: center;
	overflow: hidden;
	gap: 10px;
	width: 100%;
	min-height: 20vh;
}

.tech-marquee svg {
	display: grid;
	place-items: center;
	width: 100px;
	height: 70px;
	fill: #000;
	background: #101010;
	aspect-ratio: 16/9;
	padding: 10px;
	border-radius: 0.5rem;
}

.tech-marquee-vertical svg {
	aspect-ratio: 1;
	width: 100px;
	padding: 10px;
}

.tech-wrapper {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: auto;
	max-width: 100vw;
}

.tech-wrapper-vertical {
	flex-direction: row;
	height: 40vh;
}

.tech-marquee {
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: 10px;
	mask-image: linear-gradient(var(to bottom, to right),
			hsl(0 0% 0% / 0),
			hsl(0 0% 0% / 1) 20%,
			hsl(0 0% 0% / 1) 80%,
			hsl(0 0% 0% / 0));
}

.tech-marquee-group {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 14px;
	/* min-width: 100%; */
	animation: scroll-x 60s linear infinite;
}



.tech-marquee-vertical {
	--mask-direction: to bottom;
}

.tech-marquee-vertical,
.tech-marquee-vertical .tech-marquee-group {
	flex-direction: column;
}

.tech-marquee-vertical .tech-marquee-group {
	animation-name: scroll-y;
}

.tech-marquee-reverse .tech-marquee-group {
	animation-direction: reverse;
	animation-delay: -60s;
}

@keyframes scroll-x {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

@keyframes scroll-y {
	from {
		transform: translateY(0);
	}

	to {
		transform: translateY(-100%);
	}
}

.header-bg {
	background-color: #101010;
	box-shadow: 0 20px 50px #000000;
}

.header-bg .bg-clr {
	box-shadow: none;
}

.bg-clr {
	/* background-color: #101010;
	border-radius: 7px;
	box-shadow: 0 20px 50px #000000; */
	padding: 0px 40px;
}

.header {
	padding: 10px 0px;
	transition: all .5s;
	z-index: 997;
	position: fixed;
	width: 100%;
}

/* .home-slider {
	margin-top: -74px;
} */

img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}

.btn-contactus,
.btn-service-contact {
	background-color: #5b813b;
	color: #fff;
	width: max-content;
}

.btn-contactus:hover,
.btn-service-contact:hover {
	background-color: #14a800;
	color: #fff !important;
}

/* ============ Full Page Slider ================= */
.creative-fullpage--slider {
	background-color: #ffffff;
	z-index: 2;
	width: 100%;
	position: relative;
	flex-direction: column;
	height: 100vh;
	font-size: 16px;
	display: flex;
	clip-path: none !important;
}

.creative-fullpage--slider .slider-inner {
	background: #000;
	height: 100vh;
	position: relative;
}

.creative-fullpage--slider .swiper-slide {
	position: relative;
	display: flex;
	justify-content: center;
	text-align: left;
	flex-direction: column;
	overflow: hidden;
}

.creative-fullpage--slider .swiper-slide .slider-inner img {
	object-fit: cover;
	width: 100%;
	height: 100vh;
}

.creative-fullpage--slider .swiper-slide .slider-inner video {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
	position: absolute;
	top: 22%;
	left: 70px;
	z-index: 1;
}

.creative-fullpage--slider .swiper-slide .slider-inner::after {
	content: "";
	position: absolute;
	width: 101%;
	height: 100%;
	top: 0;
	left: -1px;
	background-color: transparent;
	background-image: radial-gradient(at center right, #FFFFFF00 50%, #00000096 100%);
}

.swiper-slide .slider-inner .swiper-content .title-area .tag {
	color: #ffffff;
	font-weight: 900;
	font-size: 20px;
	margin-bottom: 10px;
	margin-top: 0px;
}

.swiper-slide .slider-inner .swiper-content .title-area .title {
	margin-top: 50px;
	color: #fff;
	font-size: 3vw;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
	margin-bottom: 50px;
	text-decoration: none;
}

.swiper-slide .slider-inner .swiper-content p.disc {
	font-size: 20px;
	width: 100%;
	margin-top: 15px;
	margin: 20px 0px 40px 0px;
	font-weight: 400;
	line-height: 32px;
	color: #FFFFFFB0;
}

.creative-btn--wrap .creative-slide--btn {
	color: #14a800;
	margin-left: 18px;
	font-size: 1.4em;
	transition: margin-left 300ms cubic-bezier(0.49, 0, 0.01, 1);
	font-weight: 400;
	display: inline-flex;
	position: relative;
	white-space: nowrap;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	user-select: none;
	outline: none;
	outline-color: transparent;
	box-shadow: none;
	will-change: transform;
	backface-visibility: hidden;
}

.creative-btn--circle .circle {
	position: absolute;
	right: calc(100% - 10px);
	top: 0;
	bottom: 0;
	margin: auto;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	clip-path: circle(25% at 50% 50%);
	transition: clip-path 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--circle .circle .circle-fill {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 100%;
	background-color: #14a800;
	will-change: transform;
	transform: scale(0);
	z-index: 1;
	transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1), background-color 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--circle .circle-icon {
	transform: translate(-100%, 0%);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	z-index: 2;
	transition: all 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--circle .circle-icon .icon-arrow {
	width: 20px;
	height: 20px;
	stroke: none;
	fill: #ffffff;
}

.creative-btn--circle .circle-outline {
	fill: transparent;
	width: 10px;
	stroke: #ffffff;
}

.creative-btn--wrap .creative-slide--btn .creative-btn--label {
	margin-left: 4pt;
	transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--wrap .creative-slide--btn .creative-btn__border {
	position: absolute;
	left: 4pt;
	right: 0;
	bottom: 0;
	height: 1px;
	background: currentColor;
	transform-origin: right;
	transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--wrap .creative-slide--btn:hover .creative-btn--label {
	transform: translateX(18px);
}

.creative-btn--wrap .creative-slide--btn:hover .creative-btn__border {
	transform: scale(0, 1);
}

.creative-btn--wrap .creative-slide--btn:hover {
	margin-left: 38px !important;
}

.creative-btn--wrap .creative-slide--btn:hover .circle {
	clip-path: circle(50% at 50% 50%);
}

.creative-btn--wrap .creative-slide--btn:hover .circle-fill {
	transform: scale(1, 1);
}

.creative-btn--wrap .creative-slide--btn:hover .circle-icon {
	transform: translate(0%, 0%);
	opacity: 1;
}

.creative-fullpage--slider .swiper-container-h .swiper-button-next,
.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
	bottom: 5%;
	top: 50%;
	transform: scale(1);
	transition: all 0.4s;
	background-color: #FFFFFF00;
	backdrop-filter: blur(20px);
	height: 40px;
	width: 40px;
	line-height: 85px;
	border-radius: 50%;
	transition: all 0.4s;
	opacity: 0;
}

.creative-fullpage--slider:hover .swiper-container-h .swiper-button-next,
.creative-fullpage--slider:hover .swiper-container-h .swiper-button-prev {
	opacity: 1;
}

.creative-fullpage--slider .swiper-container-h .swiper-button-next {
	right: 20px;
}

.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
	left: 20px;
}

.swiper-container-h .slider-pagination-area {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: unset;
	right: unset;
	bottom: 80px;
	left: 50% !important;
	transform: translateX(-50%);
	width: 500px;
	z-index: 1;
}

.swiper-container-h .slider-pagination-area .slide-range {
	font-size: 16px;
	font-weight: 500;
	margin: 0 15px;
	color: #ffffff;
	line-height: 0;
	position: absolute;
	font-size: 20px;
}

.swiper-container-h .slider-pagination-area .slide-range.one {
	left: -50px;
}

.swiper-container-h .slider-pagination-area .slide-range.three {
	right: -50px;
}

.swiper-container-h .slider-pagination-area .swiper-pagination {
	bottom: 0 !important;
	width: 500px !important;
}

.swiper-container-h .slider-pagination-area .swiper-pagination .swiper-pagination-progressbar-fill {
	background: #14a800;
}

.swiper-container-h .swiper-button-next::after {
	content: "\f061";
	font-family: var(--fa-style-family, "Font Awesome 6 Free");
	font-weight: var(--fa-style, 900);
	background: none;
	color: #ffffff;
	font-size: 24px;
}

.swiper-container-h .swiper-button-prev::after {
	content: "\f060";
	font-family: var(--fa-style-family, "Font Awesome 6 Free");
	font-weight: var(--fa-style, 900);
	background: none;
	color: #ffffff;
	font-size: 24px;
}

.swiper-container-h .swiper-button-next:hover,
.swiper-container-h .swiper-button-prev:hover {
	background: #FFFFFF0D;
}


/* ====================== Responsive Ipad =============================== */
@media (max-width: 991px) {
	.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
		width: 100%;
		text-align: center;
		left: 0;
	}

	.creative-fullpage--slider .swiper-container-h .swiper-button-next,
	.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
		height: 50px;
		width: 50px;
		line-height: 50px;
	}

	.swiper-container-h .slider-pagination-area {
		width: 200px !important;
	}

	.swiper-container-h .swiper-button-next::after,
	.swiper-container-h .swiper-button-prev::after {
		font-size: 30px;
	}

	.creative-fullpage--slider .swiper-container-h .swiper-button-next,
	.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
		background: #ffffff3b;
	}

	.swiper-container-h .slider-pagination-area .swiper-pagination {
		bottom: 0 !important;
		width: 200px !important;
	}
}

/* ====================== Responsive Iphone =============================== */
@media screen and (max-width: 767px) {
	.swiper-slide .slider-inner .swiper-content .title-area .title {
		font-size: 64px;
	}

	.swiper-slide .slider-inner .swiper-content .title-area .tag {
		margin-bottom: 0px;
	}

	.swiper-slide .slider-inner .swiper-content p.disc {
		margin: 20px auto 20px auto;
		font-size: 16px;
		width: 95%;
	}

	.swiper-container-h .slider-pagination-area {
		display: none;
	}

	.swiper-slide .slider-inner .swiper-content p.disc br {
		display: none;
	}
}

.section-margin {
	margin-top: 100px;
	margin-bottom: 100px;
}

.pb-60 {
	padding-bottom: 60px;
}

.pt-60 {
	padding-top: 60px;
}

@media only screen and (min-width: 992px) {
	.about-section .title-move {
		position: absolute;
		right: -150px;
		top: 0;
	}
}

.border-bottom {
	border-bottom: 1px solid #bbb;
}

.pb-30 {
	padding-bottom: 30px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mt-80 {
	margin-top: 80px;
}

.title-block {
	letter-spacing: 2px;
	font-size: 20px;
}

.max-w570 {
	max-width: 570px;
}

.mb-10 {
	margin-bottom: 10px;
}

.d-grid:not(.d-grid-no-space) {
	grid-column-gap: 30px;
	grid-row-gap: 30px;
}

@media only screen and (min-width: 768px) {
	.grid-md-2 {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* .box-awards-item.has-border {
	padding: 10px;
	border: 1px solid #101010;
} */

@media (min-width: 992px) {
	.container.feature {
		max-width: 100% !important;
	}
}

.what-serv-bg {
	background-image: url('../images/what-serv.jpg');
	height: 100%;
	/* background-attachment: fixed; */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	filter: grayscale(0.4);
}

.what-serv-bg-consulting {
	background-image: url(../images/consulting.jpg);
	height: 100%;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.feature-text {
	padding-left: 8rem;
}

.feature-text i {
	font-size: 20px;
}

.bg-feature {
	background-color: #101010;
}

.job-list-ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.job-list-li {
	background-color: #101010;
	/* padding: 20px; */
	border-radius: 8px;
	cursor: default;
}

.job-list-title {
	font-size: 20px;
	font-weight: bold;
	color: #5b813b;
	margin-bottom: 6px;
}

.job-list-desg,
.job-list-location {
	font-size: 13px;
	color: #bbbb;
}

.p-10 {
	padding: 10px;
}

.ab-block {
	background-color: #101010;
	border-radius: 8px;
	padding: 20px;
}

.box-awards-item .title {
	font-weight: bold;
	margin-right: 5px;
	font-size: 40px;
	letter-spacing: 2px;
}

.box-awards-item .sm-title-block {
	font-weight: 400;
}

.sm-title-block {
	letter-spacing: 2px;
	font-size: 16px;
}

.dsn-text-shadow {
	text-shadow: -2px 4px 0 rgba(0, 0, 0, 0.1);
}

.mb-30 {
	margin-bottom: 30px;
}

.section-title {
	position: relative;
	font-size: 26px;
	/* letter-spacing: 2px; */
}

.section-title {
	cursor: default;
}

.section-title p {
	font-size: 14px;
	letter-spacing: 0px;
}

/*** Section Title ***/
.section-title::before {
	position: absolute;
	content: "";
	width: 150px;
	height: 5px;
	left: 0;
	bottom: 0;
	background: #14a800;
	border-radius: 2px;
}

.section-title.text-center::before {
	left: 50%;
	margin-left: -75px;
}

.section-title.section-title-sm::before {
	width: 90px;
	height: 3px;
}

.section-title::after {
	position: absolute;
	content: "";
	width: 6px;
	height: 5px;
	bottom: 0px;
	background: #FFFFFF;
	-webkit-animation: section-title-run 5s infinite linear;
	animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
	width: 4px;
	height: 3px;
}

.section-title.text-center::after {
	-webkit-animation: section-title-run-center 5s infinite linear;
	animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
	-webkit-animation: section-title-run-sm 5s infinite linear;
	animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
	0% {
		left: 0;
	}

	50% {
		left: 145px;
	}

	100% {
		left: 0;
	}
}

@-webkit-keyframes section-title-run-center {
	0% {
		left: 50%;
		margin-left: -75px;
	}

	50% {
		left: 50%;
		margin-left: 45px;
	}

	100% {
		left: 50%;
		margin-left: -75px;
	}
}

@-webkit-keyframes section-title-run-sm {
	0% {
		left: 0;
	}

	50% {
		left: 85px;
	}

	100% {
		left: 0;
	}
}

.main-logo img {
	width: 180px;
}

.detail-box-main {
	display: flex;
	/* flex-direction: column; */
	align-items: center;
	justify-content: center;
}

.detail-card {
	display: flex;
	justify-content: center;
	width: 100%;
	height: 100%;
}


.detail-card .card {
	margin: 10px;
	border-radius: 12px;
	position: relative;
	/* min-height: 390px;
	min-width: 238px; */
	width: 100%;
	background-color: #101010eb;
	cursor: default;
	box-shadow: rgb(96 96 96 / 0%) 0px 0px 2px 0px, rgb(48 48 48 / 29%) 0px 12px 24px -4px;
}

.detail-card .card .card-body {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #fff;
	padding: 30px 10px;
}

.detail-card .card .card-body h5 {
	color: #fff;
	font-size: 1.2rem;
	margin: 26px 0 0;
	font-weight: 700;
}

.detail-card .card .card-body p {
	margin: 20px 0 0;
}

.detail-card .card:hover::before {
	opacity: 1;
}

.detail-card .card::before {
	content: "";
	background: linear-gradient(45deg, transparent, #14a8001c, transparent);
	position: absolute;
	inset: -2px;
	z-index: 1;
	border-radius: 12px;
	opacity: 0;
	transition: opacity 300ms;
}

.info-btn {
	display: inline-block;
	padding: 10px 45px;
	/* background-color: #696464; */
	color: #fff;
	border: 1px solid #696464;
	-webkit-transition: all .2s;
	transition: all .2s;
	font-size: 16px;
	font-weight: 500;
}

.info-btn:hover {
	/* background-color: rgb(105, 100, 100); */
	color: #fff;
}

.info_section.layout_padding {
	padding: 20px 0 90px 0px;
}

.keypoints_section.layout_padding {
	padding: 20px 0 90px 0px;
}

.keyponts-bg {
	position: relative;
	background-color: #101010;
	color: #fff;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='800' preserveAspectRatio='none' viewBox='0 0 1440 800'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1071%26quot%3b)' fill='none'%3e%3cpath d='M1205.4410447925409 505.2848975016547L1111.6419020777187 336.06676464059575 1036.222911931482 599.084040216477z' fill='rgba(0%2c 0%2c 0%2c 0.2)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M740.7420457427327 339.061926068142L860.7509568874534 402.8717960072143 924.5608268265257 282.86288486249356 804.551915681805 219.05301492342122z' fill='rgba(0%2c 0%2c 0%2c 0.2)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M694.903209831021 203.6299542277832L751.4675986988461 314.64381805725554 889.706200009142 174.29030284078152z' fill='rgba(0%2c 0%2c 0%2c 0.2)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M581.1717404881779 649.0570327023208L558.6068160761099 465.28047116937836 374.8302545431674 487.8453955814463 397.3951789552354 671.6219571143888z' fill='rgba(0%2c 0%2c 0%2c 0.2)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M1288.672725375357 442.1239410520176L1401.5067303392232 333.1614090418864 1181.6459298420932 218.3916676011529z' fill='rgba(0%2c 0%2c 0%2c 0.2)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M318.75%2c717.995C396.256%2c720.638%2c482.242%2c719.665%2c526.846%2c656.225C577.097%2c584.753%2c581.842%2c484.918%2c534.046%2c411.781C489.553%2c343.698%2c399.867%2c331.895%2c318.75%2c337.8C249.033%2c342.875%2c187.903%2c379.84%2c151.67%2c439.618C113.895%2c501.94%2c96.365%2c580.338%2c133.868%2c642.823C170.562%2c703.96%2c247.488%2c715.565%2c318.75%2c717.995' fill='rgba(0%2c 0%2c 0%2c 0.2)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M30.767%2c881.184C79.204%2c882.179%2c133.098%2c875.022%2c157.613%2c833.236C182.323%2c791.118%2c164.393%2c739.191%2c138.28%2c697.929C114.265%2c659.982%2c75.66%2c631.632%2c30.767%2c632.804C-12.408%2c633.932%2c-45.096%2c666.341%2c-67.44%2c703.302C-90.817%2c741.971%2c-109.198%2c788.644%2c-87.359%2c828.202C-65.004%2c868.694%2c-15.476%2c880.234%2c30.767%2c881.184' fill='rgba(0%2c 0%2c 0%2c 0.2)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M174.2077953800373 705.5378375803897L154.17357148020955 611.2842246012272 22.81026396137952 688.46236694055z' fill='rgba(0%2c 0%2c 0%2c 0.2)' class='triangle-float1'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1071'%3e%3crect width='1440' height='800' fill='white'%3e%3c/rect%3e%3c/mask%3e%3cstyle%3e %40keyframes float1 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-10px%2c 0)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float1 %7b animation: float1 5s infinite%3b %7d %40keyframes float2 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-5px%2c -5px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float2 %7b animation: float2 4s infinite%3b %7d %40keyframes float3 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(0%2c -10px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float3 %7b animation: float3 6s infinite%3b %7d %3c/style%3e%3c/defs%3e%3c/svg%3e");
	height: 100%;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg-circle-dotted {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 18vw;
	background-image: url('../images/circle-dotted.png');
	background-size: contain;
	opacity: 0.4;
	background-repeat: no-repeat;
}

.bg-circle-dotted.bg-circle-dotted-right {
	left: auto;
	right: 0;
	top: auto;
	bottom: 0;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.keypoints_section .k-heading {
	font-weight: 700;
	font-size: 3rem;
	color: #14a800;
	text-align: center;
}

#hanging-icons {
	z-index: 1;
	position: relative;
}

.content_section.layout_padding {
	padding: 20px 0px 40px 0px;
}

.content-img {
	position: relative;
	width: 100%;
	padding-top: 50%;
}

.content-img>.block {
	position: absolute;
	height: 100%;
	width: 30%;
	perspective: 1000px;
}

.content-img>.block:nth-of-type(1) {
	height: 80%;
	top: 10%;
	left: 17%;
	width: 15%;
	animation: float 4s ease-in-out infinite;
	animation-delay: 0s;
}

.content-img>.block:nth-of-type(2) {
	top: 0;
	left: 35%;
	animation: float 4s ease-in-out infinite;
	animation-delay: 0.5s;
}

.content-img>.block:nth-of-type(3) {
	height: 80%;
	top: 10%;
	left: 64%;
	width: 15%;
	animation: float 4s ease-in-out infinite;
	animation-delay: 1s;
}

.content-img>.block>.side {
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('../images/v3.gif');
	background-size: auto 100%;
	box-shadow: -1vw 0.5vw 1vw rgba(0, 0, 0, 0.3);
}

.content-img>.block>.side.-main {
	height: 100%;
	width: 100%;
	transform: rotateY(30deg);
	transform-origin: 0 50%;
}

@keyframes float {
	0% {
		transform: translateY(0px) rotateY(30deg);
	}

	50% {
		transform: translateY(-10px) rotateY(30deg);
	}

	100% {
		transform: translateY(0px) rotateY(30deg);
	}
}

.content-img>.block>.side.-left {
	height: 100%;
	width: 20%;
	transform-origin: 0 50%;
	transform: rotateY(-60deg) translateX(-100%);
	filter: brightness(40%);
}

.content-img>.block:nth-of-type(1)>.side.-main {
	background-position: 4% 50%;
	background-size: auto 130%;
}

.content-img>.block:nth-of-type(1)>.side.-left {
	background-position: 0 50%;
	background-size: auto 130%;
}

.content-img>.block:nth-of-type(2)>.side.-main {
	background-position: 50% 0;
}

.content-img>.block:nth-of-type(2)>.side.-left {
	background-position: 28.5% 0;
}

.content-img>.block:nth-of-type(3)>.side.-main {
	background-position: 96% 50%;
	background-size: auto 130%;
}

.content-img>.block:nth-of-type(3)>.side.-left {
	background-position: 78% 50%;
	background-size: auto 130%;
}

nav.breadcrumbs {
	font-size: 14px;
	line-height: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid #FFF;
	display: flex;
	align-items: center;
	color: #fff;
}

.breadcrumbs-dot {
	width: 1px;
	height: 13px;
	background-color: #fff;
	display: inline-block;
	position: relative;
	top: 2px;
	margin-left: 10px;
	margin-right: 10px;
}

.breadcrumbs a {
	color: #fff;
}

.who-we-shadow {
	box-shadow: 20px 20px 5px 0px #101010;
	border: 4px solid #000000;
}

.text-primary {
	color: #14a800 !important;
}

.mission-vision .card {
	background-color: #101010;
	height: 100%;
	position: relative;
	margin-bottom: 0px;
	border-radius: 8px;
	cursor: default;
	box-shadow: none;
}

.mission-vision .card:hover::before {
	opacity: 1;
}

.mission-vision .card-body {
	overflow: hidden;
	position: relative;
}

.mission-vision .card::before {
	content: "";
	background: linear-gradient(45deg, transparent, #14a800, transparent);
	position: absolute;
	inset: -2px;
	z-index: -1;
	border-radius: 8px;
	opacity: 0;
	transition: opacity 300ms;
}

.mission-vision .card svg {
	opacity: .4;
	position: absolute;
	bottom: -12%;
	right: -2%;
	z-index: 1;
	width: 120px;
	height: 120px;
	color: #000000;
	transition: all 0.15s ease-in-out;
}

.home-aboutus {
	position: relative;
	padding: 16px;
	border: 1px solid #101010;
	border-radius: 8px;
}

.home-aboutus img {
	height: 500px;
	border-radius: 8px;
	position: relative;
}

.home-aboutus:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: #0000004f;
	z-index: 1;
	border-radius: 8px;
}


.content-last img {
	border-radius: 8px;
	position: relative;
	box-shadow: -20px -20px 5px 0px #101010;
}

.content-last:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: #00000015;
	z-index: 1;
	border-radius: 8px;
}

.info-container {
	border-radius: 14px;
	padding: 30px;
	background-image: url('../images/info-work-laptop.jpg');
	background-position: top;
	background-size: cover;
	position: relative;
}

.info-container:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: #0000008f;
	z-index: 1;
	border-radius: 14px;
}

.detail-box {
	margin-bottom: 60px;
	color: #fff;
}

.detail-box h1 {
	margin-bottom: 1rem;
}

.detail-box .info-btn {
	border: 1px solid #ffffff;
	position: relative;
}

.detail-box .info-btn:hover::before {
	opacity: 1;
}

.detail-box .info-btn::before {
	content: "";
	background: linear-gradient(45deg, transparent, #14a8001c, transparent);
	position: absolute;
	inset: -2px;
	z-index: 1;
	border-radius: 12px;
	opacity: 0;
	transition: opacity 300ms;
}

.detail-box .info-btn:hover {
	border: 1px solid #14a800;
	color: #14a800;
}

.detail-card svg {
	width: 48px;
	height: 48px;
}

.row-z-index {
	z-index: 2;
	position: relative;
}

.about-section.layout_padding {
	padding: 20px 0px;
}

ul.core-value-ul {
	padding-left: 2rem;
}

ul.core-value-ul li {
	position: relative;
	margin-bottom: 8px;
	font-size: 15px;
}

ul.core-value-ul li:before {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	border: 2px solid #14a800;
	top: 50%;
	left: -20px;
	transform: translateY(-50%);
	border-radius: 50%;
}

.our-location-img img {
	width: 200px;
}

.our-location-img {
	margin-bottom: 16px;
}

.our-location-info {
	padding-left: 18px;
}

.our-location-info-item {
	margin-bottom: 10px;
}

.our-location-info-item {
	display: flex;
	align-items: center;
	gap: 6px;
}

.our-location-info-item-icon {
	width: 28px;
	height: 28px;
	background-color: #101010;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
}

.approach-item {
	position: relative;
	height: 100%;
	padding: 40px 30px;
	transition: .5s;
	background-color: #101010;
	border-radius: 8px;
	cursor: default;
}

.approach-item .approach-icon {
	margin-bottom: 30px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
	border-radius: 2px;
	transform: rotate(-45deg);
}

.approach-item .approach-icon i {
	transform: rotate(45deg);
}

.approach-item a.btn {
	position: absolute;
	width: 60px;
	bottom: -48px;
	left: 50%;
	margin-left: -30px;
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

.approach-item:hover a.btn {
	bottom: -24px;
	opacity: 1;
}

.approach-item h4 {
	font-size: 18px;
}

.approach-item:hover::before {
	opacity: 1;
}

.approach-item::before {
	content: "";
	background: linear-gradient(45deg, transparent, #14a800, transparent);
	position: absolute;
	inset: -2px;
	z-index: -1;
	border-radius: 8px;
	opacity: 0;
	transition: opacity 300ms;
}

.d_card {
	position: relative;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	padding: 1rem;
	width: 100%;
	text-align: center;
	color: #fff;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
		0 2px 2px rgba(0, 0, 0, 0.1),
		0 4px 4px rgba(0, 0, 0, 0.1),
		0 8px 8px rgba(0, 0, 0, 0.1),
		0 16px 16px rgba(0, 0, 0, 0.1);
	border-radius: 14px;
	background-position: top;
	background-size: cover;
	min-height: 230px;
	cursor: default;
	transition: transform 0.5s ease;
}


.d_card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 200%;
	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 0.79) 100%);
	transform: translateY(-50%);
	transition: transform 1s ease;
	pointer-events: none;
}

.d_card.pb {
	background-image: url('../images/hiring.jpeg');
}

.d_card.ph {
	background-image: url('../images/direct-hire-staffing.jpg');
}

.d_card.as {
	background-image: url('../images/agu.jpeg');
}

.d_card.ddm {
	background-image: url('../images/pbm.jpeg');
}

.d_card:before {
	content: "";
	width: 100%;
	height: 110%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: #00000060;
	z-index: 1;
	border-radius: 14px;
}


.content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 1rem;
	transition: transform 0.5s ease;
	z-index: 1;
}

.heading {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.2;
}

.data-content {
	font-size: 14px;
	color: #b7b7b7;
}

@media (hover: hover) and (min-width: 600px) {
	.d_card::after {
		transform: translateY(0);
	}

	.content {
		transform: translateY(calc(100% - 4.5rem));
	}

	.content>*:not(.heading) {
		opacity: 0;
		transform: translateY(1rem);
		transition: opacity 0.5s ease, transform 0.5s ease;
	}

	.d_card:hover,
	.d_card:focus-within {
		align-items: center;
	}

	.d_card:hover::before,
	.d_card:focus-within::before {
		transform: translateY(-4%);
	}

	.d_card:hover::after,
	.d_card:focus-within::after {
		transform: translateY(-50%);
	}

	.d_card:hover .content,
	.d_card:focus-within .content {
		transform: translateY(0);
	}

	.d_card:hover .content>*:not(.heading),
	.d_card:focus-within .content>*:not(.heading) {
		opacity: 1;
		transform: translateY(0);
		transition-delay: 0.1s;
	}
}

.service-item {
	position: relative;
	height: 100%;
	padding: 40px 30px;
	transition: .5s;
	background-color: #101010;
	border-radius: 8px;
	cursor: default;
}

.service-item .service-icon {
	margin-bottom: 30px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
	border-radius: 2px;
	transform: rotate(-45deg);
}

.service-item .service-icon i {
	transform: rotate(45deg);
	font-size: 24px;
}

.service-item a.btn {
	position: absolute;
	width: 60px;
	bottom: -48px;
	left: 50%;
	margin-left: -30px;
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

.service-item:hover a.btn {
	bottom: -24px;
	opacity: 1;
}

.service-item:hover::before {
	opacity: 1;
}

.service-item::before {
	content: "";
	background: linear-gradient(45deg, transparent, #14a800, transparent);
	position: absolute;
	inset: -2px;
	z-index: -1;
	border-radius: 8px;
	opacity: 0;
	transition: opacity 300ms;
}

.bg-aboutus {
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/aboutus-bg.jpg') center center no-repeat;
	background-size: cover;
}

.bg-contactus {
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/contactus-bg.jpg') center center no-repeat;
	background-size: cover;
}

.bg-services {
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/services-bg.jpg') center center no-repeat;
	background-size: cover;
}

.bg-careers {
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/careers-bg.jpg') center center no-repeat;
	background-size: cover;
}

@media (min-width: 992px) {
	.nav-item {
		position: relative;
	}

	/* .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    } */

	.nav-link::before {
		position: absolute;
		content: "";
		width: 0;
		height: 2px;
		bottom: -1px;
		left: 50%;
		background: #14a800;
		transition: .5s;
	}

	.nav-link:hover::before,
	.nav-link.active::before {
		width: 100%;
		left: 0;
	}

	.nav-link.nav-contact::before {
		display: none;
	}

}

a:hover {
	color: #14a800;
}

.nav-link:focus,
.nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
	color: #14a800;
}

.nav-dropdown-menu {
	background-color: #101010;
	padding: 8px;
	box-shadow: 0 0.5rem 1rem rgb(46 46 46 / 15%) !important;
}

.nav-dropdown-menu .dropdown-item:focus,
.nav-dropdown-menu .dropdown-item:hover {
	color: #14a800;
	background-color: #000;
	transform: scale(0.92);
}

.nav-dropdown-menu .dropdown-item {
	color: #fff;
	transition: all 0.2s ease-in-out;
}

.section-title h1 {
	/* color: #14a800; */
	color: #14a800;
}

.why-us {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}

.why-us-item {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 6px;
}

.why-us-item-icon {
	font-size: 22px;
}

.jobs-container .accordion-item {
	background-color: #101010;
	border-radius: 0px;
	border: none;
	border-bottom: 1px solid #fff;

}

.jobs-container .accordion-item:last-child {
	border-bottom: 0px solid #fff;
}

.jobs-container .accordion-button {
	background-color: #101010;
	border-radius: 0px;
	color: #fff;
	font-size: 18px;
}

.accordion-job P {
	color: #959595;
	padding-left: 2rem;
}

.jobs-container ul {
	padding-left: 2rem;
	color: #959595;
}

.jobs-container ul li {
	position: relative;
	margin-bottom: 8px;
	font-size: 15px;
}

.jobs-container ul li:before {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	border: 2px solid #14a800;
	top: 50%;
	left: -20px;
	transform: translateY(-50%);
	border-radius: 50%;
}

footer {
	padding-top: 40px;
	background-color: #101010;
	color: #676767;
	margin-top: 50px;
}

.article-con article {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 40px 50px;
	border-radius: 10px;
	background: linear-gradient(90deg, #114c0a, #6fc563);
	color: #fff;
}

.article-con article h2 {
	margin-top: 15px;
	margin-bottom: 10px;
	font-weight: 900;
	color: rgb(255 255 255 / 70%);
}

.article-con article a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 1rem 1.25rem;
	background: #0a1536;
	border: 0;
	border-radius: 10px;
	color: #f9f9f9;
	font-size: 16px;
}

footer section {
	padding: 0 50px;
}

.slide-range {
	display: none;
}

@media (width > 600px) {
	.article-con article {
		flex-direction: row;
		min-height: 140px;
		/* margin: -70px 60px 60px;
		padding: 30px 50px 30px; */
	}

}

.article-con article p {
	margin-bottom: 0px;
}

.dv-flx {
	display: flex;
	gap: 66px;
}

.left-row {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
	.left-row {
		display: flex;
		width: 100%;
		justify-content: space-between;
		gap: 10px;
	}
}

.right-row {
	max-width: 275px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
	.right-row {
		max-width: 100%;
		width: 100%;
	}
}

.columns-px {
	box-sizing: border-box;
}

.columns-px p {
	font-size: 15px;
	font-weight: 600;
	text-transform: capitalize;
}

ul.list_clm {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	background: rgba(0, 0, 0, 0);
}

ul.list_clm li {
	margin-top: 10px;
	width: 100%;
	font-size: 13px;
	line-height: 24px;
	display: flex;
	align-items: center;
	width: fit-content;
	text-transform: capitalize;
}

.footer-link {
	cursor: pointer;
	color: #676767;
	text-transform: capitalize;
	font-size: 13px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
	.right-ft-list img {
		width: 30%;
		height: 100%;
	}
}

.right-info-ftr {
	padding-left: 10px;
	margin-top: 15px;
	font-size: 13px;
	line-height: 27px;
}

.contact-ftr {
	margin-top: 14px;
	padding-left: 10px;
}

.contact-ftr p {
	font-size: 15px;
	font-weight: 600;
	color: #000;
}

address {
	margin-bottom: 1rem;
	font-style: normal;
	line-height: inherit;
}

.cnt-px {
	margin-bottom: 10px;
}



span.gpt {
	margin: 0 5px;
}

span.act a {
	font-size: 13px;
	color: #676767;
	font-weight: 600;
}


.down-footer {
	border-top: 1px solid #cdcdcd;
	padding-top: 12px;
	padding-bottom: 12px;
}

.d-flex-vx {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}


.followUs {
	display: flex;
	align-items: baseline;
}

.followUs a {
	color: #676767;
}


@media screen and (min-width: 768px) and (max-width: 1199px) {
	.followUs ul {
		padding-left: 0;
	}
}

.followUs ul li {
	display: inline-block;
	margin: 0 15px;
}

.followUs img {
	height: 20px;
}

@media screen and (max-width: 480px) {
	.swiper-slide .slider-inner .swiper-content .title-area .title {
		font-size: 20px;
	}

	.home-aboutus img {
		height: 230px;
	}

	.detail-card {
		flex-direction: column;
	}

	.keypoints_section .k-heading {
		font-size: 2rem;
	}

	.article-con article {
		padding: 40px 50px;
	}

	.d-flex-vx {
		flex-direction: column;
	}

	.mission-vision .row {
		gap: 26px;
	}

	.why-us {
		grid-template-columns: 1fr;
	}

	.btn-contactus {
		background-color: transparent;
		border: none;
	}

	.btn-contactus:hover {
		background-color: transparent;
		border: none;
	}

	.box.content-box2 {
		margin-top: 16px;
	}
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
	.btn-contactus {
		background-color: transparent;
		border: none;
	}

	.btn-contactus:hover {
		background-color: transparent;
		border: none;
	}

	.home-aboutus img {
		height: 410px;
	}

	.detail-card {
		flex-direction: column;
	}

	/* .detail-card .card {
		min-height: 220px;
	} */

	.detail-card svg {
		width: 40px;
		height: 40px;
	}

	.keypoints_section .k-heading {
		font-size: 2rem;
	}

	.content-img {
		height: 100%;
	}

	.article-con article {
		padding: 40px 50px;
	}

	.article-con article button {
		white-space: nowrap;
	}

	.cnt-px {
		display: flex;
	}
}

@media only screen and (max-width: 768px) {
		.feature-text {
    padding-left: 0px;
}
}
@media (min-width: 1400px) {
    .container.feature {
        max-width: 1320px!important;
    }
}