/* ------------- Root CSS Start ------------- */
:root {
	--primary-font-family: "Wix Madefor Display", sans-serif;
	--secondary-font-family: "DM Sans", sans-serif;
	--primary-color: #0f9af5;
	--secondary-color: #0a1f44;
	--grey-color: #f8f9fa;
	--white-color: #fff;
	--text-grey-color: #666666;
	--text-white-color: #ffffff;
	--text-black-color: #111112;
	--heading-text-color: #07255c;
	--font-regular: 400;
	--font-medium: 500;
	--font-semibold: 600;
	--font-bold: 700;
	--font-extrabold: 800;
}

/* ------------- Root CSS End ------------- */

html {
	scroll-padding-top: 200px;
	/* overflow-x: hidden; */
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--primary-font-family);
	font-weight: var(--font-regular);
	color: #313030;
	font-size: 17px;
}

p {
	font-family: var(--secondary-font-family);
	font-weight: var(--font-regular);
	font-size: 17px;
}

ul {
	list-style: none;
	padding-left: 0;
}

ul li {
	font-family: var(--secondary-font-family);
	font-weight: var(--font-regular);
	font-size: 17px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--primary-font-family);
}

a {
	text-decoration: none;
	color: var(--text-black-color);
}

section {
	padding: 70px 0;
}

.form-control {
	padding: .7rem .75rem;
}

.form-control:focus {
	box-shadow: none;
	border: 1px solid #0e94dd;
}

label {
	font-weight: 500;
}
label span{
	color: red;
}
/* ------------- Theme Title CSS Start ------------- */
.theme-title-wrap span {
	background-color: transparent !important;
	display: inline-block;
	font-size: 13px;
	padding: 5px 15px;
	border-radius: 30px;
	line-height: normal;
	font-weight: var(--font-bold);
	text-transform: uppercase;
	margin-bottom: 10px;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.theme-title-wrap .theme-title {
	font-size: 40px;
	font-weight: var(--font-bold);
	color: var(--heading-text-color);
}

/* ------------- Theme Title CSS Start ------------- */
/* ------------- Theme Button CSS Start ------------- */
.header-btn {
	position: relative;
	padding: 14px 30px;
	font-size: 14px;
	background-color: var(--primary-color);
	color: var(--text-white-color);
	border-radius: 30px;
	font-weight: var(--font-semibold);
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: all 0.4s ease;
	z-index: 1;
}

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

.btn-wrap {
	background-color: var(--primary-color);
	display: inline-block;
	padding: 14px 30px;
	border-radius: 30px;
	display: inline-flex;
	align-items: center;
}

.btn-wrap .theme-btn {
	color: var(--white-color);
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 1px;
	margin-right: 10px;
	font-weight: var(--font-semibold);
}

.btn-wrap svg {
	height: 12px;
	width: 12px;
}

/* .arrow-btn{
    position: absolute;
    right: 0;
    bottom: 52px;
    width: 50px;
    height: 50px;
	background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
} */
.arrow-btn a {
	font-weight: var(--font-semibold);
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 14px;
	transition: all 0.3s ease;
}

.arrow-btn a:hover {
	color: var(--primary-color);
}

.arrow-btn svg {
	height: 12px;
	width: 12px;
}

.btn-wrap svg line {
	stroke-width: 1px;
	fill: none;
	stroke: var(--white-color);
	stroke-width: 2;
	stroke-miterlimit: 10;
}

.arrow-btn svg line {
	stroke-width: 1px;
	fill: none;
	stroke: var(--secondary-color);
	stroke-width: 2;
	stroke-miterlimit: 10;
}

.btn-wrap svg line:nth-child(1),
.arrow-btn svg line:nth-child(1) {
	stroke-dasharray: 25px;
	stroke-dashoffset: 50px;
	transition: stroke-dashoffset 0.5s cubic-bezier(.61, 1, .88, 1);
}

.btn-wrap svg line:nth-child(2),
.btn-wrap svg line:nth-child(3),
.arrow-btn svg line:nth-child(2),
.arrow-btn svg line:nth-child(3) {
	stroke-dasharray: 20px;
	stroke-dashoffset: 40px;
	transition: stroke-dashoffset 0.6s cubic-bezier(.61, 1, .88, 1) 0.3s;
}

.btn-wrap:hover svg line {
	stroke-dashoffset: 0;
	stroke: var(--white-color);
}

.arrow-btn:hover svg line {
	stroke-dashoffset: 0;
	stroke: var(--primary-color);
}

/* ------------- Theme Button CSS End ------------- */

/* ------------- Header CSS Start ------------- */
#mainHeader {
	width: 100%;
	position: relative;
	background: #fff;
	transition: all 0.4s ease;
	z-index: 9;
}

/* Sticky state */
#mainHeader.sticky {
	position: fixed;
	top: 0;
	left: 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	animation: slideDown 0.5s ease forwards;
}

/* Slide animation */
@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

.theme-header .navbar {
	/* box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px; */
	/* border-bottom: 1px solid #e9e9e9; */
}

.navbar-brand img {
	max-width: 200px;
	width: 100%;
}

.theme-header .navbar-nav .nav-item {
	margin: 0 20px;
}

.theme-header .navbar-nav .nav-item:first-child {
	margin-left: 0;
}

.theme-header .navbar-nav .nav-link {
	position: relative;
	font-size: 15px;
	text-transform: uppercase;
	padding: 33px 0;
	font-weight: var(--font-bold);
	color: var(--text-black-color);
}

.theme-header .navbar-nav .nav-link.active,
.theme-header .navbar-nav .nav-link:hover {
	color: var(--primary-color);
}

.theme-header .navbar-nav .nav-link::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 0;
	height: 3px;
	background-color: var(--primary-color);
	transition: all 0.4s ease;
}

.theme-header .navbar-nav .nav-link.active::before,
.theme-header .navbar-nav .nav-link:hover::before {
	width: 100%;
}

.theme-header .navbar-nav .dropdown-menu .dropdown-item {
	font-size: 16px;
	text-transform: capitalize;
	font-weight: var(--font-semibold);
	font-family: var(--primary-font-family);
	text-wrap-mode: wrap;
	padding: 10px 20px;
	transition: all 0.4s ease;
}

.theme-header .navbar-nav .dropdown-menu .dropdown-item.active {
	color: var(--primary-color);
	background-color: transparent;
}

.theme-header .navbar-nav .dropdown-menu .dropdown-item:hover {
	color: var(--primary-color);
	background-color: transparent;
}

.theme-header .navbar-nav .dropdown-menu .dropdown-item:focus {
	background-color: transparent;
	color: var(--text-black-color);
}

/* ------------- Header CSS End ------------- */

/* ------------- Banner Section CSS Start ------------- */
.home-top-banner-section {
	overflow-x: hidden;
}

.home-top-banner-section .banner-text-wrap {
	overflow-x: hidden;
}

.banner-text-wrap h1 {
	font-size: 50px;
	font-weight: var(--font-extrabold);
	color: var(--heading-text-color);
}

.banner-text-wrap h1 span {
	font-weight: var(--font-medium);
}

/* ------------- Banner Section CSS End ------------- */

/* ------------- Home About Us Section CSS Start ------------- */
.company-overview-section {
	position: relative;
	/* background-color: var(--grey-color); */
	z-index: 1;
	overflow: hidden;
}

.company-overview-section::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 30%;
	height: 100%;
	background: #0a1f44;
	z-index: -1;
}

.company-overview-img-wrap {
	position: relative;
	padding-top: 15px;
	padding-left: 15px;
}

.company-overview-img-wrap::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 25%;
	height: 35%;
	border: 2px solid var(--primary-color);
	z-index: -1;
}

/* ------------- Home About Us Section CSS End ------------- */

/* ------------- Services Section CSS Start ------------- */
/* .services-section{
	overflow-x: hidden;
}
.services-section .container-fluid{
	padding-left: calc((100% - 1305px) / 2);
    padding-right: 0;
}
.services-wrap-box .services-img-wrap{
	overflow: hidden;
}
.services-wrap-box .services-img-wrap img{
	aspect-ratio: 1 / 1.09;
	object-fit: cover;
	transform: scale(1);
	transition: all 0.4s ease;
}
.services-wrap-box:hover .services-img-wrap img{
	transform: scale(1.05);
}
.services-section .services-title{
	font-size: 25px;
	font-weight: var(--font-semibold);
	margin-top: 15px;
	transition: all 0.4s ease;
}
.services-wrap-box:hover .services-title{
	color: var(--primary-color);
} 
.services-wrap-box:hover .arrow-btn svg line{
	stroke-dashoffset: 0;
    stroke: var(--primary-color);
} 
.services-section .owl-nav{
	margin-top: 30px;
}
.services-section .owl-nav button{
	margin: 0 5px;
}
.services-section .owl-nav button img{
	width: 30px;
} */

.services-section {
	overflow-x: hidden;
}

.services-box-col .services-wrap-box {
	padding: 30px 0px 0 30px;
	border-radius: 15px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.services-box-col:nth-child(5n + 1) .services-wrap-box {
	background-color: #f0edff;
}

.services-box-col:nth-child(5n + 2) .services-wrap-box {
	background-color: #ecf1f0;
}

.services-box-col:nth-child(5n + 3) .services-wrap-box {
	background-color: #e0f2fe;
}

.services-box-col:nth-child(5n + 4) .services-wrap-box {
	background-color: #f9f4ec;
}

.services-box-col:nth-child(5n + 5) .services-wrap-box {
	background-color: #f3ede8;
}

.services-wrap-box .icon {
	background: #07255c;
	width: 55px;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.services-wrap-box .icon img {
	width: 30px;
	height: 30px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.services-wrap-box .title h2 {
	font-weight: var(--font-semibold);
	font-size: 23px;
}

/* .services-wrap-box .desc{
	min-height: 76px;
	height: 76px;
} */
.services-wrap-box .title,
.services-wrap-box .desc {
	padding-right: 25px;
}

.services-wrap-box .desc p {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	/* number of lines to show */
	line-clamp: 3;
	-webkit-box-orient: vertical;
}

/* .screen-shot-wrap{
	position: absolute;
	bottom: 0;
} */
.services-wrap-box .screen-shot-wrap img {
	aspect-ratio: 1 / 0.8;
	object-fit: contain;
	object-position: right;
}

.services-box-col:nth-child(5n + 4) .screen-shot-wrap img,
.services-box-col:nth-child(5n + 5) .screen-shot-wrap img {
	aspect-ratio: 1 / 0.6;
	object-fit: contain;
	object-position: right;
}

/* ------------- Services Section CSS End ------------- */

/* ------------------------- Our Testimonials CSS Start ------------------------- */
.inquiry-and-testimonials-section {
	overflow-x: hidden;
}

.inquiry-and-testimonials-section .container-fluid {
	padding-left: calc((100% - 1305px) / 2);
	padding-right: 0;
}

.our-testimonials-section {
	position: relative;
	overflow: hidden;
	/* background-color: var(--secondary-color); */
}

/* .our-testimonials-section::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	background-image: url(../images/shape/counter-bg.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	filter: brightness(0) invert(1);
	width: 100%;
	height: 100%;
	opacity: 0.5;
} */
.our-testimonials-section .owl-item {
	padding: 0 10px;
}

.our-testimonials-wrap-box {
	/* box-shadow: 0px 4px 16px #D8E1E8; */
	border-radius: 10px;
	padding: 30px 25px;
	margin-top: 20px;
	background-color: #e0f2fe;
}

.our-testimonials-wrap-box .desc {
	min-height: 150px;
}

.our-testimonials-wrap-box .desc p {
	font-size: 16px;
}

.our-testimonials-text {
	border-top: 1px solid #eeeeee;
	padding-top: 20px;
}

.our-testimonials-name h2 {
	font-size: 16px;
	color: var(--secondary-color);
	font-weight: 600;
	margin-bottom: 0;
}

.our-testimonials-name p {
	margin-bottom: 0;
	font-size: 14px;
}

.left-quote-icon {
	width: 55px;
	height: 55px;
	/* border: 1px solid #c2c2c2; */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.left-quote-icon img {
	width: 55px;
	height: 55px;
	object-fit: contain;
}

.our-testimonials-img img {
	width: 40px;
	height: 40px;
	border-radius: 50px;
	object-fit: cover;
}

.our-testimonials-section .owl-stage-outer {
	padding: 10px 0 15px;
}

.our-testimonials-section .owl-nav {
	display: flex;
	margin-top: 20px;
	justify-content: center;
}

.our-testimonials-section .owl-nav button {
	margin: 0 3px;
	width: 40px;
	height: 40px;
	background-color: var(--primary-color) !important;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.our-testimonials-section .owl-nav button img {
	width: 15px;
	filter: brightness(0) invert(1);
}

.our-testimonials-carousel .owl-stage {
	display: flex;
	padding-bottom: 30px;
}

.our-testimonials-carousel .owl-item {
	display: flex;
	height: auto;
}

.our-testimonials-wrap-box {
	height: 100%;
}

/* ------------------------- Our Testimonials CSS End ------------------------- */

/* ------------------------- Our Process CSS Start ------------------------- */
/* .our-process-wrapper{
	position: sticky;
	top: 20px;
	margin-bottom: 20px;
}
.our-process-text-wra-box{
	background-color: var(--secondary-color);
	padding: 30px;
}
.our-process-text-wra-box .num p{
	font-size: 70px;
	font-weight: var(--font-extrabold);
	color: var(--primary-color);
	text-shadow: 5px 5px 8px rgba(var(--primary-color), .03);
}
.our-process-text-wra-box .title p{
	font-size: 25px;
	font-weight: var(--font-medium);
	color: #fff;
}
.our-process-text-wra-box .desc p{
	color: #fff;
}
.our-process-text-wra-box .desc ul li{
	position: relative;
	padding-left: 20px;
	color: #fff;
	margin-bottom: 10px;
}
.our-process-text-wra-box .desc ul li::before{
	position: absolute;
	content: '';
	top: 8px;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--primary-color);
} */
.our-process-section {
	overflow-x: hidden;
}

.our-process-section .our-process-slider-wrapper {
	position: relative;
	padding: 70px;
	background-color: var(--secondary-color);
	border-radius: 30px;
}

.our-process-section .our-process-slider-wrapper::before {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	background-image: url(..//images/shape/line-draw-shpe.png);
	background-size: contain;
	background-position: bottom left;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	opacity: 0.6;
}

.our-process-wrap-box {
	position: relative;
	background-color: var(--secondary-color);
	padding: 30px;
	border-radius: 15px;
	border: 1px solid #1d468e;
	z-index: 3;
}

.our-process-wrap-box .icon {
	margin-bottom: 60px;
}

.our-process-wrap-box .icon img {
	width: 45px;
	height: 45px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.our-process-wrap-box .step-num {
	width: 45px;
	height: 45px;
	border: 2px solid var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.our-process-wrap-box .step-num p {
	color: var(--primary-color);
	font-size: 20px;
	font-weight: var(--font-semibold);
}

.our-process-wrap-box .title strong {
	color: var(--white-color);
	font-size: 20px;
}

.our-process-wrap-box .desc p {
	color: var(--white-color);
}

.our-process-section .owl-item:nth-child(odd) {
	margin-top: 45px;
}

.our-process-section .owl-item:nth-child(even) {
	margin-top: 100px;
}

.our-process-carousel .item {
	position: relative;
}

.our-process-section .owl-item:nth-child(even) {
	margin-top: 120px;
}

.down-to-up-arrow {
	position: absolute;
	/*width: 220px;*/
	width: 457px;
	z-index: 1;
}

.down-to-up-arrow img {
	width: 100%;
	height: auto;
	display: block;
	opacity: 0.6;
}

.our-process-carousel .owl-item:nth-child(odd) .down-to-up-arrow {
	bottom: -125px;
	right: -260px;
}

.our-process-carousel .owl-item:nth-child(even) .down-to-up-arrow {
	top: -120px;
	right: -260px;
}

.our-process-carousel .owl-item:last-child .down-to-up-arrow {
	display: none;
}

.our-process-section .owl-stage-outer {
	padding-bottom: 60px;
}

/* ------------------------- Our Process CSS End ------------------------- */

/* ------------------------- Our Counter CSS Start ------------------------- */
.our-counter-section {
	position: relative;
	/* padding: 200px 0; */
	/* background-color: var(--secondary-color); */
	z-index: 1;
	overflow-x: hidden;
}

/* .our-counter-section::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/aboutus/why-chooseus-bg.png);
	background-position: top;
	background-size: cover;
	z-index: -1;
} */
/* .our-counter-section::after{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/shape/line-shape.png);
	background-size: contain;
	background-repeat: no-repeat;
} */
.our-counter-wrapper {
	background-color: #e0f2fe;
	padding: 40px;
	border-radius: 15px;
}

.our-counter-wrap-box h2 {
	font-size: 60px;
	color: var(--secondary-color);
	font-weight: var(--font-bold);
}

.our-counter-wrap-box p {
	text-transform: uppercase;
	font-size: 15px;
	font-weight: var(--font-bold);
	font-family: var(--primary-font-family);
	letter-spacing: 1px;
}

.counter-col {
	border-right: 1px solid #63b9f1;
}

.counter-col:last-child {
	border-right: 0;
}

/* ------------------------- Our Counter CSS End ------------------------- */

/* ------------------------- Why Choose Us Section CSS Start ------------------------- */
.why-chooseus-section {
	/* overflow-x: hidden; */
	position: relative;
}

.why-chooseus-section::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 57%;
	height: 100%;
	background-color: var(--grey-color);
	border-radius: 0 20px 20px 0;
	z-index: 2;
}

.why-chooseus-section .container-fluid {
	padding-left: calc((100% - 1305px) / 2);
	padding-right: 0;
}

.why-chooseus-img-wrap {
	margin-top: -100px;
	z-index: 1;
	position: relative;
	padding-bottom: 100px;
}

.why-chooseus-img-wrap img {
	border-radius: 20px 0 0 20px;
}

.why-chooseus-text-wrap {
	position: relative;
	padding: 50px 0;
	z-index: 3;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.why-chooseus-section .desc {
	padding-right: 5px;
}

.why-chooseus-section .desc::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: #F5F5F5;
}

.why-chooseus-section .desc::-webkit-scrollbar {
	width: 2px;
	background-color: #F5F5F5;
}

.why-chooseus-section .desc::-webkit-scrollbar-thumb {
	background-color: #000000;
	border: 2px solid #555555;
}

/* ------------------------- Why Choose Us Section CSS End ------------------------- */

/* ------------------------- Home Inquiry CSS Start ------------------------- */
.inquiry-form-wrap {
	/* background-color: #e0f2fe; */
	/* padding: 60px 45px; */
	border-radius: 10px;
}

.inquiry-form-wrap .form-control {
	background-color: transparent;
	border: 1px solid #95c8e8;
}

/* ------------------------- Home Inquiry CSS End ------------------------- */

/* ------------------------- Blogs Section CSS Start ------------------------- */
.blogs-section {
	overflow-x: hidden;
}

.blogs-wrap-box {
	background: #fff;
	border-radius: 10px;
	border: 1px solid #e8e8e8;
}

.blogs-img-wrap {
	overflow: hidden;
	border-radius: 10px;
}

.blogs-img-wrap img {
	border-radius: 10px;
	transform: scale(1);
	transition: all 0.4s ease;
}

.blogs-wrap-box:hover .blogs-img-wrap img {
	transform: scale(1.06);
}

.blogs-date {
	position: relative;
	padding-left: 20px;
}

.blogs-date::before {
	position: absolute;
	content: '';
	top: 8px;
	left: 2px;
	width: 7px;
	height: 7px;
	background-color: var(--primary-color);
	border-radius: 50%;
}

.blogs-text-wrap {
	padding: 15px 15px 20px;
}

.blogs-date p {
	color: var(--primary-color);
	font-weight: var(--font-semibold);
	letter-spacing: 1px;
}

.blogs-title h2,
.blogs-title h2 a {
	font-size: 22px;
	font-weight: var(--font-semibold);
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* number of lines to show */
	line-clamp: 2;
	-webkit-box-orient: vertical;
	color: var(--text-black-color);
}

/* ------------------------- Blogs Section CSS End ------------------------- */

/* ------------------------- Blog Detail Section CSS Start ------------------------- */
.blog-detail-img img {
	border-radius: 10px;
}

.blogs-title-wrap {
	margin: 20px 0;
}

.blogs-title-wrap h2 {
	font-size: 30px;
	font-weight: var(--font-bold);
	color: var(--primary-color);
}

.blog-detail-desc h1,
.blog-detail-desc h2,
.blog-detail-desc h3,
.blog-detail-desc h4,
.blog-detail-desc h5,
.blog-detail-desc h6 {
	font-size: 23px;
	font-weight: var(--font-bold);
	color: var(--secondary-color);
	margin-top: 10px;
}

.blog-detail-desc ul li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 35px;
}

.blog-detail-desc ul li::before {
	position: absolute;
	content: '';
	top: 5px;
	left: 0;
	background-image: url(../images/icon/check-circle.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 18px;
	height: 18px;
}

.blog-detail-desc ul li strong {
	font-weight: 600;
}

/* ------------------------- Blog Detail Section CSS End ------------------------- */


/* ------------------------- Footer Section CSS Start ------------------------- */
.footer-section {
	background-color: var(--secondary-color);
}

.main-footer {
	padding: 70px 0;
}

.f-logo img {
	max-width: 245px;
	width: 100%;
	filter: brightness(0) invert(1);
}

.f-title {
	font-size: 25px;
	font-weight: var(--font-semibold);
	color: var(--primary-color);
	margin-bottom: 20px;
}

.f-links li,
.f-con-info li {
	margin-bottom: 10px;
}

.f-links li a {
	position: relative;
	padding: 2px;
}

.f-links li a::before {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 25px;
	height: 1px;
	background-color: var(--primary-color);
	transition: all 0.4s ease;
}

.f-links li a:hover::before {
	width: 100%;
}

.f-con-info li img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	margin-top: 5px;
	margin-right: 10px;
	filter: brightness(0) invert(1);
}

.f-links li a,
.f-con-info li a,
.f-con-info li p,
.f-about-comp p,
.bottom-footer p {
	color: #fff;
	margin-bottom: 0;
	font-size: 16px;
	transition: all 0.4s ease;
}

.bottom-footer {
	border-top: 1px solid #0e5381;
	padding: 20px 0;
}

.bottom-footer img {
	width: 18px;
	filter: brightness(0) invert(0.9);
	float: right;
	transition: all 0.4s ease;
}

.bottom-footer img:hover {
	filter: none;
}

/* ------------------------- Footer Section CSS End ------------------------- */

/* ------------------------- Inner Banner CSS Start ------------------------- */
.inner-banner-section {
	background-color: var(--secondary-color);
}

.inner-banner-section .page-title {
	font-size: 35px;
	font-weight: var(--font-semibold);
	color: var(--primary-color);
}

.inner-banner-section .breadcrumb li,
.inner-banner-section .breadcrumb li a {
	color: #fff;
	font-size: 17px;
}

.inner-banner-section .breadcrumb-item+.breadcrumb-item::before {
	color: #fff;
}

/* ------------------------- Inner Banner CSS End ------------------------- */

/* ------------------------- Inner About Us CSS Start ------------------------- */
.inner-aboutus-section {
	overflow-x: hidden;
}

.inner-about-img-wrap img {
	border-radius: 10px;
}

.inner-about-img-wrap.img-2 {
	margin-top: 75px;
}

.vision-mission-wrapper .nav-pills .nav-item {
	margin: 7px;
}

.vision-mission-wrapper .nav-pills .nav-link {
	border: 1px solid var(--primary-color);
	padding: 8px 45px;
}

.vision-mission-wrapper .nav-pills .nav-link {
	display: flex;
	align-items: center;
	color: var(--text-black-color);
	font-weight: var(--font-semibold);
}

.vision-mission-wrapper .nav-pills .nav-link.active {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.vision-mission-wrapper .nav-pills .nav-link img {
	width: 30px;
	height: 30px;
	object-fit: contain;
	margin-right: 10px;
}

.vision-mission-wrapper .nav-pills .nav-link.active img {
	filter: brightness(0) invert(1);
}

.vision-mission-wrapper .vision-mission-img-wrap img {
	border-radius: 15px;
}

.mess-from-founder-section {
	position: relative;
	z-index: 1;
}

.mess-from-founder-section::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 30%;
	height: 100%;
	background-color: #e0f2fe;
	z-index: -1;
}

.mess-from-founder-img-wrap img {
	border-radius: 10px;
}
.unkown-section .unknown-img-wrap img{
	border-radius: 10px;
    aspect-ratio: 1 / 0.8;
    object-fit: cover;
}
/* ------------------------- Inner About Us CSS End ------------------------- */

/* ------------------------- Services Listing CSS Start ------------------------- */
.service-list-wrap-box {
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	border-radius: 15px;
	padding: 15px;
	height: 100%;
}

.service-list-wrap-box .service-img-wrap img {
	border-radius: 10px;
	aspect-ratio: 1 / 0.8;
	object-fit: cover;
	transform: scale(1);
	transition: all 0.4s ease;
}

.service-list-wrap-box .service-img-wrap {
	overflow: hidden;
	border-radius: 10px;
}

.service-list-wrap-box:hover .service-img-wrap img {
	transform: scale(1.06);
}

.service-list-wrap-box .title {
	padding: 10px 0;
	border-bottom: 1px solid #dad9d9;
	margin-bottom: 20px;
}

.service-list-wrap-box .title h2,
.service-list-wrap-box .title h2 a {
	font-size: 22px;
	font-weight: var(--font-bold);
	color: var(--secondary-color);
	transition: all 0.4s ease;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* number of lines to show */
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.service-list-wrap-box:hover .title h2,
.service-list-wrap-box:hover .title h2 a {
	color: var(--primary-color);
}

.service-list-wrap-box .service-text-wrap {
	padding: 10px 0 5px;
}

.service-list-wrap-box .service-text-wrap .desc p {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	/* number of lines to show */
	line-clamp: 3;
	-webkit-box-orient: vertical;
}

/* ------------------------- Services Listing CSS End ------------------------- */

/* ------------------------- Services Detail CSS Start ------------------------- */
.service-detail-box-wrap {
	border: 2px solid #B4E0F1;
	padding: 30px 15px;
	border-radius: 10px;
	height: 100%;
	transform: translateY(0);
	transition: all 0.3s ease;
}

.service-detail-box-wrap:hover {
	transform: translateY(-10px);
}

.service-detail-box-wrap .icon-and-title-wrap img {
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.service-detail-box-wrap .icon-and-title-wrap h2 {
	font-size: 20px;
	font-weight: var(--font-bold);
	color: var(--secondary-color);
}

.service-detail-box-wrap .icon-and-title-wrap {
	border-bottom: 1px solid #E4E4E4;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.odd-even-wrapper {
	margin-bottom: 50px;
}

.odd-even-wrapper:last-child {
	margin-bottom: 0;
}
.odd-even-img-wrap{
	position: sticky;
    top: 120px;
}
.odd-even-wrapper .odd-even-img-wrap img {
	border-radius: 10px;
	aspect-ratio: 1 / 0.9;
	object-fit: cover;
}

.odd-even-wrapper:nth-child(odd) .row .odd-even-text-wrap {
	padding-left: 35px;
}

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

.odd-even-wrapper:nth-child(even) .row .odd-even-text-wrap {
	padding-right: 35px;
}

.odd-even-text-wrap .title {
	margin-bottom: 20px;
}

.odd-even-text-wrap .title h2 {
	font-size: 30px;
	font-weight: var(--font-bold);
	color: #000000;
}
.odd-even-text-wrap .price-text h2 {
    font-size: 30px;
    font-weight: var(--font-bold);
    color: var(--primary-color);
}
.odd-even-text-wrap .price-text p {
    color: #000;
    font-weight: var(--font-medium);
}
/* ------------------------- Services Detail CSS End ------------------------- */

/* ------------------------- Services Testimonials CSS Start ------------------------- */
.service-testimonials-section {
	background-color: #DBF3F9;
}

.service-testimonials-wrap-box {
	background-color: #fff;
	padding: 50px 40px;
	border-radius: 10px;
}

.service-testimonials-wrap-box .desc p {
	font-size: 20px;
}

.testimonials-text-wrap p strong {
	font-size: 20px;
	font-weight: var(--font-bold);
	color: var(--secondary-color);
	font-family: var(--primary-font-family);
}

.testimonials-text-wrap p.designation {
	color: var(--primary-color);
	font-family: var(--primary-font-family);
}

.service-testimonials-carousel .owl-stage {
	display: flex;
}

.service-testimonials-carousel .owl-item {
	display: flex;
	height: auto;
}

.service-testimonials-carousel .service-testimonials-wrap-box {
	height: 100%;
}

.service-testimonials-carousel .owl-dots {
	text-align: center;
	margin-top: 15px;
}

.service-testimonials-carousel .owl-dots button {
	margin: 3px;
}

.service-testimonials-carousel .owl-dots button span {
	display: block;
	width: 30px;
	height: 5px;
	background-color: var(--primary-color);
	opacity: 0.3;
}

.service-testimonials-carousel .owl-dots button.active span {
	background-color: var(--primary-color);
	opacity: 1;
}

/* ------------------------- Services Testimonials CSS End ------------------------- */

/* ------------------------- FAQ's CSS Start ------------------------- */
.custom-accordion .accordion-button::after {
	display: none;
}

.custom-accordion .accordion-item {
	border: 2px solid #B4E0F1;
	border-radius: 10px;
	margin-bottom: 20px;
	background: #fff;
	overflow: hidden;
}

.custom-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
	border-color: var(--primary-color);
	/* Dark blue border */
}

.custom-accordion .accordion-button {
	background: #fff;
	color: #000000;
	font-size: 22px;
	font-weight: var(--font-bold);
	padding: 20px 25px;
	box-shadow: none;
	border-radius: 10px;
	position: relative;
}

.accordion-button:not(.collapsed) {
	padding: 20px 25px 0;
}

.custom-accordion .accordion-button:focus {
	box-shadow: none;
	border-color: transparent;
}

.custom-accordion .accordion-button::before {
	content: "+";
	position: absolute;
	right: 25px;
	font-size: 24px;
	font-weight: 600;
	color: #3aa0ff;
	transition: 0.3s;
}

.custom-accordion .accordion-button:not(.collapsed)::before {
	content: "−";
}

.custom-accordion .accordion-body {
	padding: 20px 25px;
	font-size: 15px;
	color: #555;
	background: #fff;
}

/* ------------------------- FAQ's CSS End ------------------------- */

/* ------------------------- Contact Us Section CSS  Start ------------------------- */
.contact-info-wrap{
	position: sticky;
	top: 120px;
}
.contact-info-items {
	background-color: #e0f2fe;
	padding: 40px 30px;
	border-radius: 10px;
	margin-bottom: 20px;
}

.contact-info-items:last-child {
	margin-bottom: 0;
}

.contact-info-items a {
	margin-bottom: 5px;
}

.conntect-with-us-wrap ul {
	display: flex;
	justify-content: center;
}

.conntect-with-us-wrap ul li {
	margin: 0 3px;
}

.conntect-with-us-wrap ul li a {
	display: inline-block;
	width: 37px;
	height: 37px;
	border: 1px solid var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.4s ease;
}

.conntect-with-us-wrap ul li a:hover {
	background-color: var(--primary-color);
}

.conntect-with-us-wrap ul li a img {
	width: 17px;
	height: 17px;
	object-fit: contain;
}

.conntect-with-us-wrap ul li a:hover img {
	filter: brightness(0) invert(1);
}

.map-wrap iframe {
	height: 100%;
	border-radius: 10px;
}

.intl-tel-input,
.iti {
	width: 100%;
}

/* ------------------------- Contact Us Section CSS End ------------------------- */

/* ------------------------- Inquiry Section CSS Start ------------------------- */
.inquiry-form-wrapper {
	border: 1px solid #B4E0F1;
	border-radius: 10px;
	padding: 70px;
}

/* ------------------------- Inquiry Section CSS End ------------------------- */

/* ------------------------- Client Success Stories Section CSS Start ------------------------- */
.client-success-stories-wrapper .masonry-client-success-stories {
	column-count: 3;
	/* 3 images per row */
	column-gap: 15px;
}

.client-success-stories-wrapper .client-success-stories-item {
	break-inside: avoid;
	margin-bottom: 15px;
	border-radius: 5px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-success-stories-wrapper .inner-our-testimonials-wrap-box {
	background-color: #e0f2fe;
	padding: 40px;
	border-radius: 15px;
	border: 1px solid #B4E0F1;
}

.client-success-stories-wrapper .inner-our-testimonials-img img {
	width: 55px;
	height: 55px;
	object-fit: contain;
}

.client-success-stories-wrapper .inner-our-testimonials-name h2 {
	font-size: 17px;
	color: var(--secondary-color);
	font-weight: var(--font-bold);
	margin-bottom: 5px;
	text-transform: uppercase;
}

.client-success-stories-wrapper .inner-our-testimonials-name p {
	margin-bottom: 0;
	font-weight: var(--font-medium);
	font-size: 15px;
	color: var(--primary-color);
}

/* ------------------------- Client Success Stories Section CSS End ------------------------- */

/* ------------------------- Case Studies Section CSS Start ------------------------- */
.case-studies-wrap-box {
	background-color: #e0f2fe;
	border-radius: 10px;
	border: 1px solid #c7e9fe;
}

.case-studies-img-wrap {
	overflow: hidden;
	border-radius: 10px 0 0 10px;
}

.case-studies-img-wrap img {
	aspect-ratio: 1 / 0.9;
	object-fit: cover;
	border-radius: 10px 0 0 10px;
	transform: scale(1);
	transition: all 0.4s ease;
}

.case-studies-wrap-box:hover .case-studies-img-wrap img {
	transform: scale(1.06);
}

.case-studies-text-wrap h2,
.case-studies-text-wrap h2 a {
	font-size: 22px;
	font-weight: var(--font-semibold);
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	/* number of lines to show */
	line-clamp: 4;
	-webkit-box-orient: vertical;
}

.case-studies-text-wrap {
	padding: 10px 10px 10px 0px;
}

.case-studies-text-wrap .arrow-btn {
	display: inline-block;
}

.case-studies-detail-img-wrap img {
	border-radius: 10px;
}

.case-studies-detail-title h2 {
	font-size: 35px;
    font-weight: var(--font-bold);
    color: var(--primary-color);
}

.case-studies-detail-text-wrp ul li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 35px;
}

.case-studies-detail-text-wrp ul li::before {
	position: absolute;
	content: '';
	top: 5px;
	left: 0;
	background-image: url(../images/icon/check-circle.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 18px;
	height: 18px;
}
.case-studies-short-desc h1, .case-studies-short-desc h2, .case-studies-short-desc h3, .case-studies-short-desc h4, .case-studies-short-desc h5, .case-studies-short-desc h6{
	font-size: 22px;
	font-weight: 500;
    color: #0a1f44;
}
/* ------------------------- Case Studies Section CSS End ------------------------- */

/* ------------------------- Services Packages Section CSS Start ------------------------- */
.services-packages-section {
	background-color: #e0f2fe;
	overflow-x: hidden;
}

.services-packages-wrap-box {
	background-color: #fff;
	padding: 20px;
	border-radius: 10px;
	border: 1px solid #0f9af5;
	height: 100%;
}

.services-packages-title h2 {
	font-size: 28px;
	font-weight: var(--font-bold);
	color: var(--secondary-color);
}

.services-packages-wrap-box .price-text h2 {
	font-size: 30px;
	font-weight: var(--font-bold);
	color: var(--primary-color);
}

.services-packages-wrap-box .price-text p {
	color: #000;
	font-weight: var(--font-medium);
}

.get-started-btn a {
	display: block;
	border: 2px solid var(--primary-color);
	font-weight: var(--font-semibold);
	color: var(--primary-color);
	padding: 10px 25px;
	border-radius: 30px;
	text-align: center;
	transition: all 0.4s ease;
}

.services-packages-wrap-box:hover .get-started-btn a {
	background-color: var(--secondary-color);
	color: #fff;
}

.services-packages-text ul li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
}

.services-packages-text ul li::before {
	position: absolute;
	content: '';
	top: 5px;
	left: 0;
	background-image: url(../images/icon/double-check-icon.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 18px;
	height: 18px;
}

/* ------------------------- Services Packages Section CSS End ------------------------- */

.odd-even-wrapper ul li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 35px;
}

.odd-even-wrapper .desc ul li::before {
	position: absolute;
	content: '';
	top: 5px;
	left: 0;
	background-image: url(../images/icon/check-circle.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 18px;
	height: 18px;
}


/* ------------------------- Specialties We Serve Section CSS Start ------------------------- */

.specialties-we-serve{
	overflow-x: hidden;
}

.specialties-we-serve-wrapper {
  /* background-color: #f0e8d1; */
}

.specialties-we-serve-wrapper .slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.specialties-we-serve-wrapper .slide-transtion .swiper-slide {
  width: auto;
}

.specialties-we-serve-wrapper .ot-brand-img {
  	border: 1px solid #0f9af5;
 	border-radius: 5px;
    padding: 30px 20px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 210px;
}
.specialties-we-serve-wrapper .ot-brand-img {
  width: 300px;
  /* height: 80px;
  object-fit: contain; */
}
.specialties-we-serve-wrapper .ot-brand-img img{
	width: 60px;
	height: 60px;
	object-fit: contain;
	transform: scale(0.95);
	transition: all 0.4s ease;
}
.specialties-we-serve-wrapper .ot-brand-img:hover img{
	transform: scale(1.03);
}
.specialties-we-serve-wrapper .ot-brand-img .title{
	font-size: 20px;
	font-weight: var(--font-bold);
    color: var(--heading-text-color);
	margin-top: 30px;
	margin-bottom: 0;
}
/* ------------------------- Specialties We Serve Section CSS End ------------------------- */

/* ------------------------- Why PAID Section CSS Start ------------------------- */
.why-paid-section{
	overflow-x: hidden;
}
.why-paid-img-wrap img{
	border-radius: 10px;
}
.why-paid-text-wrap .desc ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 35px;
}
.why-paid-text-wrap .desc ul li::before {
    position: absolute;
    content: '';
    top: 5px;
    left: 0;
    background-image: url(../images/icon/check-circle.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
}
/* ------------------------- Why PAID Section CSS End ------------------------- */

/* .price-note{
    background: #f3f0f0;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #0f9af5;
} */
.price-note > ol {
	margin-bottom: 15px !important;
	padding-left: 0;
	list-style: none;
	display: block;
}

.price-note > ol > li { 
	margin-bottom: 8px;
    background-color: #e0f2fe;
    width: 80%;
    padding: 7px 15px;
    color: #000;
    border-radius: 5px;
    border-left: 2px solid #0f9af5;
}

/* ------------- Thank you Page CSS Start ------------- */
.thank-you-section{
  position: relative;
  z-index: 1;
}
.thank-you-section::before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/about/emailer-textture.png);
  background-size: 250px;
  background-position: center;
  background-repeat: repeat;
  opacity: 0.1;
  z-index: -1;
}
.thank-you-section .thank-you-box{
  padding: 40px;
  background-color: #fff;
  border-left: 2px solid var(--primary-color);
  border-radius: 6px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.thank-you-section .thank-you-box h1{
  font-size: 50px;
  color: var(--primary-color);
  font-weight: 700;
}
.thank-you-section .thank-you-box h4{
  font-size: 18px;
}
.thank-you-section .thank-you-box h4 a{
  color: var(--primary-color);
  font-weight: 600;
}
.thank-you-section .thank-you-box p{
  color: #000;
  font-weight: 400;
}

/* ------------- Thank you Page CSS End ------------- */