@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



/*============================== basic css ==============================*/

body {
	background-color: #F6F6F6;
	margin: 0px;
	overflow-x: hidden !important;
	font-family: "Poppins", sans-serif;
	scroll-behavior: smooth !important;
	/* background-image: url(../images/body-bg.png); */
	background-size: 100%;
	background-repeat: no-repeat;
}

* {
	margin: 0px;
}

p {
	margin: 0px;
}

a {
	margin: 0px;
	text-decoration: none;
	color: black;
}

a:hover {
	color: black;
	text-decoration: none;
}

.row {
	margin-right: 0px;
	margin-left: 0px;
}

ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

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

h1, h2, h3, h4, h5, h6 {
	margin: 0px;
}

button {
	outline: none;
}

input {
	outline: none !important;
}

textarea {
	outline: none;
}

select {
	outline: none;
}

option {
	outline: none;
}

/* Chrome, Safari, Edge, Opera */



input::-webkit-outer-spin-button,



input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */



input[type=number] {
	-moz-appearance: textfield;
}

.container {
	max-width: 1760px !important;
}

@media only screen and (min-width: 1500px) {
}

.main-btn {
	width: fit-content;
	padding: 15px 78px 15px 38px;
	background-color: white;
	border-radius: 50px;
	font-size: 19px;
	line-height: 38px;
	font-weight: 500;
	position: relative;
	transition: all .7s ease;
	border: 0;
	text-transform: capitalize;
	display: inline-block;
}

.main-btn span.button-arrow {
	position: absolute;
	height: 52px;
	width: 52px;
	background-color: #0C55B4;
	right: 8px;
	top: 8px;
	border-radius: 50%;
	padding: 14px;
	transition: all .7s ease;
	border: 1px solid #0C55B4;
	fill: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-btn svg {
	width: 100%;
	height: 100%;
}

.main-btn:hover {
	background-color: #0C55B4;
	color: white;
}

.main-btn:hover span.button-arrow {
	border: 1px solid #ffffff;
	background-color: #0C55B4;
	transform: rotate(45deg);
}

/*============================== /basic css ==============================*/

/*============================== main css ==============================*/

/* ============ header css ============ */



header {
	padding: 20px 0;
	position: absolute;
	width: 100%;
	z-index: 9;
	top: 0;
	left: 0;
}

header:not(.home-header) {
	background-color: #ffffff;
}

header div.header-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header div.header-wrapper .header-logo img {
	width: 242px;
	height: 57px;
	object-fit: contain;
}

.header-links ul li {
	display: inline-block;
	margin-left: 10px;
}

.header-links ul li a {
	padding: 10px 25px;
	border-radius: 50px;
	font-size: 17px;
	font-weight: 500;
	color: #272525;
	transition: all .7s ease;
	border: 1px solid transparent;
}

.header-links ul li a:hover {
	border: 1px solid #3C487F;
	color: #3C487F;
}

.header-links ul li a.active {
	border: 1px solid #3C487F;
	color: #3C487F;
}

.home-header .header-links ul li a {
	color: #ffffff;
}

.home-header .header-links ul li a:hover {
	color: #ffffff;
	border: 1px solid #ffffff;
}

.home-header .header-links ul li a.active {
	color: #ffffff;
	border: 1px solid #ffffff;
}

.sidenav {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: #0C55B4;
	overflow-x: hidden;
	transition: 0.5s;
}

button.sidenav-open-btn {
	border: 0px;
	background-color: white;
	width: 30px;
	height: 30px;
	padding: 0px;
	border-radius: 3px;
	color: #0c55b4;
	font-weight: 700;
}

button.closebtn.sidenav-close-btn {
	position: absolute;
	right: 5px;
	top: 5px;
	border: 0px;
	padding: 0px;
	width: 30px;
	height: 30px;
	font-size: 23px;
	background-color: white;
	color: #0c55b4;
}

.sidenav li a {
	padding: 10px 20px;
	width: 100%;
	display: inline-block;
	font-size: 20px;
	color: white;
}

.sidenav img {
	width: 150px;
	height: 70px;
	object-fit: contain;
	margin: 10px 20px;
}

.dropdown-content {
	display: none;
	position: absolute;
	width: 355px;
	background-color: white;
	color: black;
	top: 32px;
	box-shadow: 3px 3px 10px #00000024;
	padding: 10px;
}

.dropdown-content a {
	color: black !important;
	padding: 10px;
	display: inline-block;
	margin-bottom: 10px;
	border: 0 !important;
	transition: 0.5s;
}

.dropdown-content a:hover {
	border: 0 !important;
	color: #0c55b4 !important;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropbtn svg {
	width: 30px;
	height: 24px;
	padding: 7px 9px;
}

.home-header .header-links .dropbtn svg {
	fill: #fff;
}



/* ============ /header css ============ */

/* ============ banner css ============ */



.banner-section {
	background-repeat: no-repeat;
	background-position: top right;
	background-size: 53% 85%;
}

.banner-sec {
	padding: 250px 0 100px 0;
	position: relative;
}

.banner-sec div.banner-sec-wrapper h6 {
	font-size: 50px;
	line-height: 60px;
	color: #464444;
	text-transform: uppercase;
	font-weight: 400;
	margin-bottom: 30px;
}

.banner-sec div.banner-sec-wrapper h1 {
	font-size: 146px;
	line-height: 128px;
	color: #464444;
	text-transform: uppercase;
	font-weight: 800;
	margin-bottom: 35px;
}

.banner-sec div.banner-sec-wrapper h1 span {
	color: #79B2FD;
}

.banner-sec div.banner-sec-wrapper p {
	font-size: 18px;
	line-height: 38px;
	color: #312B2B;
	font-weight: 400;
	width: 100%;
	max-width: 60%;
}

.banner-sec div.banner-sec-wrapper p + p {
	margin-top: 20px;
}

.banner-sec div.banner-sec-wrapper > a {
	margin-top: 55px;
	display: inline-block;
}



/* ============ /banner css ============ */

/* ============ about css ============ */



.about-sec {
	padding: 100px 0;
}

.about-sec .about-sec-wapper .about-sec-img div {
	gap: 36px;
	margin-bottom: 18px;
}

.about-sec .about-sec-wapper .about-sec-img div h2 {
	font-size: 81px;
	line-height: 97px;
	font-weight: 800;
	color: #464444;
	text-align: end;
}

.about-sec .about-sec-wapper .about-sec-img .banner-img-1-wrap {
	width: 55%;
	height: 361px;
	border-radius: 15px;
	overflow: hidden;
}

.about-sec .about-sec-wapper .about-sec-img .banner-img-2-wrap {
	width: 100%;
	height: 540px;
	border-radius: 15px;
	overflow: hidden;
}

.about-sec .about-sec-wapper .about-sec-img .banner-img-1-wrap img,

.about-sec .about-sec-wapper .about-sec-img .banner-img-2-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-sec .about-sec-wapper .about-sec-text h3 {
	font-size: 44px;
	line-height: 54px;
	color: #615858;
	font-weight: 300;
	margin-bottom: 32px;
}

.about-sec .about-sec-wapper .about-sec-text h3 span {
	font-weight: 800;
}

.about-sec .about-sec-wapper .about-sec-text p {
	font-size: 17px;
	line-height: 32px;
	color: #615858;
}

.about-sec .about-sec-wapper .about-sec-text p + p {
	margin-top: 20px;
}

.about-sec-text a {
	margin-top: 20px;
}

/* ============ about css ============ */

/* ============ our service css ============ */



.our-service-sec {
	padding: 100px 0;
	position: relative;
	z-index: 1;
}

.heading-div h2 {
	font-size: 114px;
	line-height: 117px;
	text-align: right;
	color: #464444;
	font-weight: 800;
	text-transform: uppercase;
}

.heading-div h2 span {
	font-size: 50px;
	line-height: 75px;
	text-align: right;
	color: #464444;
	font-weight: 400;
	text-transform: uppercase;
}

.heading-div p {
	font-size: 17px;
	line-height: 38px;
	font-weight: 400;
	color: #615858;
}

.heading-div p + p {
	margin-top: 21px !important;
}

.our-service-sec .our-service-wrapper .heading-div {
	margin-top: 96px;
}

.our-service-sec .our-service-wrapper .our-service-slider-content {
	background-color: #0C55B4;
	padding: 40px 31px 100px 25px;
	border-radius: 30px;
	height: 650px;
	position: relative;
}

.our-service-sec .our-service-wrapper .our-service-slider-content .service-slider-content-icon {
	width: 105px;
	height: 105px;
	padding: 20px 23px 22px 22px;
	border-radius: 50%;
	margin-bottom: 57px;
	background-color: #ffffff;
}

.our-service-sec .our-service-wrapper .our-service-slider-content img.icon {
	object-fit: contain;
	width: 100%;
	height: 100%;
}

.our-service-sec .our-service-wrapper .our-service-slider-content h5 {
	font-size: 26px;
	line-height: auto;
	color: #ffffff;
	font-weight: 700;
}

.our-service-sec .our-service-wrapper .our-service-slider-content p {
	font-size: 17px;
	line-height: 32px;
	font-weight: 400;
	color: #ffffff;
	margin-bottom: 50px;
}

.our-service-sec .our-service-wrapper .our-service-slider-content a {
	position: absolute;
	bottom: 25px;
	left: 25px;
	border: 1px solid transparent;
}

.our-service-sec .our-service-wrapper .our-service-slider-content a:hover {
	border-color: #FFFFFF;
}

.our-service-sec .our-service-wrapper .swiper {
	position: unset !important;
}

.our-service-sec .our-service-wrapper .custom-nav {
	position: absolute;
	left: 0px;
	bottom: 50px;
}

.our-service-sec .our-service-wrapper .custom-nav button.swiper-button-prev {
	width: 66px;
	height: 66px;
	background-color: transparent;
	border: 1px solid #0C55B4;
	border-radius: 50%;
	font-size: 20px;
	color: white;
	position: absolute;
	bottom: 0px;
	left: 0px;
	padding: 18px;
	transition: all .7s ease;
}

.our-service-sec .our-service-wrapper .custom-nav button.swiper-button-next {
	width: 66px;
	height: 66px;
	background-color: transparent;
	border: 1px solid #0C55B4;
	border-radius: 50%;
	font-size: 20px;
	color: white;
	position: absolute;
	bottom: 0px;
	left: 80px;
	padding: 18px;
	transition: all .7s ease;
}

.our-service-sec .our-service-wrapper .custom-nav button.swiper-button-prev img {
	transform: rotate(180deg);
}

.our-service-sec .our-service-wrapper .custom-nav button.swiper-button-prev:hover {
	background-color: #0C55B4;
	border: 1px solid #0C55B4;
}

.our-service-sec .our-service-wrapper .custom-nav button.swiper-button-next:hover {
	background-color: #0C55B4;
	border: 1px solid #0C55B4;
}

.our-service-sec .our-service-wrapper .custom-nav button.swiper-button-prev:hover img {
	filter: brightness(0) invert(1);
}

.our-service-sec .our-service-wrapper .custom-nav button.swiper-button-next:hover img {
	filter: brightness(0) invert(1);
}

.our-service-sec .our-service-wrapper .custom-nav button.swiper-button-prev::after {
	display: none;
}

.our-service-sec .our-service-wrapper .custom-nav button.swiper-button-next::after {
	display: none;
}

.our-service-sec .our-service-wrapper .swiper-button-next:after, .swiper-button-prev:after {
	font-size: 32px;
}

.our-service-sec .our-service-wrapper .service-slider button.main-btn {
	background-color: #38222200;
	color: white;
	border: 1px solid white;
}

.our-service-sec .our-service-wrapper .service-slider button.main-btn svg {
	background-color: #ffffff;
	transform: rotate(335deg);
	padding: 12px;
}



/* ============ /our service css ============ */

/* ============ Our Portfolio css ============ */



.our-portfolio-sec {
	padding: 100px 0;
	position: relative;
	z-index: 1;
}

.our-portfolio-sec .heading-div h2 {
	margin-top: 36px;
	margin-bottom: 49px;
}

.our-portfolio-sec .heading-div p {
	font-size: 17px;
	line-height: 38px;
	font-weight: 400;
	color: #615858;
	margin-bottom: 21px;
	text-align: right;
}

.our-portfolio-sec .our-portfolio-wrapper .our-portfolio-item {
	height: 646px;
	border-radius: 50px;
	position: relative;
	background-size: cover;
	margin-bottom: 37px;
}

.our-portfolio-sec .our-portfolio-wrapper.down-row .our-portfolio-item {
	height: 560px;
}

.our-portfolio-sec .our-portfolio-wrapper .our-portfolio-item a {
	width: 82%;
	padding: 0px 100px 0px 31px;
	background-color: white;
	border-radius: 0 50px 0 50px;
	font-size: 23px;
	line-height: 38px;
	font-weight: 600;
	text-transform: uppercase;
	position: absolute;
	bottom: 0px;
	left: 0;
	border: 0px;
	height: 99px;
	text-align: left;
	display: flex;
	align-items: center;
	transition: 0.5s;
}

.our-portfolio-sec .our-portfolio-wrapper .our-portfolio-item a span.button-arrow {
	position: absolute;
	height: 72px;
	width: 72px;
	background-color: #0C55B4;
	right: 11px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
	padding: 20px;
	transition: 0.5s;
	fill: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.our-portfolio-sec .our-portfolio-wrapper .our-portfolio-item a svg {
	width: 100%;
	height: 100%;
	transition: 0.5s;
}

.our-portfolio-sec .our-portfolio-wrapper .our-portfolio-item a:hover svg {
	transform: rotate(45deg);
}

/* ============ /Our Portfolio css ============ */

/* ============ Testimonial css ============ */



.testimonial-sec {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.testimonial-sec h2 {
	text-align: center;
	font-size: 98px;
	line-height: 127px;
	text-transform: uppercase;
	color: #464444;
	font-weight: 800;
	margin-bottom: 90px;
}

.testimonial-sec .testimonial-sec-wrapper {
	position: relative;
	width: 100%;
	max-width: 1267px;
	margin: auto;
}

.testimonial-sec .testimonial-sec-wrapper .swiper.testimonial-slider .swiper-wrapper .swiper-slide {
	background-color: #0C55B4;
	padding: 85px 63px 102px 81px;
	border-radius: 30px;
	text-align: center;
	opacity: 50%;
}

.testimonial-sec .testimonial-sec-wrapper .swiper.testimonial-slider .swiper-wrapper .swiper-slide.swiper-slide-active {
	opacity: 100%;
	height: 750px;
}

.testimonial-sec .testimonial-sec-wrapper .testimonial-slider .swiper-slide img {
	width: 102px;
	height: 102px;
	object-fit: contain;
	margin-bottom: 99px;
}

.testimonial-sec .testimonial-sec-wrapper .testimonial-slider .swiper-slide p {
	font-size: 25px;
	line-height: 48px;
	font-weight: 500;
	font-style: italic;
	margin-bottom: 83px;
	color: #fff;
	margin-top: 30px;
}

.testimonial-sec .testimonial-sec-wrapper .testimonial-slider .swiper-slide h6 {
	font-size: 24px;
	line-height: 38px;
	font-weight: 500;
	color: #fff;
}

.testimonial-sec .testimonial-sec-wrapper .swiper.testimonial-slider {
	position: relative;
}

.testimonial-sec .container {
	position: relative;
}

.testimonial-sec .container .custom-nav button.swiper-button-prev {
	width: 66px;
	height: 66px;
	background-color: transparent;
	border: 1px solid #0C55B4;
	border-radius: 50%;
	font-size: 20px;
	color: white;
	position: absolute;
	bottom: 100px;
	left: 0px;
	padding: 18px;
	transition: all .7s ease;
}

.testimonial-sec .container .custom-nav button.swiper-button-next {
	width: 66px;
	height: 66px;
	background-color: transparent;
	border: 1px solid #0C55B4;
	border-radius: 50%;
	font-size: 20px;
	color: white;
	position: absolute;
	bottom: 100px;
	right: 0px;
	padding: 18px;
	transition: all .7s ease;
}

.testimonial-sec .container .custom-nav button.swiper-button-prev img {
	transform: rotate(180deg);
}

.testimonial-sec .container .custom-nav button.swiper-button-prev:hover {
	background-color: #0C55B4;
	border: 1px solid #0C55B4;
	color: white;
}

.testimonial-sec .container .custom-nav button.swiper-button-next:hover {
	background-color: #0C55B4;
	border: 1px solid #0C55B4;
	color: white;
}

.testimonial-sec .container .custom-nav button.swiper-button-prev:hover img {
	filter: brightness(0) invert(1);
}

.testimonial-sec .container .custom-nav button.swiper-button-next:hover img {
	filter: brightness(0) invert(1);
}

.testimonial-sec .container .custom-nav button.swiper-button-prev::after {
	display: none !important;
}

.testimonial-sec .container .custom-nav button.swiper-button-next::after {
	display: none !important;
}



/* ============ /Testimonial css ============ */

/* ============ contact from css ============ */



.contact-from-sec {
	padding: 100px 0px !important;
	position: relative;
	z-index: 1;
}

.contact-from-sec .contact-from-wrapper {
	width: 100%;
	margin: 0 auto;
	max-width: 1271px;
	padding: 95px;
	background-color: white;
	border-radius: 30px;
	box-shadow: 0px 24px 24px 0 rgba(0, 0, 0, 0.1);
}

.contact-from-sec .contact-from-wrapper h4 {
	text-align: center;
	font-size: 54px;
	line-height: 68px;
	font-weight: 300;
	margin-bottom: 56px;
	text-transform: uppercase;
	color: #464444;
}

.contact-from-sec .contact-from-wrapper h4 span {
	font-weight: 800;
}

.contact-from-sec .contact-from-wrapper .from-item {
	margin-bottom: 36px;
}

.contact-from-sec .contact-from-wrapper .from-item:nth-child(4),

.contact-from-sec .contact-from-wrapper .from-item:nth-child(5) {
	width: calc(50% - 8px);
	display: inline-block;
}

.contact-from-sec .contact-from-wrapper .from-item:nth-child(5) {
	margin-left: 16px;
}

.contact-from-sec .contact-from-wrapper .from-item label {
	font-size: 19px;
	line-height: 26px;
	font-weight: 500;
	width: 100%;
	margin-bottom: 8px;
}

.contact-from-sec .contact-from-wrapper .from-item input {
	width: 100%;
	height: 76px;
	border-radius: 50px;
	border: 0px;
	outline: none;
	background-color: #F9F8F8;
	padding: 20px;
	border: 1px solid #D9D9D9;
}

.contact-from-sec .contact-from-wrapper .from-item select {
	width: 100%;
	height: 76px;
	border-radius: 50px;
	border: 0px;
	outline: none;
	background-color: #F9F8F8;
	padding: 20px;
	border: 1px solid #D9D9D9;
}

.contact-from-sec .contact-from-wrapper .from-item textarea {
	width: 100%;
	height: auto;
	border-radius: 10px;
	border: 0px;
	outline: none;
	background-color: #F9F8F8;
	padding: 20px;
	border: 1px solid #D9D9D9;
}

.contact-from-sec .contact-from-wrapper button.main-btn {
	border: 1px solid black;
}

.fromBtn_box {
	text-align: right;
}



/* ============ /contact from css ============ */

/* ============ footer css ============ */



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

footer .footer-logo img {
	width: 317px;
	height: 77px;
	object-fit: contain;
}

footer .footer-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 75px;
}

footer .footer-wrapper .footer-links ul li {
	display: inline-block;
	margin-right: 10px;
}

footer .footer-wrapper .footer-links ul li a {
	padding: 10px 25px;
	border: 1px solid #ffffff00;
	border-radius: 50px;
	font-size: 17px;
	font-weight: 400;
	color: #312B2B;
}

footer .footer-wrapper .footer-links ul li a:hover {
	border: 1px solid #0c55b4;
	color: #0c55b4;
}

footer .footer-wrapper .copy-right p {
	font-size: 17px;
	line-height: 100%;
	color: #312B2B;
}



/* ============ /footer css ============ */

/* ============ common sub banner css ============ */



.csub-banner-sec {
    /* background-image: url(../images/inner-page-banner.png); */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top 80px;
	padding: 454px 0 140px 0;
	position: relative;
}

.csub-banner-sec div.banner-img::before {
	content: " ";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	background-image: linear-gradient(#FFFFFF, #ffffff, #ffffffb5, #ccccccdb, #f6f6f6cc, #f6f6f6, #f6f6f6);
}

.csub-banner-sec div.banner-img img.csub-banner-sec-banner-img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	filter: grayscale(100%);
}



/* .csub-banner-sec.about-sub-banner-sec {



    background-size: cover;



} */



.csub-banner-sec::before {
	content: " ";
	width: 1px;
	height: 200px;
	background-color: #554E4E;
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	display: none;
}

.csub-banner-sec .csub-banner-wrapper {
	position: relative;
}

.csub-banner-sec .csub-banner-wrapper h6 {
	color: #464444;
	font-size: 34px;
	font-weight: 700;
	line-height: 54px;
	margin-bottom: 25px;
}

.csub-banner-sec .csub-banner-wrapper h1 {
	position: relative;
	color: #464444;
	font-size: 146px;
	font-weight: 800;
	line-height: 157px;
	text-transform: uppercase;
}

.csub-banner-sec .csub-banner-wrapper .csub-banner-text {
	padding-left: 385px;
}

.csub-banner-sec.about-sub-banner-sec .csub-banner-wrapper .csub-banner-text {
	margin-top: -115px;
}

.csub-banner-sec .csub-banner-wrapper .csub-banner-text p {
	color: #272727;
	font-size: 18px;
	font-weight: 400;
	line-height: 41px;
}

.csub-banner-sec .csub-banner-wrapper .csub-banner-text p + p {
	margin-top: 20px;
}



/* ============ /common sub banner css ============ */

/* ============ about how it started css ============ */



.how-it-started-sec {
	padding: 100px 0 86px 0;
	position: relative;
}

.how-it-started-sec .how-it-started-wrapper {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

.how-it-started-sec .how-it-started-wrapper h2 {
	font-size: 128px;
	line-height: 117px;
	color: #464444;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 57px;
}

.how-it-started-sec .how-it-started-wrapper p {
	font-size: 18px;
	line-height: 37px;
	color: #3B3737;
	font-weight: 400;
}

.how-it-started-sec .how-it-started-wrapper p + p {
	margin-top: 20px;
}



/* ============ /about how it started css ============ */

/* ============ Sounds like css ============ */



.sounds-like-sec {
	position: relative;
	padding: 0px 0 100px 0;
	z-index: 1;
}

.sounds-like-sec::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	bottom: -14px;
	left: 0;
	background: linear-gradient(180deg, rgba(246, 246, 246, 0.5) -3%, rgba(255, 255, 255, 0.9) 34%);
	z-index: 0;
}

.sounds-like-sec .container {
	z-index: 1;
	position: relative;
}

.sounds-like-sec img.sounds-like-sec-bg {
	position: absolute;
	left: 0;
	top: 198px;
	z-index: -1;
	bottom: 0;
	height: 85%;
	width: 100%;
}

.sounds-like-sec .sounds-like-item {
	background-color: white;
	border-radius: 30px;
	overflow: hidden;
}

.sounds-like-sec .sounds-like-item .sounds-like-text-img {
	display: flex;
	gap: 18px;
	align-items: center;
}

.sounds-like-sec .sounds-like-item .sounds-like-text-img .image-1 {
	width: 52%;
	border-radius: 0 0 40px 0;
	overflow: hidden;
}

.sounds-like-sec .sounds-like-item .sounds-like-text-img .sounds-like-text {
	width: 47%;
}

.sounds-like-sec .sounds-like-item .sounds-like-text-img .sounds-like-text img {
	width: 90px;
	height: 90px;
	object-fit: contain;
	margin-bottom: 20px;
	margin-top: 10px;
}

.sounds-like-sec .sounds-like-item .sounds-like-text-img .sounds-like-text h3 {
	font-size: 84px;
	line-height: 95px;
	color: #093B7B;
	font-weight: 800;
}

.sounds-like-sec .sounds-like-item .sounds-like-text-img .sounds-like-text h3 span {
	font-size: 70px;
	line-height: 64px;
	color: #888080;
	font-weight: 200;
	display: block;
}

.sounds-like-sec .sounds-like-item p {
	padding: 40px 56px;
	color: #3F3838;
	font-size: 17px;
	line-height: 32px;
	font-weight: 400;
}

.sounds-like-sec .sounds-like-wrapper .sounds-like-heading {
	padding-top: 159px;
	text-align: center;
}

.sounds-like-sec .sounds-like-wrapper .sounds-like-heading h2 {
	font-size: 128px;
	line-height: 133px;
	color: #464444;
	font-weight: 800;
	margin-bottom: 30px;
	text-transform: uppercase;
}

.sounds-like-sec .sounds-like-wrapper .sounds-like-heading p {
	font-size: 40px;
	line-height: 70px;
	color: #040404;
	font-weight: 300;
}



/* ============ /Sounds like css ============ */

/* ============ our teams sec css ============ */



.our-teams-sec .our-teams-slider-item {
	position: relative;
}

.our-teams-sec .our-teams-slider-item img {
	height: 580px;
	object-fit: cover;
	border-radius: 30px;
}

.our-teams-sec .our-teams-slider-item .our-teams-slider-item-text {
	padding: 26px;
	background-color: white;
	border-radius: 20px;
	position: absolute;
	bottom: 20px;
	width: 90%;
	left: 20px;
}

.our-teams-sec .our-teams-slider-item .our-teams-slider-item-text h6 {
	color: #000000;
	font-size: 24px;
	font-weight: 700;
}

.our-teams-sec .our-teams-slider-item .our-teams-slider-item-text p {
	color: #000000;
	font-size: 17px;
	font-weight: 400;
}

.flotting-icon img {
	position: fixed;
	right: 0;
	bottom: 90px;
	width: 96px;
	height: 110px;
	padding: 33px 20px 33px 20px;
	background-color: #0B3C7B;
	border-radius: 20px 0 0 20px;
	border: 0;
	z-index: 1000;
	object-fit: contain;
}



/* ============ /our teams sec css ============ */

/* ============ our service page css ============ */



.sp-service-sec {
	padding: 72px 0 111px 0;
}

.sp-service-sec .heading-div {
	margin-bottom: 69px;
}

.sp-service-sec .sp-service-item.left-item {
	margin-left: 121px;
}

.sp-service-sec .sp-service-item.right-item {
	margin-right: 121px;
}

.sp-service-sec .sp-service-item {
	box-shadow: 4px 4px 10px #00000052;
	border-radius: 30px;
	margin-bottom: 34px;
}

.sp-service-sec .sp-service-item .sp-service-item-content {
	padding: 43px 40px;
	background-color: white;
	border-radius: 0 0 30px 30px;
	transition: 1s;
}

.sp-service-sec .sp-service-item .sp-service-item-content h3 {
	color: #0C55B4;
	font-size: 45px;
	font-weight: 700;
	line-height: 54px;
	margin-bottom: 22px;
}

.sp-service-sec .sp-service-item .sp-service-item-content p {
	color: #3F3838;
	font-size: 18px;
	font-weight: 400;
	line-height: 36px;
	margin-bottom: 31px;
}

.sp-service-sec .sp-service-item .sp-service-item-content a.main-btn {
	border: 1px solid #5C97E4;
}

.sp-service-sec .sp-service-item:hover .sp-service-item-content {
	background-color: #0C55B4;
}

.sp-service-sec .sp-service-item:hover .sp-service-item-content h3 {
	color: #ffffff;
}

.sp-service-sec .sp-service-item:hover .sp-service-item-content p {
	color: #ffffff;
}

.heading-div h6 {
	color: #272727;
	font-size: 34px;
	line-height: 68px;
	font-weight: 300;
}

.sp-service-item img.img-1 {
	border-radius: 30px 30px 0 0;
}

.client-love-sec.testimonial-sec .heading-div {
	margin-bottom: 99px;
}

.client-love-sec.testimonial-sec {
	padding: 111px 0 0 0;
}

.worked-with-sec {
	padding: 232px 0 135px 0;
	margin-top: -140px;
	background-size: cover;
	position: relative;
}

.worked-with-sec::before {
	content: " ";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background-image: linear-gradient(#ffffffb5, #ffffff87, #ffffff57, #ccccccdb, #f6f6f6cc, #f6f6f6, #f6f6f6);
}

.worked-with-sec .worked-with-sec-bg {
	position: absolute;
	left: 0;
	top: 0px;
	z-index: -2;
	bottom: 0;
	height: 85%;
	width: 100%;
	filter: grayscale(100%);
}

.worked-with-sec .heading-div h2 span {
	font-weight: 800;
}

.worked-with-sec .heading-div {
	margin-bottom: 40px;
}

.worked-with-item img {
	width: 100%;
	height: 256px;
	object-fit: contain;
	padding: 48px;
	background-color: white;
	margin-bottom: 39px;
	border-radius: 10px;
	box-shadow: 0 0 24px #00000029;
	filter: grayscale(100%);
}

.lets-discuss-sec .heading-div h2 {
	margin-bottom: 38px;
}

.lets-discuss-sec .heading-div h2 span {
	text-transform: capitalize;
}

.worked-with-sec .heading-div h5 {
	font-size: 50px;
	line-height: 75px;
	text-align: center;
	color: #464444;
	font-weight: 400;
	text-transform: uppercase;
}



/* ============ /our service page css ============ */

/* ============ Mobile App Development Company page css ============ */



.we-provide-sec {
	padding: 54px 0;
}

.we-provide-sec .heading-div {
	margin-bottom: 66px;
}

.we-provide-sec div.we-provide-sec-item {
	background-color: white;
	padding: 62px 38px 80px 38px;
	border-radius: 20px;
	margin-bottom: 25px;
	height: 600px;
}

.we-provide-sec div.we-provide-sec-item img {
	width: 105px;
	height: 105px;
	margin-bottom: 44px;
	background-color: #0c55b4;
	border-radius: 50%;
	object-fit: contain;
	padding: 17px;
}

.we-provide-sec div.we-provide-sec-item h6 {
	color: #0C55B4;
	font-size: 26px;
	line-height: 54px;
	font-weight: 700;
}

.we-provide-sec div.we-provide-sec-item h3 {
	color: #0C55B4;
	font-size: 45px;
	line-height: 54px;
	font-weight: 700;
	margin-bottom: 58px;
}

.we-provide-sec div.we-provide-sec-item p {
	color: #3F3838;
	font-size: 17px;
	line-height: 32px;
	font-weight: 400;
}

.why-choose-sec {
	padding: 122px 0 79px 0;
}

.why-choose-sec .why-choose-wrapper {
	position: relative;
}

.why-choose-sec .why-choose-wrapper .heading-div h2.why-choose-heading-h2 {
	position: absolute;
	right: 0;
	top: 100px;
}

.why-choose-sec .why-choose-wrapper .heading-div h6.why-choose-heading-h6 {
	position: absolute;
	left: 0;
	bottom: 195px;
	width: 100%;
	max-width: 838px;
}

.why-choose-sec .why-choose-wrapper .collum-1 {
	margin-top: 0px;
}

.why-choose-sec .why-choose-wrapper .collum-2 {
	margin-top: 118px;
}

.why-choose-sec .why-choose-wrapper .collum-3 {
	margin-top: 454px;
}

.why-choose-sec .why-choose-wrapper .collum-4 {
	margin-top: 600px;
}

.why-choose-sec .why-choose-wrapper .why-choose-content-item {
	background-color: #0C55B4;
	padding: 97px 38px 38px 38px;
	border-radius: 30px;
	height: 461px;
	text-align: center;
	margin-bottom: 21px;
}

.why-choose-sec .why-choose-wrapper .why-choose-content-item img {
	width: 110px;
	height: 110px;
	margin-bottom: 9px;
	background-color: white;
	padding: 17px;
	border-radius: 50%;
}

.why-choose-sec .why-choose-wrapper .why-choose-content-item h3 {
	font-weight: 700;
	color: white;
	line-height: 54px;
	font-size: 26px;
	margin-bottom: 6px;
}

.why-choose-sec .why-choose-wrapper .why-choose-content-item p {
	font-weight: 400;
	color: white;
	line-height: 32px;
	font-size: 17px;
}

.technologies-sec {
	padding: 0 0 90px 0;
}

.technologies-wrapper {
	margin-top: 78px;
}

.technologies-sec .technologies-wrapper .technologies-list h6 {
	font-size: 42px;
	line-height: 54px;
	font-weight: 400;
	color: #7C7373;
	position: relative;
	padding: 0 10px 26px 50px;
	margin-bottom: 30px;
	transition: .5s;
	cursor: pointer;
}

.technologies-sec .technologies-wrapper .technologies-list h6::before {
	content: " ";
	width: 7px;
	height: 58px;
	background-color: #7C7373;
	position: absolute;
	left: 0;
	top: 0;
	transition: .5s;
}

.technologies-sec .technologies-wrapper .technologies-list h6:hover {
	font-weight: 700;
	color: #0C55B4;
}

.technologies-sec .technologies-wrapper .technologies-list h6:hover::before {
	width: 16px;
	background-color: #0C55B4;
}

.technologies-sec .technologies-wrapper .technologies-list h6.active {
	font-weight: 700;
	color: #0C55B4;
}

.technologies-sec .technologies-wrapper .technologies-list h6.active::before {
	width: 16px;
	background-color: #0C55B4;
}

.tabcontent {
	display: none;
}

.technologies-sec .technologies-wrapper .technologies-logo .technologies-logo-row {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 26px;
	gap: 21px;
	flex-wrap: wrap;
}

.technologies-sec .technologies-wrapper .technologies-logo .technologies-logo-row img {
	height: 220px;
	width: 250px;
	background-color: white;
	padding: 35px 50px;
	object-fit: contain;
	border-radius: 30px;
	box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.067);
}

.good-mobileapp-sec {
	padding: 90px 0 88px 0;
}

.good-mobileapp-sec .heading-div {
	margin-bottom: 74px;
}

.good-mobileapp-sec .heading-div h2 {
	font-size: 82px;
	line-height: 117px;
	color: #464444;
}

.good-mobileapp-sec .good-mobileapp-wrapper .good-mobileapp-items {
	background-color: #0C55B4;
	border-radius: 90px;
	display: flex;
	gap: 36px;
	align-items: center;
	margin-bottom: 48px;
}

.good-mobileapp-sec .good-mobileapp-wrapper .good-mobileapp-items .good-mobileapp-items-img {
	padding: 18px 35px;
	background-color: white;
	border-radius: 90px;
}

.good-mobileapp-sec .good-mobileapp-wrapper .good-mobileapp-items img {
	width: 76px;
	height: 76px;
}

.good-mobileapp-sec .good-mobileapp-wrapper .good-mobileapp-items p {
	font-size: 34px;
	line-height: 110px;
	color: white;
	font-weight: 600;
}

.app-development-sec {
	padding: 88px 0 430px 0;
}

.app-development-sec .heading-div {
	margin-bottom: 113px;
}

.app-development-sec .app-development-wrapper .app-development-row-1 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.app-development-sec .app-development-wrapper .app-development-row-1 .app-development-row-item {
	width: 13.5%;
	min-width: 377px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	padding: 0 25px;
}

.app-development-sec .app-development-wrapper .app-development-row-1 .app-development-row-item:nth-child(odd) {
	flex-direction: column-reverse;
}

.app-development-sec .app-development-wrapper .app-development-row-1 .app-development-row-item:nth-child(even) {
	flex-direction: column;
	transform: translate(0px, 350px);
}

.app-development-sec .app-development-wrapper .app-development-row-1 .app-development-row-item .appDev_cont_img {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.app-development-sec .app-development-wrapper .app-development-row-1 .app-development-row-item:nth-child(odd) .appDev_cont_img svg.small-round {
	margin-bottom: 278px;
}

.app-development-sec .app-development-wrapper .app-development-row-1 .app-development-row-item:nth-child(even) .appDev_cont_img {
	flex-direction: column-reverse;
}

.app-development-sec .app-development-wrapper .app-development-row-1 .app-development-row-item:nth-child(even) .appDev_cont_img svg.small-round {
	margin-top: 278px;
}

.app-development-sec .app-development-wrapper .app-development-row-1 .app-development-row-item .appDev_cont_img svg {
	stroke: #47C3FF !important;
}

.app-development-sec .app-development-wrapper .app-development-row-1 .app-development-row-item:nth-child(even)::before {
	top: 160px;
}

.app-development-row-item + .app-development-row-item {
	margin-left: -184px;
}

.app-development-sec .app-development-wrapper .app-development-row-1 .app-development-row-item::before {
	content: " ";
	width: 1px;
	height: 278px;
	background-image: url('../images/dotted-line.png');
	background-size: contain;
	position: absolute;
	bottom: 160px;
	left: 50%;
	transform: translateX(-50%);
}

.app-development-sec .app-development-row-item h6 {
	font-size: 35px;
	line-height: 44px;
	font-weight: 700;
	color: #464444;
	height: 88px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.app-development-sec .app-development-row-item p {
	font-size: 20px;
	line-height: 37px;
	font-weight: 300;
	color: #464444;
	height: 111px;
	margin: 10px 0;
}

.app-development-sec .app-development-row-1 .app-development-row-item svg.small-round {
	height: 44px;
	object-fit: contain;
	width: 44px;
	margin: 0 auto;
}

.app-development-sec .app-development-row-1 .app-development-row-item img.big-round {
	width: 160px;
	height: 160px;
	object-fit: contain;
	margin: 0 auto;
}



/* ============ /Mobile App Development Company page css ============ */

/* ============ AI/ML Development css ============ */



.professional-sec {
	padding: 55px 0 77px 0;
}

.professional-sec .heading-div h2 {
	margin-bottom: 30px;
}

.professional-sec .heading-div p {
	width: 100%;
	max-width: 1468px;
	margin: 0 auto;
}

.why-businesses-sec {
	padding: 77px 0;
}

.why-businesses-sec .heading-div h2 span {
	line-height: 117px;
}

.why-businesses-wrapper .why-businesses-img {
	position: relative;
	width: 100%;
	max-width: 1370px;
	height: 940px;
	border-radius: 24px 0 0 0;
}

.why-businesses-wrapper .why-businesses-img::before {
	content: " ";
	background-image: url('../images/why-businesses-img-bg.png');
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	border-radius: 24px 0 0 0;
}

.why-businesses-wrapper .why-businesses-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 24px 0 0 0;
}

.why-businesses-img .heading-div {
	position: absolute;
	bottom: 0;
	z-index: 1;
	right: 0px;
	text-align: center !important;
}
.why-businesses-img .heading-div h2 {
	text-align: center !important;
}

.why-businesses-content {
	margin-top: 88px;
}

.why-businesses-content .why-businesses-item {
	display: flex;
	align-items: center;
	margin-bottom: 37px;
	gap: 34px;
}

.why-businesses-content .why-businesses-item p {
	font-size: 32px;
	line-height: 43px;
	font-weight: 500;
	color: #272727;
}

.why-businesses-content .why-businesses-item .icon {
	width: 90px;
	height: 90px;
	background-color: #0C55B4;
	padding: 13px;
	border-radius: 50%;
}

.why-businesses-content .why-businesses-item .icon img {
	filter: brightness(0) invert(1);
}

.how-we-design-sec {
    /* padding: 115px 0 93px 0; */
	position: relative;
	background-image: url('../images/how-we-design-bg.png');
	background-size: cover;
	background-position: center center;
}

.how-we-design-sec::before {
	content: " ";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	background-image: linear-gradient(#f6f6f6, #f6f6f6, #f6f6f6e6, #f6f6f6, #f6f6f6);
}

.how-we-design-sec .how-we-design-wrapper {
	position: relative;
	z-index: 11;
	padding: 115px 0 93px 0;
}

.how-we-design-sec .how-we-design-wrapper .heading-div {
	margin-bottom: 80px;
}

.how-we-design-sec .how-we-design-wrapper img.how-we-design-img {
	width: 85%;
}

.tools-sec {
	padding: 150px 0 199px 0;
}

.tools-sec .tools-wrapper {
	margin-bottom: 51px;
}

.hiring-sec {
	padding: 101px 0;
}

.hiring-sec .hiring-wrapper {
	margin-top: 135px;
}

.hiring-sec .hiring-wrapper-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.hiring-sec .hiring-wrapper-content .hiring-wrapper-item {
	width: 30%;
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 0 25px;
	text-align: center;
	position: relative;
}

.hiring-sec .hiring-wrapper-content .hiring-wrapper-item:nth-child(odd) {
	flex-direction: column-reverse;
}

.hiring-sec .hiring-wrapper-content .hiring-wrapper-item:nth-child(even) {
	flex-direction: column;
	transform: translate(0px, 100px);
}

.hiring-sec .hiring-wrapper-content .hiring-wrapper-item:nth-child(even)::before {
	content: " ";
	width: 277px;
	height: 377px;
	background-image: url(../images/hiring-after-2.png);
	background-size: 100%;
	position: absolute;
	top: 106px;
	left: -147px;
	background-repeat: no-repeat;
}

.hiring-sec .hiring-wrapper-content .hiring-wrapper-item:nth-child(even)::after {
	content: " ";
	width: 304px;
	height: 377px;
	background-image: url(../images/hiring-after-1.png);
	background-size: 100%;
	position: absolute;
	top: 150px;
	right: -159px;
	background-repeat: no-repeat;
}

.hiring-sec .hiring-wrapper-content .hiring-wrapper-item .hiring-wrapper-item-text {
	min-height: 129px;
}

.hiring-sec .hiring-wrapper-content .hiring-wrapper-item .hiring-wrapper-item-text h4 {
	font-size: 46px;
	line-height: 54px;
	font-weight: 700;
	color: #464444;
}

.hiring-sec .hiring-wrapper-content .hiring-wrapper-item .hiring-wrapper-item-text p {
	font-size: 23px;
	line-height: 37px;
	font-weight: 300;
	color: #464444;
	margin: 19px 0;
}

.hiring-sec .hiring-wrapper-content .hiring-wrapper-item .hiring-wrapper-item-img {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.hiring-sec .hiring-wrapper-content .hiring-wrapper-item:nth-child(odd) .hiring-wrapper-item-img {
	flex-direction: column-reverse;
}

.hiring-sec .hiring-wrapper-content .hiring-wrapper-item .hiring-wrapper-item-img img.icon-1 {
	width: 250px;
	height: 250px;
	object-fit: contain;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hiring-sec .hiring-wrapper-content .hiring-wrapper-item .hiring-wrapper-item-img svg.icon-2 {
	width: 44px;
	height: 44px;
	object-fit: contain;
	margin: 0 auto;
}

.hiring-sec .hiring-wrapper-content .hiring-wrapper-item:nth-child(even) .hiring-wrapper-item-img svg.icon-2 {
	margin-top: 262px;
}

.hiring-sec .hiring-wrapper-content .hiring-wrapper-item:nth-child(odd) .hiring-wrapper-item-img svg.icon-2 {
	margin-bottom: 262px;
}

.hiring-sec .hiring-wrapper-content .hiring-wrapper-item .hiring-wrapper-item-img::before {
	content: " ";
	width: 1px;
	height: 262px;
	background-image: url(../images/dotted-line.png);
	background-size: contain;
	position: absolute;
	top: 44px;
	left: 50%;
	transform: translateX(-50%);
}

.hiring-sec .hiring-wrapper-content .hiring-wrapper-item:nth-child(even) .hiring-wrapper-item-img::before {
	width: 2px;
	top: 250px;
}

.ai-ml_project_section .heading-div h2,
.ai-ml_project_section .heading-div h2 span {
	color: #272727;
}
.ai-ml_project_section .heading-div h2,
.why-businesses-wrapper .heading-div h2 {
	text-align: center !important;
	margin-top: -130px;
	position: relative;
    z-index: 1;
}

.aiml_feture_wrap {
	width: 100%;
	display: inline-block;
	margin-top: 82px;
}

.aiml_feture_wrap .row {
	row-gap: 74px;
    /* margin: 0 -51px; */
	;
}

.aiml_feture_wrap .row > div {
    /* padding: 0 51px; */
	;
}

.aiml_feture_col {
	width: 100%;
	display: inline-flex;
	align-items: flex-start;
	box-shadow: 0px 13px 34px rgba(0, 0, 0, 0.05);
	border-radius: 10px;
	padding: 53px 40px 20px;
	min-height: 338px;
	background-color: #ffffff;
}

.aiml_feture_icon {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0C55B4;
}

.aiml_feture_cont {
	width: calc(100% - 90px);
	padding-left: 30px;
}

.aiml_feture_cont h4 {
	font-size: 36px;
	line-height: 46px;
	font-weight: 800;
	color: #040404;
	margin-bottom: 22px;
}

.aiml_feture_cont p {
	font-size: 24px;
	line-height: 45px;
	font-weight: 400;
	color: #272727;
}

.aiml_service_section {
	width: 100%;
	display: inline-block;
	padding: 240px 0 150px;
}

.aiml_serv_hd {
	width: 100%;
	display: inline-block;
	margin-bottom: 74px;
}

.aiml_serv_hd h2 {
	font-size: 108px;
	line-height: 150px;
	font-weight: 800;
	color: #464444;
	text-transform: uppercase;
	text-align: right;
}

.aiml_serv_hd h2 span {
	font-size: 120px;
	font-weight: 400;
	display: block;
}

.aiml_serv_grid_wrapper {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
}

.aiml_serv_gridItm:nth-child(2n) {
	transform: translateY(118px);
}

.aiml_serv_grid_cont {
	width: 100%;
	display: inline-block;
	padding: 85px 35px 20px;
	border-radius: 30px;
	background-color: #0C55B4;
	text-align: center;
	min-height: 461px;
	color: #ffffff;
}

.aiml_serv_icon {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: #fff;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.aiml_serv_para {
	width: 100%;
	display: inline-block;
	margin-top: 9px;
}

.aiml_serv_para h4 {
	font-size: 26px;
	line-height: 32px;
	font-weight: 700;
	margin-bottom: 16px;
}

.aiml_serv_para p {
	font-size: 17px;
	font-weight: 400;
	line-height: 32px;
}

.aiml_serv_gridItm:nth-child(2) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(4) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(5) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(7) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(10) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(12) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(13) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(15) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(18) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(20) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(21) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(23) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(26) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(28) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(29) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(31) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(34) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(36) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(37) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(39) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(42) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(44) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(45) .aiml_serv_grid_cont,



.aiml_serv_gridItm:nth-child(47) .aiml_serv_grid_cont {
	background-color: #D9EAFF;
	color: #0C55B4;
}

.aiml_serv_gridItm:nth-child(2) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(4) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(5) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(7) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(10) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(12) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(13) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(15) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(18) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(20) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(21) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(23) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(26) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(28) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(29) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(31) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(34) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(36) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(37) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(39) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(42) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(44) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(45) .aiml_serv_grid_cont p,



.aiml_serv_gridItm:nth-child(47) .aiml_serv_grid_cont p {
	color: #475A71;
}

.aiml_serv_gridItm:nth-child(2) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(4) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(5) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(7) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(10) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(12) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(13) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(15) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(18) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(20) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(21) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(23) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(26) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(28) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(29) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(31) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(34) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(36) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(37) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(39) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(42) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(44) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(45) .aiml_serv_grid_cont .aiml_serv_icon,



.aiml_serv_gridItm:nth-child(47) .aiml_serv_grid_cont .aiml_serv_icon {
	background: #0C55B4;
}

.aiml_serv_gridItm:nth-child(2) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(4) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(5) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(7) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(10) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(12) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(13) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(15) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(18) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(20) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(21) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(23) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(26) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(28) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(29) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(31) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(34) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(36) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(37) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(39) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(42) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(44) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(45) .aiml_serv_grid_cont .aiml_serv_icon img,



.aiml_serv_gridItm:nth-child(47) .aiml_serv_grid_cont .aiml_serv_icon img {
	filter: brightness(0) invert(1);
}

.process_section {
	width: 100%;
	display: inline-block;
	padding: 120px 0;
}

.process_hd {
	width: 100%;
	display: inline-block;
	text-align: center;
	margin-bottom: 58px;
}

.process_hd h2 {
	font-size: 128px;
	line-height: 140px;
	font-weight: 800;
	color: #272727;
	text-transform: uppercase;
}

.process_hd h2 span {
	display: block;
	font-size: 50px;
	line-height: normal;
	font-weight: 400;
}

.process_wrapper_main {
	counter-reset: section;
}

.process_wrapper_main .process_wrap_bx {
	padding: 0 65px;
}

.process_wrapper_main .row {
	margin: 0 -70px;
}

.process_wrapper_main .process_wrap_bx + .process_wrap_bx {
	margin-top: 69px;
}

.process_wrapper_main .process_wrap_bx:nth-child(odd) .row {
	flex-direction: row-reverse;
}

.process_wrapper_main .row >div {
	padding: 0 70px;
	position: relative;
}

.process_wrapper_main .process_wrap_bx {
	position: relative;
}

.process_wrapper_main .process_wrap_bx:not(:last-child):before {
	position: absolute;
	content: '';
	width: 50%;
	height: calc(100% + 69px);
	border-left: 2px dashed #000000;
	left: 50%;
	top: 30px;
}

.process_wrapper_main .process_wrap_bx .row {
	position: relative;
}

.process_wrapper_main .process_wrap_bx .row:before {
	counter-increment: section;
	content: counter(section);
	background-color: #0C55B4;
	width: 72px;
	height: 72px;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	box-shadow: 0 9px 9px rgba(0, 0, 0, .05);
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: 3;
	top: 30px;
	font-size: 25px;
	font-weight: 700;
	color: #fff;
}

.process_wrapper_main .process_wrap_bx .row:after {
	position: absolute;
	content: '';
	border: 1px solid #0C55B4;
	background-color: #ffffff;
	width: 93px;
	height: 93px;
	border-radius: 50%;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
}

.process_cont {
	width: 100%;
	display: inline-block;
	padding: 69px 37px 72px 65px;
	background: #ffffff;
	border-radius: 50px 0 50px 50px;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.12);
	text-align: left;
	margin-top: 70px;
}

.process_wrapper_main .process_wrap_bx:nth-child(even) .process_cont {
	border-radius: 0 50px 50px 50px;
}

.process_cont h4 {
	font-size: 36px;
	line-height: 46px;
	font-weight: 800;
	color: #040404;
	margin-bottom: 16px;
}

.process_cont p {
	font-size: 24px;
	line-height: 45px;
	font-weight: 400;
	color: #040404;
}

.faq_section {
	width: 100%;
	display: inline-block;
	padding: 0px 0px 103px;
	position: relative;
	z-index: 1;
	counter-reset: section;
}

.faq_section h2 {
	font-weight: 800;
	font-size: 128px;
	line-height: 140px;
	text-align: center;
	color: #272727;
	margin-bottom: 94px;
	text-transform: uppercase;
}

.accordion_wrap {
	width: 100%;
	max-width: 1596px;
	margin-left: auto;
	margin-right: auto;
}

.accordion_box {
	width: 100%;
	background: #FFFFFF;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}

.accordion_box+.accordion_box {
	margin-top: 20px;
}

.accr_title {
	width: 100%;
	display: inline-block;
	padding: 30px 120px 30px 72px;
	background: #FFFFFF;
	position: relative;
	cursor: pointer;
}

.accr_title .accr_icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 60px;
}

.accr_title h4 {
	font-weight: 800;
	font-size: 36px;
	line-height: 46px;
	color: #040404;
}

.accr_content {
	width: 100%;
	display: inline-block;
	border-top: 0px;
	background: #FFFFFF;
	padding: 0px 47px 36px 79px;
}

.accr_content p {
	font-weight: 400;
	font-size: 24px;
	line-height: 45px;
	color: #272727;
}

.accordion_box:not(.active) .accr_content {
	display: none;
}



/* ============ /AI/ML Development css ============ */

/* ============ contact us css ============ */



.contact-us-sec {
	padding: 136px 0 0 0;
	display: flex;
	align-items: start;
	justify-content: center;
}

.contact-us_continer {
	width: 100%;
	max-width: 1100px;
	position: relative;
}

.contact-us-sec img.contact-sec-img {
	width: 100%;
	max-width: 676px;
	display: block;
	margin-bottom: -94px;
	float: right;
	padding-right: 13%;
}

.contact-us-sec .contact-us-content {
	background-color: #0C55B4;
	padding: 56px;
	width: 350px;
	border-radius: 14px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 468px;
	position: absolute;
	z-index: 1;
	left: 12%;
	bottom: 30%;
	z-index: -1;
}

.contact-us-sec .contact-us-content svg {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	object-fit: contain;
	margin-bottom: 24px;
}

.contact-us-sec .contact-us-content h6 {
	font-size: 33px;
	line-height: 49px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 10px;
}

.contact-us-sec .contact-us-content p {
	font-size: 22px;
	line-height: 38px;
	font-weight: 500;
	color: #ffffff;
}

.map_area {
	width: 100%;
	height: 0;
	position: relative;
	padding-top: 35%;
	margin-bottom: 66px;
}

.map_area iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}



/* ============ /contact us css ============ */

/* portfolio */



.csub-banner-wrapper h1 > span {
	font-size: 34px;
	font-weight: 700;
	line-height: 54px;
	color: #464444;
	display: block;
}

.csub-banner-wrapper h1 > span ~ br {
	display: none;
}

.cmn_pf_section_wrap {
	padding-top: 72px;
}

.cmn_p__folio_section {
	width: 100%;
	display: inline-block;
	padding: 134px 0 210px;
}

.p__folio_sec_hdr {
	width: auto;
	display: inline-block;
	position: relative;
	z-index: 1;
	margin-bottom: 74px;
}

.p__folio_sec_hdr::before {
	position: absolute;
	content: '';
	width: calc(100% + 104px);
	height: 100%;
	left: -52px;
	top: -70px;
	background-color: #CCE2FF;
	z-index: -1;
}

.p__folio_sec_hdr h2 {
	font-size: 150px;
	line-height: 150px;
	font-weight: 800;
	color: #000000;
	text-transform: uppercase;
}

.p__folio_sec_hdr h2 > span {
	display: block;
	font-size: 100px;
	line-height: 90px;
	font-weight: 300;
}

.p__folio_img_wrapper {
	width: 100%;
	display: inline-block;
}

.p__folio_img_wrapper > .row {
	row-gap: 45px;
}

.p__folio_imgBx {
	width: 100%;
	height: 585px;
	position: relative;
	margin: 0;
}

.p__folio_imgBx img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.p__folio_imgBx figcaption {
	position: absolute;
	width: 90%;
	left: 0;
	bottom: 0px;
	height: 151px;
}

.p__folio_imgBx figcaption > a {
	display: flex;
	align-items: center;
	height: 100%;
	background-color: #EAF3FF;
	padding: 35px 37% 40px 24px;
	font-size: 34px;
	line-height: 38px;
	font-weight: 500;
	text-transform: uppercase;
	color: #272727;
	position: relative;
}

.p__folio_imgBx figcaption > a .button-arrow {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: #0C55B4;
	padding: 22px;
	display: inline-flex;
	position: absolute;
	right: 48px;
	top: 50%;
	transform: translateY(-50%);
	align-items: center;
	justify-content: center;
}

.p__folio_imgBx figcaption > a .button-arrow svg {
	justify-content: center;
	align-items: center;
	transition: 0.5s;
	fill: #FFFFFF;
}

.p__folio_imgBx figcaption > a:hover .button-arrow svg {
	transform: rotate(45deg);
}

.cmn_p__folio_section:nth-child(odd) .p__folio_sec_hdr {
	float: right;
	display: inline-block;
	text-align: right;
}

.cmn_p__folio_section:nth-child(even) .p__folio_sec_hdr {
	float: left;
	display: inline-block;
	text-align: left;
}

.cmn_p__folio_section:nth-child(even) .p__folio_sec_hdr::before,



.cmn_p__folio_section:nth-child(even) .p__folio_imgBx figcaption > a {
	background-color: #FFE8B7;
}

.cmn_p__folio_section:nth-child(odd) .p__folio_img_wrapper > .row {
	justify-content: flex-end;
}

.cmn_p__folio_section:last-child {
	padding-bottom: 100px;
}



/* portfolio */

/* blog */



.blog_main_section {
	padding: 230px 0 121px;
}

.blg_hdr_bx {
	width: 100%;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 97px;
}

.blg_hdr_bx > h2 {
	font-size: 120px;
	line-height: 150px;
	font-weight: 800;
	color: #000000;
	text-transform: uppercase;
}

.blg_hdr_bx > h2 > span {
	font-weight: 100;
}

.blg_hdr_srch_box {
	width: 45%;
	max-width: 675px;
	position: relative;
	margin-left: auto;
}

.blg_hdr_srch_box .searc_fild {
	width: 100%;
	display: inline-block;
	padding: 39px 108px 39px 60px;
	font-size: 20px;
	line-height: normal;
	font-weight: 400;
	color: #272525;
	border: 1px solid #D8D7D7;
	border-radius: 60px;
}

.blg_hdr_srch_box .search_btn {
	position: absolute;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: url(../images/search.svg) no-repeat center, #0C55B4;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	border: none;
	transition: 0.5s;
}

.blg_hdr_srch_box .search_btn:hover {
	background-color: rgba(12, 85, 180, 0.7);
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25);
}

.blog_card {
	display: block;
	margin-bottom: 65px;
}

.blog_crad_img {
	width: 100%;
	display: inline-block;
	position: relative;
	border-radius: 33px;
	overflow: hidden;
}

.blog_crad_img::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(7, 14, 44, 0.35) 20%, rgba(7, 14, 44, 1) 100% );
}

.blog_crad_img >img {
	width: 100%;
	height: 100%;
	aspect-ratio: 3/2;
}

.blg_hd {
	font-size: 28px;
	line-height: 35px;
	font-weight: 700;
	color: #fff;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	text-overflow: ellipsis;
	overflow: hidden;
	position: absolute;
	left: 34px;
	bottom: 58px;
	z-index: 1;
}

.blog_card_para {
	width: 100%;
	display: inline-block;
	margin-top: 27px;
	padding-right: 65px;
	position: relative;
}

.blog_card_para .blg_pst_dt {
	font-size: 23px;
	font-weight: 700;
	line-height: 38px;
	color: #0C55B4;
	margin-bottom: 16px;
	display: block;
}

.current_post .blg_pst_dt {
	font-size: 26px;
}

.blog_card_para p {
	font-size: 22px;
	line-height: 38px;
	font-weight: 500;
	color: #373131;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	text-overflow: ellipsis;
	overflow: hidden;
}

.blg_arrow_icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #0C55B4;
	padding: 15px;
	position: absolute;
	right: 0;
	bottom: 0;
}

.blg_arrow_icon svg {
	width: 25px;
	transform: rotate(0deg);
	transition: 0.5s;
	fill: #fff;
}

.current_post .blg_arrow_icon {
	width: 68px;
	height: 68px;
}

.current_post .blg_arrow_icon svg {
	width: 32px;
}

.blog_card:hover .blg_arrow_icon svg {
	transform: rotate(45deg);
}

.pagination {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.page-numbers {
	width: 272px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.page-numbers li a, .page-numbers li span,



.cmn_nxtprev_btn {
	width: 48px;
	height: 48px;
	border-radius: 4px;
	background: #ffffff;
	border: 1px solid #DFE3E8;
	font-size: 19px;
	line-height: 20px;
	font-weight: 700;
	color: #212B36;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.5s;
	cursor: pointer;
}

.page-numbers li a:hover {
	color: #0C55B4;
	border-color: #0C55B4;
}

.cmn_nxtprev_btn:hover {
	background-color: #0C55B4;
	border-color: #0C55B4;
}

.cmn_nxtprev_btn:disabled {
	background-color: #919EAB;
	border-color: #919EAB;
	cursor: not-allowed;
}

.prev-btn {
	background-image: url(../images/left-angle.svg);
	background-repeat: no-repeat;
	background-position: center;
}

.next-btn {
	background-image: url(../images/right-angle.svg);
	background-repeat: no-repeat;
	background-position: center;
}

.lt_nws_box {
	padding-left: 10px;
}

.lt_nws_box h3 {
	font-size: 54px;
	line-height: 62px;
	font-weight: 800;
	color: #000000;
	text-transform: uppercase;
	margin-bottom: 50px;
}

.lt_nws_box h3 > span {
	font-weight: 100;
}

.lt_nws_itm {
	width: 100%;
	display: inline-block;
}

.lt_nws_itm .lt_nws_itmCont {
	width: 100%;
	display: inline-flex;
	align-items: center;
}

.nws_img {
	width: 140px;
	height: 140px;
	border-radius: 20px;
	background-color: #CBE2FF;
	overflow: hidden;
}

.nws_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lt_nws_info {
	width: calc(100% - 140px);
	padding-left: 15px;
}

.lt_nws_info .posted_dt {
	display: inline-block;
	background-color: #FED784;
	padding: 2px 12px;
	border-radius: 30px;
	font-size: 20px;
	line-height: 38px;
	color: #000000;
	margin-bottom: 19px;
}

.posted_dt strong {
	font-weight: 600;
}

.lt_nws_info p {
	font-size: 20px;
	font-weight: 500;
	line-height: 37px;
	color: #000000;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	text-overflow: ellipsis;
	overflow: hidden;
}

.lt_nws_list {
	display: flex;
	flex-direction: column;
	row-gap: 80px;
}

.lt_nws_box + .lt_nws_box {
	margin-top: 110px;
}

.categori_listing {
	display: flex;
	flex-direction: column;
}

.categori_listing li + li {
	margin-top: 30px;
}

.categori_listing li a {
	display: inline-block;
	font-size: 23px;
	line-height: 30px;
	font-weight: 500;
	color: #373131;
}

.categori_listing li a:hover {
	color: #0C55B4;
}

.blg_dtils_img {
	width: 100%;
	height: auto;
	border-radius: 30px;
	overflow: hidden;
	margin-bottom: 80px;
}

.blg_dtils_img img {
	width: 100%;
	height: 100%;
	aspect-ratio: 3/2;
}

.blg_dtils_wrap h3 {
	font-size: 52px;
	line-height: 61px;
	font-weight: 700;
	color: #363333;
	margin-bottom: 36px;
}

.blg_dtils_wrap p {
	font-size: 16px;
	line-height: 30px;
	font-weight: 500;
	color: #665E5E;
}

.blg_dtils_wrap p + p {
	margin-top: 25px;
}

.blg_dtils_paraBx {
	margin-top: 50px;
}

.blg_dtils_paraBx h4 {
	font-size: 26px;
	line-height: 34px;
	font-weight: 600;
	margin-bottom: 18px;
	color: #0C55B4;
}

/* blog */



/* ============ digital marketing css ============ */

.services-we-Offer-sec {
	padding: 217px 0 150px 0;
}

.services-we-Offer-sec .services-we-Offer-wrapper {
	position: relative;
}

.services-we-Offer-sec .services-we-Offer-wrapper .heading-div {
	position: absolute;
	right: 0;
	top: 0;
	width: fit-content;
}

.services-we-Offer-sec .services-we-Offer-wrapper .right-row {
	padding-top: 347px;
}

.services-we-Offer-sec .services-we-Offer-wrapper .services-we-Offer-item {
	border-radius: 24px;
	box-shadow: 5px 5px 34px #0000000a;
	margin-bottom: 30px;
	padding: 150px 88px;
}

.services-we-Offer-sec .services-we-Offer-wrapper .services-we-Offer-item.white-bg {
	background-color: white;
}

.services-we-Offer-sec .services-we-Offer-wrapper .services-we-Offer-item.blue-bg {
	background-color: #0C55B4;
}

.services-we-Offer-sec .services-we-Offer-wrapper .services-we-Offer-item img {
	width: 190px;
	height: 190px;
	object-fit: contain;
	margin-bottom: 53px;
}

.services-we-Offer-sec .services-we-Offer-wrapper .services-we-Offer-item img {
	width: 190px;
	height: 190px;
	object-fit: contain;
	margin-bottom: 53px;
}

.services-we-Offer-sec .services-we-Offer-wrapper .services-we-Offer-item h4 {
	font-size: 36px;
	line-height: 46px;
	margin-bottom: 53px;
	font-weight: 800;
}

.services-we-Offer-sec .services-we-Offer-wrapper .services-we-Offer-item.white-bg h4 {
	color: #040404;
}

.services-we-Offer-sec .services-we-Offer-wrapper .services-we-Offer-item.blue-bg h4 {
	color: white;
}

.services-we-Offer-sec .services-we-Offer-wrapper .services-we-Offer-item p {
	font-size: 24px;
	line-height: 45px;
	font-weight: 400;
}

.services-we-Offer-sec .services-we-Offer-wrapper .services-we-Offer-item.white-bg p {
	color: #272727;
}

.services-we-Offer-sec .services-we-Offer-wrapper .services-we-Offer-item.blue-bg p {
	color: #B9D6FD;
}

.app-development-sec.dm-why-choose-sec .app-development-wrapper .app-development-row-1 .app-development-row-item {
	width: 23%;
	min-width: 23%;
	padding: 0;
}

.app-development-sec.dm-why-choose-sec .app-development-row-item + .app-development-row-item {
	margin-left: -70px;
}

.content-image-sec {
	padding: 150px 0 76px 0;
}

.content-image-sec .content-image-wrapper {
	margin-bottom: 148px;
}

.content-image-sec .content-image-wrapper .content-image-text .heading-div h2 {
	font-size: 86px;
	line-height: 110px;
	margin-bottom: 69px;
}

.content-image-sec .content-image-wrapper .content-image-text .heading-div h2 span {
	font-size: 50px;
}

.content-image-sec .content-image-wrapper .content-image-text .heading-div p {
	font-size: 24px;
	line-height: 45px;
	font-weight: 400;
	color: #272727;
}

.content-image-sec .content-image-wrapper .content-image-img {
	height: 756px;
}

.content-image-sec .content-image-wrapper .content-image-img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.work-together-sec {
	padding: 132px 0 450px;
	position: relative;
	margin-bottom: -450px;
	position: relative;
	z-index: 1;
}

.work-together-sec::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: linear-gradient(180deg, rgba(246, 246, 246, 1) -3%, rgba(255, 255, 255, 0.9) 34%);
}

.work-together-sec .container {
	position: relative;
	z-index: 1;
}

.work-together-sec .heading-div {
	margin-bottom: 161px;
}

.work-together-sec img.bg {
	position: absolute;
	left: 0;
	z-index: -1;
	top: 0;
	height: 100%;
	width: 100%;
	background-blend-mode: luminosity;
}

.sounds-like-text-img .image-1 {
	width: 100%;
	object-fit: cover;
	height: 330px;
}

.accordion_box span.accr_icon svg.minus {
	display: none;
}

.accordion_box.active span.accr_icon svg.minus {
	display: block;
}

.accordion_box.active span.accr_icon svg.plus {
	display: none;
}



/* ============ /digital marketing css ============ */

.step_box_wrap {
	width: 100%;
	max-width: 835px;
	margin: 59px auto 0px;
}

.step_container {
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 1;
}

.step_container::before {
	position: absolute;
	content: '';
	width: 1px;
	height: calc(100% + 33px);
	border-left: 1px solid #605E62;
	left: 50%;
	transform: translateX(-50%);
	top: 0px;
	z-index: -1;
}

.step_container:first-child:before {
	height: calc(50% + 33px);
	top: 49%;
}

.step_container:last-child:before {
	height: 50%;
}

.step_container+.step_container {
	margin-top: 33px;
}

.step_container .round {
	position: absolute;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 4px solid #605E62;
	padding: 4px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #FFFFFF;
}

.step_container .round::before {
	position: absolute;
	content: '';
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #0C55B4;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.step_container .cstm_col_6 {
	float: left;
}

.step_container:nth-child(odd) .cstm_col_6:nth-child(1) {
	text-align: right;
	padding-right: 35px;
}

.step_container:nth-child(odd) .cstm_col_6:nth-child(2) {
	text-align: left;
	padding-left: 62px;
}

.step_container:nth-child(even) {
	flex-direction: row-reverse;
}

.step_container:nth-child(even) .cstm_col_6:nth-child(1) {
	text-align: left;
	padding-left: 35px;
}

.step_container:nth-child(even) .cstm_col_6:nth-child(2) {
	padding-right: 62px;
}

.step_iconDiv {
	width: 202px;
	height: 202px;
	padding: 10px;
	border-radius: 50%;
	background: linear-gradient(180deg, #619FF1 0%, #091E3A 100%);
	display: inline-block;
}

.step_iconDiv .stepIcon {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFFFFF;
	box-shadow: 0px 10px 16px rgba(0, 0, 0, 0.18);
	padding: 40px;
}

.step_iconInfo {
	background: #FFFFFF;
	border-radius: 10px;
	padding: 33px 45px;
	position: relative;
	z-index: 1;
}

.arrow_sign-left {
	position: absolute;
	width: 0px;
	height: 0px;
	left: -25px;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
	border-right: 25px solid #FFFFFF;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}

.arrow_sign-right {
	position: absolute;
	width: 0px;
	height: 0px;
	right: -25px;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
	border-left: 25px solid #FFFFFF;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}

.step_iconInfo strong {
	display: inline-block;
	font-weight: 600;
	font-size: 24px;
	line-height: 31px;
	color: #0C183F;
}

.hire_dev_pagkge_section {
	width: 100%;
	display: inline-block;
	padding: 117px 0px 67px;
	background: #F4F4F4;
	position: relative;
	z-index: 1;
}

.cstm_col_6 {
	width: 50%;
}

.hire_our_dedicated_row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-top: 90px;
}

.hire_our_dedicated_figure {
	width: 58%;
}

.hire_our_dedicated_content {
	width: 42%;
}

.hire_our_dedicated_figure img {
	width: 90%;
}

.steps_list li {
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: 700;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	background-color: #fff;
	box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.11);
	border-radius: 10px;
	padding: 34px 37px;
}

.steps_list li:last-child {
	margin-bottom: 0;
}

.steps_list .icon_box {
	width: 109px;
	height: 109px;
	background-color: #DDF2FF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 25px;
}

.steps_list .step_listItm {
	font-size: 17px;
	font-weight: 500;
	margin-bottom: 20px;
	position: relative;
	box-shadow: none;
	padding: 0;
	padding-left: 30px;
}

.steps_list .step_listItm:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background-image: url(../images/check.svg);
	width: 18px;
	height: 18px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.steps_list li .content {
	width: calc(100% - 70x);
	padding-left: 20px;
}

.step_cont_info {
	width: calc(100% - 109px);
	padding-left: 20px;
	padding-top: 16px;
}

.step_cont_info h4 {
	font-weight: 700;
	font-size: 24px;
	line-height: 32px;
	color: #000000;
	margin-bottom: 34px;
}

.step_listItm {
	display: block;
	padding-left: 33px;
	position: relative;
}

.step_listItm p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #5F6471;
}

.step_listItm > strong {
	font-weight: 700;
	font-size: 16px;
	line-height: 23px;
	color: #242938;
	display: block;
	margin-bottom: 10px;
}

.step_listItm + .step_listItm {
	margin-top: 18px;
}

.webHire_sec .heading-div h2 {
	max-width: 55%;
}



/*============================== /main css ==============================*/