@import url('https://fonts.googleapis.com/css2?family=Licorice&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
	--font: 'Inter', sans-serif;
	--font1: "Licorice", cursive;
	--primary: #e66e52;
	--secondary: #407f94;
	--secondary-light: #65e3e0;
	--light-primary: #ffe8e0;
	--blue: #334770;
	--white: #fff;
	--grey: rgba(17, 17, 17, .72);
	--black: #000;
	--dark: #14141a;
	--textColor: #454857
}

* {
	box-sizing: border-box
}

body {
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	font-size: 16px;
	line-height: 26px;
	font-family: var(--font);
	color: var(--textColor)
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--dark);
	font-family: var(--font);
	font-weight: 600
}

p {
	margin: 0 0 20px
}

img,
svg {
	width: 100%
}

.clear {
	clear: both
}

.clear:after {
	position: relative;
	content: "";
	clear: both;
	display: table;
	width: 100%
}

::-ms-input-placeholder {
	color: var(--dark)
}

::placeholder {
	color: var(--dark)
}

::-webkit-placeholder {
	color: var(--dark)
}

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

a {
	transition: .5s;
	text-decoration: none
}

a:hover {
	text-decoration: none
}

.darkbg {
	background: var(--dark)
}

.blackbg {
	background: var(--black)
}

.gradientbg {
	background: linear-gradient(to bottom, #f1f1f1, #fff)
}

.reverse-gradientbg {
	background: linear-gradient(to bottom, #fff, #f1f1f1)
}

.bluebg {
	background: var(--secondary)
}

section {
	padding: 80px 0;
	position: relative;
	overflow: hidden
}

.mb-60 {
	margin-bottom: 60px
}

.pt-0 {
	padding-top: 0
}

.pb-0 {
	padding-bottom: 0
}

figure {
	margin: 0;
	display: inline-block
}

.cmnbtn {
	background-color: var(--textColor);
	color: var(--white);
	padding: 10px 20px;
	position: relative;
	overflow: hidden;
	display: inline-block;
	gap: 10px;
	width: fit-content
}

.cmnbtn span {
	position: relative;
	z-index: 1;
	font-size: 15px;
	font-weight: 500;
	color: var(--white);
	text-transform: uppercase;
	white-space: nowrap
}

.cmnbtn:after {
	position: absolute;
	content: "";
	left: 50%;
	top: 0;
	transform: translate(-50%, 0);
	background: var(--primary);
	transform: translate(-50%, 0) skew(-30deg, 0);
	width: 125%;
	height: 130%;
	transition: .5s
}

.cmnbtn:hover:after {
	width: 0
}

.cmnbtn .ico {
	transform: rotate(0);
	transition: .5s
}

.cmnbtn .ico i {
	position: relative;
	left: 0;
	top: -2px
}

.cmnbtn:hover .ico {
	transform: rotate(360deg)
}

.tophd {
	margin: 0 0 30px
}

.tophd.center {
	text-align: center
}

.tophd.mid {
	margin: 0 auto;
	max-width: 60%;
	margin-bottom: 40px
}

.tophd.mid1 {
	margin: 0 auto;
	max-width: 65%;
	margin-bottom: 40px
}

.tophd .title {
	font-size: 35px;
	line-height: 45px;
	font-weight: 600;
	color: var(--dark);
	text-transform: capitalize
}

.tophd .title span {
	color: var(--primary)
}

.tophd.white .title {
	color: var(--white)
}

.tophd .subtitle {
	display: inline-block;
	color: var(--primary);
	text-transform: capitalize;
	font-size: 16px;
	line-height: 19px;
	margin: 0 0 12px;
	font-weight: 600
}

.tophd1 {
	display: flex;
	align-items: center;
	justify-content: space-between
}

.tophd1>div {
	width: 80%
}

.tophd .title2 {
	font-size: 32px;
	font-weight: 500
}

.tophd.center p {
	text-align: center
}

.tophd.white p {
	color: var(--white)
}

.dark_sec .tophd .title span {
	color: var(--secondary-light)
}

.bluebg .tophd .title span {
	color: var(--secondary-light)
}

.cir-btn {
	display: inline-flex;
	align-items: center;
	position: relative;
	color: var(--white);
	gap: 5px;
	padding: 12px 20px;
	font-size: 18px
}

.cir-btn:hover {
	color: var(--white)
}

.cir-btn span {
	position: relative;
	z-index: 1
}

.cir-btn:before {
	position: absolute;
	content: "";
	width: 48px;
	height: 48px;
	background: var(--secondary);
	border-radius: 50%;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	animation: circlemove 8s linear infinite
}

@keyframes circlemove {
	0 {
		left: 0
	}

	50% {
		left: calc(100% - 48px)
	}

	100% {
		left: 0
	}
}

.menubtn {
	width: 45px;
	height: 45px;
	background: var(--primary);
	padding: 8px;
	z-index: 124;
	margin-left: 10px;
	border-radius: 5px;
	position: relative;
	display: none;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center
}

.menubtn span {
	display: inline-block;
	background: var(--white);
	width: 100%;
	height: 3px
}

.mobilemenu {
	position: fixed;
	right: -100%;
	height: 100%;
	top: 0;
	background: rgba(0, 0, 0, .5);
	transition: .5s;
	z-index: 124;
	width: 100%;
	display: flex;
	justify-content: flex-end
}

.mobilemenu.active {
	right: 0
}

.cross {
	position: absolute;
	width: 30px;
	height: 30px;
	line-height: 0;
	background: var(--white);
	color: var(--black);
	padding: 5px;
	right: 10px;
	top: 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center
}

.mobilemenu ul {
	padding: 10px;
	background: var(--secondary);
	list-style: none;
	margin: 0;
	height: 100%;
	overflow-x: hidden
}

.mobilemenu ul::-webkit-scrollbar {
	width: 5px
}

.mobilemenu ul::-webkit-scrollbar-track {
	background: var(--secondary)
}

.mobilemenu ul::-webkit-scrollbar-thumb {
	background: var(--secondary)
}

.mobilemenu ul li:before {
	display: none
}

.mobilemenu ul li a {
	display: block;
	margin: 5px 20px;
	color: var(--white);
	border-radius: 25px;
	position: relative;
	text-transform: uppercase;
	font-weight: 600
}

.mobilemenu li a:after {
	display: none
}

.mobilemenu ul.sub-menu {
	display: none;
	background: var(--textColor);
	padding: 15px
}

.mobilemenu ul.submenu {
	display: none;
	background: var(--textColor);
	padding: 25px 20px
}

.mobilemenu ul li.submenu>a {
	position: relative;
	color: var(--white)
}

.mobilemenu ul li.submenu>a:before {
	position: absolute;
	content: "";
	right: 0;
	top: 10px;
	border-width: 2px 2px 0 0;
	border-style: solid;
	border-color: var(--white);
	padding: 3px;
	transform: rotate(135deg)
}

.mobilemenu ul li {
	margin: 0 0 10px
}

.site-header {
	position: fixed;
	width: 100%;
	z-index: 99;
	transition: .5s;
	top: 0
}

.sticky .site-header {
	top: -47px
}

.headeTop {
	padding: 10px;
	background: var(--secondary)
}

.topheader {
	display: flex;
	align-items: center;
	justify-content: space-between
}

.headerToplist {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 30px
}

.headerToplist a {
	display: inline-block;
	vertical-align: middle;
	line-height: 25px;
	font-size: 16px;
	font-weight: 300;
	color: #e6eeff
}

.headerToplist a i {
	display: inline-block;
	color: #b3ccff;
	margin-right: 3px
}

.headerToplist a span {
	display: inline-block
}

.social {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px
}

.social li a {
	font-size: 18px;
	color: var(--white)
}

.btmhd {
	background: var(--textColor);
	padding: 8px 10px
}

.headerBottom {
	display: flex;
	align-items: center;
	justify-content: space-between
}

.logo img {
	width: 125px
}

.menulist {
	padding: 0 30px;
	border-right: 1px solid #656565
}

.menulist li {
	display: inline-block;
	vertical-align: middle;
	margin-right: 35px;
	position: relative
}

.menulist li.menu-item-has-children:after {
	position: absolute;
	content: "";
	left: calc(100% + 5px);
	top: 11px;
	border-style: solid;
	border-color: #fff;
	border-width: 2px 0 0 2px;
	padding: 3px;
	transform: rotate(225deg)
}

.menulist li:last-child {
	margin-right: 0
}

.menulist li a {
	display: block;
	font-weight: 400;
	color: var(--white) !important;
	padding: 3px 0;
	position: relative;
	font-size: 16px
}

.menulist li.haschild>a:after {
	position: relative;
	display: inline-block;
	font-family: bootstrap-icons !important;
	content: "\F282";
	vertical-align: middle;
	font-size: 14px;
	opacity: 1;
	font-weight: bold;
	margin-left: 5px
}

.menulist li a:hover:before,
.menulist li.active a:before {
	width: 40px
}

.menulist li a:hover {
	color: var(--primary)
}

.menulist li .sub-menu {
	width: 235px;
	position: absolute;
	padding: 15px;
	background: var(--white);
	left: 0;
	top: 100%;
	transform: rotateX(90deg);
	transform-origin: center 0;
	transition: .5s
}

.menulist li:hover .sub-menu {
	transform: rotateX(0)
}

.menulist li .sub-menu li {
	border-bottom: 1px dashed var(--primary);
	display: block;
	margin: 0
}

.menulist li .sub-menu li:last-child {
	border-bottom: 0
}

.menulist li .sub-menu li a {
	padding: 5px 10px;
	color: var(--textColor) !important
}

.menulist li .sub-menu li a:hover {
	background: var(--primary);
	color: var(--white) !important
}

.menulist li .sub-menu li a:before {
	display: none
}

.headerAccountList {
	margin-left: 20px;
	display: flex;
	gap: 15px
}

.headerAccountList li:last-child {
	margin-right: 0
}

.headerAccountList li a {
	display: block;
	font-size: 20px;
	color: var(--black);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%
}

.headerAccountList li a i {
	font-size: 25px;
	display: inline-block;
	vertical-align: middle
}

.headerAccountList li a.login i {
	margin-right: 5px
}

.headerAccountList li a:hover {
	color: var(--primary)
}

.banner {
	background: url(../images/banner-bg.png) no-repeat 0 bottom;
	background-size: cover;
	padding: 200px 0 100px
}

.bannerHold .row {
	align-items: center
}

.subtitle {
	padding: 8px 15px;
	border-radius: 30px;
	background: var(--light-primary);
	font-size: 14px;
	font-weight: 500;
	color: var(--primary);
	margin-bottom: 20px;
	display: inline-block
}

.bannerLeft .title {
	font-size: 60px;
	font-weight: 800;
	color: var(--dark);
	line-height: 70px;
	margin-bottom: 25px
}

.bannerLeft .title span {
	color: var(--primary)
}

.bannerLeft p {
	font-size: 16px;
	line-height: 25px;
	color: var(--textColor);
	margin-bottom: 25px
}

.btnholder {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 25px
}

.bnrbtn {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px
}

.bnr-text {
	font-size: 15px;
	font-weight: 500;
	color: var(--dark);
	text-transform: uppercase
}

.bannerImg {
	position: relative;
	padding-left: 80px;
	overflow: hidden
}

.bannerImg img {
	position: relative;
	z-index: 2
}

.helpdiv {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 20px
}

.hlp-ico {
	width: 80px;
	height: 80px;
	min-width: 80px;
	border-radius: 15px;
	background: var(--light-primary);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center
}

.hlp-ico::before {
	position: absolute;
	content: "";
	left: 50%;
	top: 0;
	transform: translate(-50%, 0);
	width: 20px;
	height: 2px;
	border-radius: 50px;
	background: var(--primary)
}

.hlp-ico img {
	width: 38px;
	transform: rotatey(0);
	transition: .5s
}

.helpdiv:hover .hlp-ico img {
	transform: rotatey(360deg)
}

.helptext h3 {
	font-size: 23px;
	font-weight: 600;
	margin-bottom: 5px;
	line-height: 33px;
	transition: .5s
}

.helpdiv:hover .helptext h3 {
	color: var(--primary)
}

.help_top {
	padding-bottom: 80px;
	border-bottom: 1px solid #ccc
}

.home-about {
	position: relative
}

.shape1 {
	position: absolute;
	right: 0;
	bottom: 5px
}

.about-left {
	padding: 0 40px 100px;
	position: relative
}

.ab-main {
	position: relative;
	z-index: 2
}

.ab-main img {
	border-radius: 100px 0 0 0
}

.ab-shape1 {
	position: absolute;
	right: 30px;
	top: -55px;
	z-index: 1
}

.ab-shape2 {
	position: absolute;
	left: -50px;
	bottom: 30%;
	z-index: 1
}

.ab-count {
	text-align: left;
	padding: 30px 30px 50px 40px;
	border-radius: 0 0 0 70px;
	background: var(--secondary);
	position: absolute;
	z-index: 3;
	left: 0;
	bottom: 30px;
	width: 505px
}

.ab-count h2 {
	font-size: 60px;
	line-height: 70px;
	color: var(--white);
	font-weight: 600
}

.ab-count span {
	font-size: 20px;
	font-weight: 300;
	color: var(--white);
	display: block
}

.ab-author {
	position: absolute;
	right: 0;
	bottom: 50px;
	border-radius: 0 50px 0 0;
	overflow: hidden;
	border: 8px solid var(--white);
	z-index: 4
}

.about-right h3 {
	font-size: 23px;
	font-weight: 600
}

.ab-list {
	column-count: 2
}

.ab-list li {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 8px;
	margin-bottom: 10px
}

.ab-list li div:first-child {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	min-width: 25px;
	margin-top: 5px;
	height: 25px;
	border-radius: 50%;
	background: var(--primary)
}

.ab-list li div i {
	display: block;
	font-size: 17px;
	color: var(--white);
	line-height: 15px
}

.ab-list p {
	margin-bottom: 0;
	font-size: 16px
}

.ab-span {
	margin: 20px 0 10px;
	display: block;
	font-size: 18px;
	color: var(--textColor)
}

.industry_sec .title2 {
	text-align: center
}

.ad-front {
	border-radius: 10px;
	border: 8px solid var(--white);
	overflow: hidden;
	position: relative
}

.ad-img {
	position: relative;
	width: 100%
}

.ad-img::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(to top, var(--secondary), transparent);
	z-index: 1
}

.ad-head {
	position: absolute;
	left: 50%;
	bottom: 35px;
	transform: translate(-50%, 0);
	padding: 0 30px 40px;
	z-index: 2;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-direction: column
}

.ad-head figure {
	width: 70px;
	height: 70px;
	background: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center
}

.ad-head figure img {
	width: 42px
}

.ad-head h3 {
	font-size: 30px;
	line-height: 40px;
	font-weight: 500;
	color: var(--white);
	margin: 0;
	text-align: center
}

.advantage-part {
	position: relative;
	box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .1)
}

.ad-back {
	position: absolute;
	left: 0;
	top: 0;
	background: #14141a;
	border: 8px solid var(--primary);
	text-align: center;
	border-radius: 10px;
	width: 100%;
	height: 100%;
	padding: 80px 25px;
	z-index: 3;
	opacity: 1;
	transition: .5s
}

.ad-back h3 {
	font-size: 30px;
	line-height: 40px;
	font-weight: 500;
	color: var(--white);
	margin: 0 0 10px
}

.ad-back p {
	color: var(--white);
	margin-bottom: 10px;
	font-weight: 300
}

.ad-back p a {
	color: var(--white);
	text-decoration: underline
}

.ad-back figure {
	position: absolute;
	right: 0;
	bottom: -50px;
	opacity: .4
}

.advantage-part,
.advantage-part>* {
	transition: 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55)
}

.advantage-part {
	-webkit-transform-style: preserve-3d;
	-webkit-perspective: 1000px;
	position: relative
}

.ad-front {
	backface-visibility: hidden;
	transform: rotateY(0);
	transform-style: preserve-3d;
	perspective: 1000px
}

.ad-front>div,
.ad-back>div {
	transform-style: preserve-3d;
	position: relative;
	z-index: 1
}

.ad-front>div {
	transform: translateZ(95px) scale(0.81)
}

.ad-back>div {
	transform: translateZ(95px) scale(0.81);
	backface-visibility: hidden;
	height: 100%
}

.ad-back {
	backface-visibility: hidden;
	transform: rotateY(180deg);
	transform-style: preserve-3d;
	perspective: 1000px
}

.advantage-part:hover .ad-front {
	transform: rotateY(-180deg)
}

.advantage-part:hover .ad-back {
	transform: rotateY(0)
}

.advantage-bottom {
	margin-top: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px
}

.advantage-bottom p {
	color: var(--white);
	font-weight: 300;
	margin: 0;
	position: relative;
	padding-right: 60px;
	font-size: 18px
}

.advantage-bottom p::before {
	position: absolute;
	content: "";
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
	width: 45px;
	height: 2px;
	background: var(--primary)
}

.meet {
	background: url(../images/meetbg.png) no-repeat 0 0;
	background-size: cover
}

.meet-img {
	width: 550px;
	height: 550px;
	border-radius: 50%;
	background: var(--secondary);
	position: relative;
	z-index: 2
}

.meet-img img {
	height: 100%;
	object-fit: contain;
	border-radius: 50%
}

.meet-left {
	position: relative
}

.meet-shape1 {
	position: absolute;
	left: 0;
	bottom: -100px;
	z-index: 1
}

.meet-shape2 {
	position: absolute;
	left: -100px;
	top: 0
}

.sec-head span {
	font-size: 20px;
	font-weight: 400;
	color: var(--black);
	display: block
}

.sec-head h2 {
	font-family: var(--font1);
	font-size: 90px;
	font-weight: 400;
	color: var(--primary);
	margin-bottom: 0;
	line-height: 90px
}

.sec-head p {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	color: var(--secondary)
}

.sec-head {
	margin-bottom: 30px
}

.meet-right .ab-list {
	column-count: 1;
	margin-bottom: 10px
}

.meet-btm {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 30px
}

.meet-btm ul {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 30px
}

.meet-btm ul li img {
	width: 45px
}

.meet-count {
	margin-top: 80px
}

.meetcount-part {
	padding: 20px 20px 20px 30px;
	border-radius: 10px;
	border: 1px solid #d4dced;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 30px
}

.meetcount-part figure {
	width: 50px;
	min-width: 50px;
	position: relative
}

.meetcount-part figure img {
	position: relative;
	z-index: 2
}

.meetcount-part figure::before {
	position: absolute;
	content: "";
	left: -10px;
	top: -10px;
	width: 40px;
	height: 40px;
	background: var(--light-primary);
	border-radius: 50%;
	z-index: 1
}

.meetcount-num {
	position: relative;
	padding-left: 20px
}

.meetcount-num::before {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	width: 2px;
	height: 50%;
	background: var(--light-primary);
	border-radius: 50px
}

.meetcount-num .odometer {
	font-size: 50px;
	font-weight: 600;
	color: #00194c;
	display: inline-block;
	line-height: 50px
}

.meetcount-num span {
	font-size: 50px;
	font-weight: 600;
	color: #00194c;
	display: inline-block;
	line-height: 50px
}

.meetcount-num p {
	font-size: 16px;
	font-weight: 400;
	color: #00194c;
	margin: 0
}

.cta {
	background: url(../images/ctabg.png) no-repeat 0 0;
	background-size: cover;
	border-radius: 10px;
	overflow: hidden;
	padding: 60px 40px
}

.cta-con {
	display: flex;
	align-items: center;
	justify-content: flex-start
}

.cta-con figure {
	width: 50px;
	min-width: 50px
}

.cta-contact {
	margin-left: 20px
}

.cta-contact span {
	display: block;
	font-size: 16px;
	color: var(--white);
	font-weight: 400;
	margin-bottom: 10px
}

.cta-con h2 {
	font-size: 30px;
	line-height: 40px;
	font-weight: 500;
	color: var(--white);
	margin: 0;
	margin-left: 20px;
	padding-left: 20px;
	border-left: 2px solid var(--primary)
}

.cta-contact a {
	font-size: 32px;
	font-weight: 400;
	color: var(--white);
	white-space: nowrap
}

.cta .row {
	align-items: center
}

.podcast-box {
	padding: 25px;
	background: var(--white);
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
	box-shadow: 0 0 14px 0 rgba(0, 0, 0, .1);
	transition: .5s;
	border: 1px solid var(--white)
}

.podcast-box:hover {
	border: 1px solid var(--primary)
}

.podcast-box figure {
	min-width: 170px;
	width: 170px
}

.podcast-con h3 {
	font-size: 20px;
	font-weight: 600;
	line-height: 29px;
	margin-bottom: 15px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical
}

.podcast-slide.owl-carousel .owl-stage-outer {
	padding: 15px 15px 15px 10px;
	width: 102%
}

.podcast-sec {
	background: url(../images/podcast-bg.png) repeat center center;
	background-size: contain
}

.podcast-slide.owl-carousel .owl-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 15px
}

.podcast-slide.owl-carousel .owl-dots .owl-dot span {
	width: 5px;
	height: 5px;
	display: block;
	border-radius: 50px;
	background: var(--secondary);
	opacity: .5;
	transition: .5s
}

.podcast-slide.owl-carousel .owl-dots .owl-dot.active span {
	width: 30px;
	opacity: 1
}

.testislide-main {
	padding: 0 50px
}

.testicont p {
	margin-bottom: 0;
	color: var(--blue);
	font-weight: 300
}

.testicont h3 {
	color: var(--blue);
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 0;
	line-height: 25px
}

.testiclient {
	display: flex;
	gap: 15px;
	align-items: center
}

.testislider .slider p {
	text-align: left
}

.testistar {
	margin-bottom: 10px
}

.testistar i {
	color: #ffb930
}

.testislider .slider {
	background: var(--white);
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.10);
	position: relative;
	transition: .5s
}

.testipara {
	font-size: 16px;
	color: var(--blue);
	line-height: 26px;
	font-weight: 300;
	margin-bottom: 10px
}

.testimonials .tophd {
	width: 40%;
	margin: 0 auto;
	margin-bottom: 40px
}

.testicont {
	padding-left: 18px;
	position: relative
}

.testicont::before {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	width: 3px;
	height: 50%;
	border-radius: 50px;
	background: var(--primary)
}

.testislider.owl-carousel .owl-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 112%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%)
}

.testislider.owl-carousel .owl-nav button {
	width: 50px;
	height: 50px;
	background: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%
}

.testislider.owl-carousel .owl-nav button span {
	font-size: 25px;
	color: var(--white)
}

.podcast-sec .row {
	align-items: center
}

.head-btn {
	display: flex;
	justify-content: end
}

.blog_sec {
	background: url(../images/blogbg.png) no-repeat 0 0;
	background-size: cover
}

.blogdiv {
	background: var(--white);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0);
	transition: .5s
}

.blogdiv:hover {
	box-shadow: 0 0 14px 0 rgba(0, 0, 0, .1)
}

.blogimg {
	position: relative
}

.blogimg span {
	position: absolute;
	padding: 8px 15px;
	background: var(--primary);
	left: 1px;
	bottom: 1px;
	color: var(--white);
	display: block;
	font-size: 14px;
	font-weight: 500
}

.blogcontent {
	border-top: 0;
	border-radius: 0 0 10px 10px;
	padding: 30px 25px
}

.blogdiv {
	border: 1px solid #e7e7e7
}

.blogcontent h3 {
	font-size: 22px;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 10px;
	transition: .5s
}

.blogcontent h3 a {
	color: inherit
}

.blogdiv:hover .blogcontent h3 {
	color: var(--primary)
}

.blogbtm {
	display: flex;
	align-items: center;
	justify-content: space-between
}

.blogbtm figure img {
	width: 40px;
	height: 40px;
	object-fit: cover;
	border-radius: 50%
}

.blogbtm li span {
	font-size: 16px;
	font-weight: 400;
	display: inline-block;
	color: var(--blue);
	margin-left: 5px
}

.blogbtm li i {
	display: inline-block;
	color: var(--primary)
}

.testiimg img {
	width: 60px !important;
	height: 60px;
	border-radius: 50%
}

.site-footer {
	background: var(--textColor);
	color: var(--white);
	padding: 40px 0 0 0
}

.footerTop a {
	color: var(--white)
}

.footerTop a:hover {
	color: var(--primary)
}

.footerTop {
	padding: 40px 0
}

.footerTopHold {
	display: flex;
	justify-content: space-between;
	gap: 40px
}

.footerDiv {
	width: 20%
}

.footerDiv:first-child {
	width: 22%
}

.footerDiv:last-child {
	width: 30%
}

.footerDiv:nth-child(2) {
	padding-left: 55px
}

.footerDiv p {
	margin-bottom: 0
}

.footerDiv .logo1 {
	display: inline-block;
	width: 185px;
	margin: 0 0 15px
}

.footerDiv h2 {
	font-size: 22px;
	line-height: 25px;
	font-weight: 600;
	margin: 0 0 24px;
	color: var(--white);
	position: relative
}

.footerDiv h2::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: -10px;
	width: 30px;
	height: 2px;
	background: var(--primary)
}

.footerDiv ul li {
	margin: 0 0 12px
}

.footerDiv ul.footerlist1 li {
	margin: 0 0 24px
}

.footerDiv ul.footerlist1 li a {
	display: flex;
	gap: 10px
}

.footerDiv ul.footerlist1 li .ico {
	width: 18px;
	display: inline-block
}

.footerDiv:last-child ul.footerlist1 li .ico {
	width: 24px
}

.footerDiv:last-child p {
	margin-bottom: 20px
}

.footerDiv form {
	position: relative;
	margin-bottom: 20px
}

.footerDiv form input {
	width: 100%;
	border-radius: 5px;
	border: 0;
	outline: 0;
	box-shadow: none;
	background: var(--white);
	padding: 10px
}

.footerDiv form button {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	border: 0;
	border-radius: 2px;
	background: var(--primary);
	color: var(--white);
	font-size: 15px;
	text-align: center;
	padding: 0 20px
}

.footericon {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px
}

.footericon span {
	display: inline-block;
	font-size: 15px;
	font-weight: 300;
	color: var(--white)
}

.foot-social {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px
}

.foot-social li img {
	width: 20px;
	height: 20px;
	object-fit: contain
}

.footerDiv .foot-social li {
	margin-bottom: 0
}

.footerBottom {
	border-top: 1px solid rgba(255, 255, 255, .6);
	padding: 25px 0
}

.footerBottomHold p {
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	color: var(--white)
}

.footerBottomHold p a {
	color: var(--white)
}

.inner-banner {
	position: relative;
	margin-top: 140px;
	padding: 0;
	background: transparent
}

.inner-banner img {
	width: 100%;
	height: 350px;
	object-fit: cover
}

.inner-banner-content {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 100%
}

.inner-banner-content h1 {
	color: var(--white);
	font-size: 64px;
	line-height: 70px;
	font-weight: bold
}

.breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center
}

.breadcrumb li {
	position: relative;
	display: flex
}

.breadcrumb li:after {
	position: relative;
	content: "/";
	display: inline-flex;
	align-items: center;
	color: var(--white);
	margin: 0 10px
}

.breadcrumb li a {
	display: block;
	color: var(--white)
}

.breadcrumb li:last-child:after {
	display: none
}

.breadcrumb li.active a {
	color: var(--primary)
}

.about_sec1 .row {
	flex-direction: row-reverse
}

.aboutcontent1 h3 {
	font-size: 30px;
	line-height: 38px;
	color: #454857;
	margin: 0 0 20px
}

.ab-list1 {
	column-count: 1
}

.ab-list1 li p {
	font-weight: 500;
	font-size: 18px
}

.ab-list1 li .ico1 {
	min-width: 50px;
	width: 50px;
	height: 50px;
	background: #fcf1ed;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px
}

.ab-list1 li .ico1 img {
	width: 33px
}

.ab-list1 li .ico1:before {
	content: "";
	position: absolute;
	width: 3px;
	height: 24px;
	background: var(--primary);
	left: 0;
	top: 50%;
	transform: translate(0, -50%)
}

.about_sec1 .aboutimg1 {
	padding-left: 100px
}

.aboutimg1 {
	position: relative
}

.aboutimg1:before {
	width: 100px;
	height: 100px;
	background: url(../images/sm-shape1.png) no-repeat 0 0;
	background-size: 100px;
	left: 10px;
	bottom: -20px;
	position: absolute;
	content: ""
}

.aboutimg1:after {
	width: 100px;
	height: 100px;
	background: url(../images/sm-shape2.png) no-repeat 0 0;
	background-size: 100px;
	right: -20px;
	top: -20px;
	position: absolute;
	content: ""
}

.aboutimg1>img {
	position: relative;
	z-index: 1
}

.dark_sec {
	background: #19586d;
	color: #fff
}

.dark_sec .ab-span,
.dark_sec h2.title {
	color: #fff
}

.dark_sec .ab-list {
	column-count: 1
}

.team_sec.dark_sec {
	background: #407f94
}

.teamHolder {
	display: grid;
	gap: 50px;
	grid-template-columns: repeat(3, 1fr)
}

.teamcol {
	padding-left: 20px;
	overflow: hidden;
	position: relative
}

.teamcoldiv {
	background: var(--white);
	padding: 30px;
	border-radius: 25px
}

.teampara {
	position: absolute;
	background: var(--primary);
	padding: 40px 25px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 25px;
	transform: translate(-100%, 0);
	transition: .5s
}

.teamcol:hover .teampara {
	transform: translate(0, 0)
}

.teampara h3 {
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-stroke: 2px rgba(255, 255, 255, .4);
	text-stroke: 2px rgba(255, 255, 255, .4);
	font-size: 80px;
	font-weight: bold;
	right: -10px;
	top: -25px;
	line-height: 80px;
	text-transform: uppercase;
	position: absolute
}

.teampara p {
	margin: 0
}

.teampara:before {
	position: absolute;
	content: "";
	left: 25px;
	top: 8px;
	width: 2px;
	height: 32px;
	background: var(--white)
}

.teamimg {
	padding-right: 30px;
	position: relative;
	margin: 0 0 25px
}

.teamimg img {
	width: 100%
}

.teamsocial {
	background: #19586d;
	list-style: none;
	margin: 0;
	padding: 20px 0;
	position: absolute;
	right: -30px;
	top: 50%;
	transform: translate(0, -50%);
	border-radius: 10px 0 0 10px
}

.teamsocial li {
	margin: 0 0 15px
}

.teamsocial li a {
	color: var(--white);
	padding: 10px
}

.teamcontent {
	padding: 20px 40px;
	border-radius: 20px;
	background: var(--primary);
	box-shadow: 0 5px 5px 0 #f1b9a4;
	position: relative;
	left: -45px;
	width: calc(100%+45px)
}

.teamcontent .name {
	font-size: 23px;
	font-weight: 600;
	margin: 0 0 5px;
	display: block
}

.teamcontent .desig {
	font-size: 14px;
	line-height: 22px;
	display: block
}

/* .faq_connect {
	overflow: hidden
} */

.faq_sec {
	padding: 60px 20px
}

.faqpart {
	box-shadow: 0 10px 40px 0 rgba(0, 0, 0, .2);
	margin: 0 0 30px
}

h3.faqhead {
	padding: 20px 40px 20px 20px;
	font-size: 20px;
	line-height: 34px;
	font-weight: 500;
	position: relative
}

h3.faqhead:before {
	position: absolute;
	content: "\F285";
	font-family: bootstrap-icons !important;
	width: 35px;
	height: 35px;
	right: 10px;
	top: 50%;
	transform: translate(0, -50%);
	color: var(--primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 20px
}

h3.faqhead.active:before {
	background: var(--primary);
	color: var(--white);
	content: "\F282";
	font-family: bootstrap-icons !important
}

.faqpara {
	padding: 0 20px 20px;
	display: none
}

.contactHolder {
	background: #407f94;
	padding: 100px 0 100px 40px;
	position: relative
}

.contactHolder:after {
	position: absolute;
	content: "";
	background: #407f94;
	width: 1000px;
	height: 100%;
	left: 100%;
	top: 0
}

.contactHolder h3 {
	color: var(--white);
	margin: 0 0 40px
}

.contactHolder .form-inline {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px
}

.contactHolder input,
.contactHolder textarea,
.contactHolder select {
	width: 100%;
	font-size: 14px;
	line-height: 18px;
	padding: 15px;
	margin: 0 0 20px;
	border: 0;
	border-radius: 4px
}

.contactHolder input[type="submit"] {
	background: var(--primary);
	color: var(--white);
	transition: .5s
}

.contactHolder input[type="submit"]:hover {
	background: #000
}

.contactHolder label {
	color: var(--white);
	display: block;
	margin: 0 0 5px;
	font-size: 15px
}

.lightbg {
	background: #f7f7f7
}

.topheadcenter {
	text-align: center
}

.valueDiv {
	text-align: center;
	padding: 30px 25px;
	border-radius: 15px;
	border: 1px solid var(--white);
	background: var(--white);
	height: 100%;
	transition: .5s
}

.valueDiv:hover {
	background: var(--secondary);
	border: 1px solid var(--primary)
}

.valueDiv .ico {
	width: 80px;
	height: 80px;
	background: #fcf1ed;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	margin: 0 0 30px;
	transition: .5s
}

.valueDiv:hover .ico {
	margin: 0 0 20px;
	background: rgba(255, 255, 255, .2)
}

.valueDiv .ico:before {
	content: "";
	position: absolute;
	width: 24px;
	height: 3px;
	background: var(--primary);
	left: 50%;
	top: 0;
	transform: translate(-50%, 0);
	transition: .5s
}

.valueDiv:hover .ico::before {
	background: var(--white)
}

.valueDiv .ico img {
	width: 45px;
	transition: .5d
}

.valueDiv:hover .ico img {
	filter: brightness(0) invert(1)
}

.valueDiv h3 {
	font-size: 22px;
	margin: 0 0 10px;
	transition: .5s
}

.valueDiv p {
	margin-bottom: 0;
	transition: .5s
}

.valueDiv:hover h3 {
	color: var(--white)
}

.valueDiv:hover p {
	color: var(--white)
}

.about_sec1 {
	padding-bottom: 30px
}

.apporch-sec .ab-count {
	padding: 0;
	border: 8px solid #19586d;
	border-radius: 0 0 0 80px;
	overflow: hidden
}

.apporch-sec .ab-count img {
	border-radius: 0 0 0 70px
}

.ab-pg .meet-left {
	padding: 0 0 80px 50px
}

.ab-pg .meet-img {
	width: auto;
	border-radius: 0 70px 0 0
}

.ab-pg .meet-img img {
	border-radius: 0 70px 0 0
}

.ab-pg .meet-shape2 {
	left: -40px;
	top: -45px
}

.ab-pg .meet-shape1 {
	left: -90px;
	bottom: -110px
}

.meetleft-count {
	padding: 30px;
	background: var(--primary);
	border-radius: 0 50px 0 50px;
	z-index: 2;
	position: absolute;
	left: 0;
	bottom: 0
}

.meetleft-count h2 {
	display: inline-block;
	font-size: 60px;
	line-height: 70px;
	margin: 0;
	color: var(--white)
}

.meetleft-count span {
	display: inline-block;
	font-size: 60px;
	line-height: 70px;
	margin: 0;
	color: var(--white)
}

.meetleft-count p {
	margin: 0;
	font-size: 15px;
	color: var(--white);
	font-weight: 300
}

.ab-pg .meetcount-num span {
	font-size: 18px;
	line-height: 25px
}

.ab-pg .meetcount-part {
	gap: 20px
}

.faq_connect {
	padding-bottom: 0
}

.c-box {
	text-align: center;
	padding: 30px 20px;
	border-radius: 20px;
	border: 1px solid transparent;
	background: var(--white);
	transition: .5s
}

.con-img i {
	font-size: 35px;
	color: var(--primary);
	transition: .5s
}

.c-box:hover .con-img i {
	color: var(--white)
}

.cont-in-img {
	position: relative;
	z-index: 2;
	padding: 0 20px 20px 0
}

.sidebaritem {
	padding: 20px 0 20px 20px;
	margin-bottom: 20px
}

.sidebaritem form {
	position: relative
}

.sidebaritem form input {
	width: 100%;
	border: 1px solid #989898;
	padding: 15px 20px;
	border-radius: 4px;
	outline: 0
}

.sidebaritem form button {
	background: var(--primary);
	position: absolute;
	top: 0;
	right: 0;
	width: 56px;
	height: 100%;
	border: 0;
	border-radius: 0 4px 4px 0
}

.sidebaritem form button a i {
	color: var(--white)
}

.sidebaritem h4 {
	font-size: 22px;
	font-weight: 700;
	color: var(--dark);
	position: relative;
	margin-bottom: 10px;
	padding-bottom: 10px
}

.sidebaritem h4:before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 70px;
	height: 2px;
	background: var(--primary)
}

.post-item {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--text-color)
}

.post-image img {
	width: 90px;
	height: 75px;
	object-fit: cover
}

.post-title span {
	font-size: 16px;
	color: var(--primary)
}

.post-title h6 a {
	color: var(--dark)
}

.post-title h6 {
	font-size: 16px;
	font-weight: 600
}

.all__sidebar-item-post .post-item:last-child {
	margin: 0;
	padding: 0;
	border: 0
}

.all__sidebar-item-solution ul li a {
	color: var(--dark)
}

.all__sidebar-item-solution ul li a span {
	float: right
}

.all__sidebar-item-solution ul li {
	padding: 20px 0;
	border-bottom: 1px solid #c5c5c5
}

.all__sidebar-item-solution ul li:last-child {
	border: 0;
	padding-bottom: 0
}

.all__sidebar-item-tag ul li {
	display: inline-block
}

.all__sidebar-item-tag ul li a {
	transition: .4s;
	border: 1px solid #c5c5c5;
	margin: 5px 3px;
	overflow: hidden;
	padding: 4px 10px 5px 10px;
	display: inline-block;
	font-size: 16px;
	color: var(--dark);
	background-color: transparent;
	border-radius: 4px
}

.all__sidebar-item-tag {
	padding-top: 10px
}

.all__sidebar-item-tag ul li:hover a,
.all__sidebar-item-tag ul li.active a {
	color: var(--white);
	background-color: var(--primary);
	border: 1px solid var(--primary)
}

.all__sidebar-item-post {
	padding-top: 20px
}

.c-box a {
	color: var(--textColor);
	transition: .5s
}

.c-box:hover a {
	color: var(--white)
}

.con-pg {
	padding-bottom: 0
}

.cont-in-img:before {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 90%;
	height: 90%;
	background: var(--primary);
	border-radius: 70px;
	z-index: -1
}

.contact-in-sec .contactHolder {
	padding: 80px 30px
}

.contact-in-sec .contactHolder:after {
	display: none
}

.realright {
	position: relative
}

.impact-shape {
	position: absolute;
	right: 39px;
	bottom: -44px;
	z-index: -1
}

.impactimg,
.impactimg img {
	border-radius: 100px 0 100px 0
}

.tophd h2 span {
	color: var(--primary)
}

.realimpactin .row {
	align-items: center
}

.impactimg img {
	width: auto
}

.work-top {
	display: inline-block;
	background-color: var(--white);
	color: var(--primary);
	left: 50%;
	transform: translate(-50%, 0);
	top: 34px;
	position: relative;
	z-index: 11;
	padding: 4px 30px
}

.work-top p {
	margin-bottom: 0;
	position: relative
}

.work-top:before {
	content: "";
	position: absolute;
	top: 0;
	left: -2px;
	background: url(../images/up-shape.png) no-repeat 0 0;
	width: 40px;
	height: 40px
}

.work-top:after {
	content: "";
	position: absolute;
	top: 0;
	right: -2px;
	background: url(../images/up-shape2.png) no-repeat 0 0;
	width: 40px;
	height: 40px
}

.work-up-sec {
	display: flex;
	justify-content: space-between;
	align-items: flex-end
}

.work-box h3 {
	font-size: 31px;
	font-weight: 600;
	margin: 10px 0;
	color: var(--dark)
}

.work-box p {
	margin-bottom: 0;
	color: var(--text-color)
}

.headingtext {
	font-size: 60px;
	line-height: 100%;
	-webkit-text-stroke: 1px var(--text-color);
	color: transparent;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 700;
	transform: rotate(270deg);
	white-space: nowrap;
	position: relative;
	left: 0;
	top: 100%
}

.work-num h5 {
	font-size: 30px;
	line-height: 100%;
	-webkit-text-stroke: 1px var(--secondary);
	color: transparent;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 900;
	position: relative;
	padding-bottom: 5px
}

.work-num h5:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 2px;
	background: #d9d9d9;
	z-index: 1
}

.work-num h5:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: .5s;
	z-index: 2
}

.work-box:hover .work-num h5:after {
	width: 100px
}

.work-box {
	position: relative;
	padding: 50px;
	transition: .5s;
	background: var(--white)
}

.work-box:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	background: var(--primary);
	height: 0;
	width: 1px;
	transition: .5s
}

.work-box:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary);
	width: 0;
	height: 1px;
	transition: .5s
}

.pro-box {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: .5s
}

.pro-box:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	background: var(--primary);
	height: 0;
	width: 2px;
	transition: .5s
}

.pro-box:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	background: var(--primary);
	width: 0;
	height: 2px;
	transition: .5s
}

.work-box:hover:before {
	height: 100%
}

.work-box:hover:after {
	width: 100%
}

.work-box:hover .pro-box:before {
	height: 100%
}

.work-box:hover .pro-box:after {
	width: 100%
}

.process-btn {
	text-align: right;
	margin-top: 40px;
	position: relative
}

.process-btn:before {
	position: absolute;
	content: "";
	top: 50%;
	right: 0;
	height: 2px;
	width: calc(100% - 181px);
	background: #d9d9d9;
	transform: translate(0, -50%);
	z-index: 1
}

.process-btn .cir-btn {
	z-index: 2;
	background: var(--white);
	position: relative;
	color: var(--dark)
}

.process-btn .cir-btn:before {
	background: #65e3e0
}

.approach .tophd h2 span {
	color: #65e3e0
}

.approach-in {
	position: relative
}

.app-shape {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
}

ul.process-box {
	display: flex;
	column-gap: 32px;
	z-index: 1;
	position: relative
}

ul.process-box li {
	width: 25%
}

ul.process-box li:nth-child(1) {
	margin-top: 79px
}

ul.process-box li:nth-child(2) {
	margin-top: 40px
}

ul.process-box li:nth-child(3) {
	margin-top: -10px
}

ul.process-box li:nth-child(4) {
	margin-top: -100px
}

.process-box-cnt {
	display: flex;
	margin-bottom: 25px;
	justify-content: center
}

.pro-icon {
	position: relative;
	z-index: 1;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center
}

.pro-icon:after {
	position: absolute;
	content: "";
	left: -17px;
	width: 60px;
	height: 60px;
	background: var(--primary);
	bottom: -19px;
	border-radius: 100px;
	z-index: -1;
	transition: .5s
}

ul.process-box li:hover .pro-icon:after {
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s
}

.approach-cont {
	text-align: center
}

.approach-cont h3 {
	color: var(--white);
	font-size: 21px;
	font-weight: 500;
	margin-top: 40px;
	padding: 0 25px
}

.app-shape img {
	width: auto
}

.up-flow {
	padding: 40px;
	background: var(--primary);
	border-radius: 30px
}

.work-top-cont h3 {
	color: var(--white);
	font-size: 32px;
	font-weight: 600
}

.work-top-cont h4 {
	color: var(--white);
	margin-bottom: 0;
	font-weight: 400;
	font-size: 23px
}

.work-mid {
	background: #f1f1f1;
	padding: 30px;
	margin-top: -29px;
	z-index: -1;
	position: relative;
	padding-top: 60px;
	border-radius: 0 0 30px 30px
}

.work-mid ul li {
	display: flex;
	gap: 10px;
	align-items: center
}

.work-bottom {
	padding: 30px;
	border-radius: 0 0 30px 30px;
	box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.10);
	z-index: -2;
	position: relative;
	padding-top: 60px;
	margin-top: -29px
}

.work-bottom h3 {
	font-size: 20px;
	font-weight: 600
}

.work-bottom p {
	margin-bottom: 0
}

.workflowbox {
	height: 100%
}

.work-bottom p a {
	color: var(--primary)
}

.content-ch .ab-shape1 {
	top: auto;
	bottom: 75px;
	right: 50px
}

.content-ch .ab-main img {
	border-radius: 100px 0 100px 0
}

.content-ch .ab-shape2 {
	left: 15px;
	top: 15px;
	bottom: auto
}

.content-ch .about-right p {
	color: var(--white)
}

.sec-cta .cta-con h3 {
	font-size: 26px;
	font-weight: 400;
	line-height: 35px;
	color: var(--white)
}

.sec-cta .sec-btn {
	display: flex;
	justify-content: flex-end
}

.effi-left {
	padding-left: 50px;
	position: relative
}

.effi-main {
	position: relative;
	z-index: 2
}

.effi-main img {
	border-radius: 20px
}

.con-effi .row {
	align-items: center
}

.effi-dot {
	position: absolute;
	left: -20px;
	bottom: 0;
	z-index: 1
}

.pro-icon img {
	width: 65px;
	height: 65px
}

.ai-intre .ab-shape2 {
	bottom: auto;
	top: -10px;
	left: -10px
}

.ai-intre .ab-shape1 {
	right: 30px;
	bottom: 35px;
	top: auto
}

.ai-list li {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 15px;
	margin-bottom: 20px
}

.ai-list li .ico1 {
	min-width: 70px
}

.ai-list li h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 8px
}

.ai-list li p {
	margin: 0;
	font-size: 15px;
	color: var(--textColor);
	line-height: 25px;
	font-weight: 400
}

.workflow-btm {
	margin-top: 50px;
	text-align: center
}

.workflow-btm h3 {
	font-size: 30px;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 20px
}

.effi-un .about-left {
	padding: 0 80px 0
}

.FAQ .tophd.mid {
	max-width: 80%
}

.workflow-btm span.note {
	display: block;
	font-size: 18px;
	font-weight: 400;
	color: var(--dark)
}

.seccta-con h2 {
	font-size: 28px;
	font-weight: 600;
	color: var(--white)
}

.seccta-con p {
	color: var(--white);
	margin: 0
}

.faq .ab-main img {
	border-radius: 0 100px 0 100px
}

.faq .ab-shape2 {
	left: 20px;
	bottom: 20px
}

.faq-new {
	padding-bottom: 80px
}

.contactHolder {
	padding: 50px 40px
}

.contactHolder::after {
	display: none
}

.faq-new .row {
	align-items: center
}

.about-left.faq {
	padding-bottom: 0
}

.rw-work .row {
	align-items: center
}

.rw-work figure img {
	border-radius: 30px
}

.work-list li p {
	font-size: 14px;
	font-weight: 600
}

.FAQ .faq_sec {
	padding: 0
}

.FAQ {
	margin-bottom: 60px
}

.short-hd {
	font-size: 20px;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 30px;
	text-align: center
}

.workshop-pg .valueDiv h3 {
	font-size: 17px;
	font-weight: 600;
	margin: 0
}

.note-text {
	text-align: center;
	margin-top: 30px;
	display: block
}

.core .ai-list li {
	align-items: center
}

.core .ai-list li h3 {
	margin: 0;
	font-size: 17px
}

.blog-main .row {
	row-gap: 25px
}

@keyframes bannercirclemv {
	0 {
		transform: rotate(0)
	}

	100% {
		transform: rotate(360deg)
	}
}

@keyframes circlemv1 {
	0 {
		transform: rotate(0)
	}

	50% {
		transform: rotate(45deg)
	}

	100% {
		transform: rotate(0)
	}
}

@keyframes sqmv1 {
	0 {
		opacity: 1;
		transform: translate(0, 0)
	}

	50% {
		opacity: .2;
		transform: translate(0, -10px)
	}

	100% {
		opacity: 1;
		transform: translate(0, 0)
	}
}

.animated-heading span {
	display: inline-block;
	opacity: 0;
	transform: translateY(20px);
	transition: all .3s ease
}

.animated-heading span.show {
	opacity: 1;
	transform: translateY(0)
}

/* .bannerLeft .subtitle {
	transition: all .3s ease-in-out .2s;
	transform: translate(0, -50px);
	opacity: 0
}

.bannerLeft .title {
	transition: all .3s ease-in-out .7s;
	transform: translate(-100px, 0);
	opacity: 0
} */

/* .bannerLeft p {
	transition: all .3s ease-in-out 1.2s;
	transform: translate(100px, 0);
	opacity: 0
} */

/* .bannerLeft .btnholder {
	transition: all .3s ease-in-out 1.7s;
	transform: translate(0, 50px);
	opacity: 0
} */

.in-view .bannerLeft .subtitle {
	opacity: 1;
	transform: translate(0, 0)
}

.in-view .bannerLeft .title {
	opacity: 1;
	transform: translate(0, 0)
}

.in-view .bannerLeft p {
	opacity: 1;
	transform: translate(0, 0)
}

.in-view .bannerLeft .btnholder {
	opacity: 1;
	transform: translate(0, 0)
}
.col.fadeInUp:nth-child(2) {
	    animation-duration: 1.1s;
}
.col.fadeInUp:nth-child(3) {
	    animation-duration: 1.3s;
}
/* .col:nth-child(1) .fadeinup {
	transition: all .3s ease-in-out .5s
}

.col:nth-child(2) .fadeinup {
	transition: all .3s ease-in-out 1s
}

.col:nth-child(3) .fadeinup {
	transition: all .3s ease-in-out 1.5s
}

.col:nth-child(4) .fadeinup {
	transition: all .3s ease-in-out 2s
} */

/*  .fadeinup {
	opacity: 0;
	transform: translate(0, 100px)
}  */

.in-view .fadeinup {
	opacity: 1;
	transform: translate(0, 0)
}

/* .fadeinleft {
	opacity: 0;
	transform: translate(-100px, 0)
}  */

.in-view .fadeinleft {
	opacity: 1;
	transform: translate(0, 0)
}

/* .fadeinright {
	opacity: 0;
	transform: translate(100px, 0)
} */

/* .in-view .fadeinright {
	opacity: 1;
	transform: translate(0, 0)
} */

/* .ab-main {
	transition: all .3s ease-in-out .5s
}

.ab-author {
	transition: all .3s ease-in-out 1s
}

.faq_sec {
	transition: all .3s ease-in-out .5s
} */
/* 
.contactHolder,
.real-left,
.realright,
.effi-left,
.effi-right {
	transition: all .3s ease-in-out 1s
} */

/* .ab-count.fadeinup {
	transition: all .3s ease-in-out 1.5s
}
 */
.col:nth-child(1).fadeinup {
	transition: all .3s ease-in-out .5s
}

.col:nth-child(2).fadeinup {
	transition: all .3s ease-in-out 1s
}

.col:nth-child(3).fadeinup {
	transition: all .3s ease-in-out 1.5s
}

.col:nth-child(4).fadeinup {
	transition: all .3s ease-in-out 2s
}

.blog-details-main h3 {
	font-size: 32px;
	color: var(--dark);
	font-weight: 700
}

.blogd-date {
	margin-top: 20px;
	margin-bottom: 40px
}

.blogd-date li span img {
	width: auto
}

.blogd-date li {
	color: var(--dark);
	font-weight: 700
}

.blogd-date li span {
	font-size: 18px;
	margin-right: 10px;
	font-weight: 600
}

.blogdetailimage1 img,
.blogdetailimage1,
.blogdimg2 img,
.blogdimg2 {
	border-radius: 8px
}

.blogdcontent h4 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 20px
}

.blogdcontent {
	margin-top: 40px
}

.blogdetailimage2 p {
	color: var(--dark);
	font-weight: 600;
	padding-left: 10px;
	border-left: 2px solid var(--dark);
	font-size: 18px
}

.blogdetailimage2 {
	margin-top: 40px
}

.blogdimg2 {
	margin-bottom: 10px
}

.blog-bold-text p {
	color: var(--secondary);
	font-weight: 600;
	font-size: 20px
}

.blog-bold-text {
	margin: 40px 0
}

.highlight-text {
	padding: 30px;
	background-color: #fdf6f9;
	border-left: 2px solid var(--secondary);
	border-radius: 4px;
	margin-bottom: 20px;
	margin: 40px 0
}

.highlight-text p {
	font-style: italic;
	margin-bottom: 0;
	font-size: 20px;
	color: var(--secondary);
	line-height: 28px
}

.post-item {
	border-bottom: 1px solid #c5c5c5;
	margin-bottom: 20px;
	padding-bottom: 20px
}

.blogdbot {
	display: flex;
	justify-content: space-between;
	align-items: center
}

.blogdbot .contsocial ul li {
	width: 45px
}

.blogdbot .right-sidebar-tags ul li a {
	background: #f4f5f6;
	border: 0
}

.blogdbot .right-sidebar-tags ul li:hover a {
	color: var(--secondary)
}

.blogdbot .social-icons {
	margin-bottom: 0
}

.clientblog {
	display: flex;
	gap: 20px;
	align-items: center
}

.blogdbot .right-sidebar-tags {
	margin-top: 0
}

.blogdbot {
	padding: 30px 0 50px 0;
	border-bottom: 1px solid #cfcfcf;
	margin-bottom: 50px
}

.cname {
	font-size: 20px;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 10px
}

.blogdbot .bansocial ul li a i {
	color: var(--white);
	font-size: 20px
}

.blogdbot .bansocial ul li a svg {
	color: var(--white);
	font-size: 20px
}

.blogdbot .bansocial ul li {
	background: var(--primary);
	width: 45px;
	height: 45px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center
}

.right-sidebar-tags ul li {
	display: inline-block;
	transition: .5s;
	margin-bottom: 0
}

.blogdbot .right-sidebar-tags ul li a {
	background: #f4f5f6;
	border: 0;
	margin: 1px 3px;
	overflow: hidden;
	padding: 4px 9px;
	display: inline-block;
	font-weight: 500;
	font-size: 15px;
	line-height: 25px;
	color: var(--black);
	border-radius: 4px
}

.clientimg,
.clientimg img {
	border-radius: 50%
}

.cdes {
	margin-bottom: 0
}

.ab-main {
	width: 100%
}

.industrySlider.owl-carousel .owl-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 103%;
	pointer-events: none
}

.industrySlider.owl-carousel .owl-nav button {
	width: 35px;
	height: 35px;
	background: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s;
	pointer-events: visible
}

.industrySlider.owl-carousel .owl-nav button:hover {
	background: var(--textColor)
}

.industrySlider.owl-carousel .owl-nav button span {
	color: var(--white);
	display: block;
	font-size: 20px;
	line-height: 11px
}

.podcast-slide.owl-carousel .owl-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 103%;
	pointer-events: none
}

.podcast-slide.owl-carousel .owl-nav button {
	width: 35px;
	height: 35px;
	background: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s;
	pointer-events: visible
}

.podcast-slide.owl-carousel .owl-nav button:hover {
	background: var(--textColor)
}

.podcast-slide.owl-carousel .owl-nav button span {
	color: var(--white);
	display: block;
	font-size: 20px;
	line-height: 11px
}

.industrySlider2.owl-carousel .owl-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 103%;
	pointer-events: none
}

.industrySlider2.owl-carousel .owl-nav button {
	width: 35px;
	height: 35px;
	background: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s;
	pointer-events: visible
}

.industrySlider2.owl-carousel .owl-nav button:hover {
	background: var(--textColor)
}

.industrySlider2.owl-carousel .owl-nav button span {
	color: var(--white);
	display: block;
	font-size: 20px;
	line-height: 11px
}

.meet-shape2,
.aboutimg1::before,
.aboutimg1::after,
.ab-shape1,
.ab-shape2 {
	display: none
}

.ab-main img {
	height: 555px;
	object-fit: cover
}

.ab-author img {
	width: 250px;
	height: 260px;
	object-fit: cover
}

.blogimg img {
	height: 295px;
	object-fit: cover
}

.aboutimg1 img {
	height: 515px;
	object-fit: cover;
	border-radius: 0 90px 0 0
}

.ab-count img {
	height: 200px;
	object-fit: cover
}

.teamimg img {
	height: 288px;
	object-fit: cover
}

.impactimg img {
	height: 385px;
	object-fit: cover
}

.effi-main img {
	height: 446px;
	object-fit: cover
}

.rw-work figure img {
	height: 441px;
	object-fit: cover
}

.cont-in-img img {
	height: 800px;
	object-fit: cover;
	border-radius: 50px
}

.post-categories a {
	color: var(--white)
}

.pagination .nav-links {
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px
}

.page-numbers {
	padding: 7px 15px;
	border: 1px solid var(--textColor);
	color: var(--dark);
	font-size: 14px;
	transition: .5s
}

.page-numbers.current,
.page-numbers:hover {
	border: 1px solid var(--primary);
	background: var(--primary);
	color: var(--white)
}

.form-group p br {
	display: none
}

.form-group p {
	margin: 0
}

.contactform .form-group p textarea {
	height: 100px
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: var(--primary) !important;
	color: var(--white);
	margin: 0 0 10px;
	font-size: 14px;
	font-weight: 300
}

.footerDiv .wpcf7-form p {
	margin: 0;
	position: relative
}

.footerDiv .wpcf7-form p .wpcf7-submit {
	position: absolute;
	right: 0;
	top: 0;
	background: var(--primary);
	width: auto;
	color: var(--white);
	padding: 10px 15px
}

.footerDiv form {
	margin: 0
}

.headright .cmnbtn {
	background-color: var(--white);
	color: var(--textColor)
}

.headright .cmnbtn span {
	color: var(--white);
	transition: .5s
}

.headright .cmnbtn:hover span {
	color: var(--textColor)
}

.meet-right .sec-head h2 {
	margin: 10px 0 0
}

.bnrbtn {
	background-color: var(--textColor);
	color: var(--dark);
	border: 1px solid var(--primary);
	padding: 10px 20px;
	position: relative;
	overflow: hidden;
	display: inline-block;
	gap: 10px;
	width: fit-content;
	transition: .5s
}

.bnrbtn .bnr-text {
	position: relative;
	z-index: 1;
	font-size: 15px;
	font-weight: 500;
	color: var(--dark);
	text-transform: uppercase;
	white-space: nowrap;
	transition: .5s
}

.bnrbtn:hover .bnr-text {
	color: var(--white)
}

.bnrbtn:hover {
	border: 1px solid var(--textColor)
}

.bnrbtn .bnr-icon {
	position: relative;
	z-index: 1
}

.bnrbtn .bnr-icon {
	display: inline-block !important;
	width: 25px;
	min-width: 25px
}

.bnrbtn .bnr-icon img {
	width: 100%;
	display: inline-block !important
}

.bnrbtn:after {
	position: absolute;
	content: "";
	left: 50%;
	top: 0;
	transform: translate(-50%, 0);
	background: var(--white);
	transform: translate(-50%, 0) skew(-30deg, 0);
	width: 125%;
	height: 130%;
	transition: .5s
}

.bnrbtn:hover:after {
	width: 0
}

.effi-un .row,
.content-ch .row,
.work-imp .row {
	align-items: center
}

.workflow-btm .note {
	margin-top: 15px
}

.content-ch .about-left {
	padding-bottom: 0
}

.content-ch .sec-cta {
	margin-top: 80px
}

.meet-right .ab-list li,
.about .ab-list li,
.content-flow ul li {
	position: relative;
	padding-left: 35px;
	margin-bottom: 0;
	font-size: 16px;
	margin-bottom: 13px
}

.meet-right .ab-list li:before,
.about .ab-list li:before,
.content-flow ul li:before {
	position: absolute;
	content: "\f135";
	left: 0;
	top: 2px;
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--primary);
	font-size: 17px;
	color: var(--white);
	line-height: 15px;
	font-family: bootstrap-icons !important
}

.about .ab-list {
	column-count: 1
}

.about .ab-list li {
	margin-bottom: 13px
}

.about_sec1 .ab-list.ab-list1 li {
	align-items: center;
	margin-bottom: 15px
}

.value_sec .row {
	justify-content: center
}

.testimonials .tophd {
	width: 100%
}

.work-mid ul li span img {
	width: 18px;
	min-width: 18px
}

.work-mid ul li {
	align-items: flex-start
}

.content-flow .conflow-img img {
	height: 662px;
	object-fit: cover;
	border-radius: 0 100px 0 0
}

.content-flow .conflow-img {
	width: 100%
}

.ab-list li div h4 {
	font-size: 18px;
	font-weight: 600
}

.advantage-part .ad-front .ad-img {
	height: 476px
}

.advantage-part .ad-front .ad-img img {
	height: 100%;
	object-fit: cover
}

#waitlistModal .modal-header {
	border-bottom: 0
}

#waitlistModal .modal-body {
	padding: 0 25px 40px
}

#waitlistModal .modal-body form p {
	margin: 0
}

#waitlistModal .modal-body form p br {
	display: none
}

#waitlistModal .modal-body form .submit p span {
	display: block;
	width: auto;
	margin-top: 5px
}

#waitlistModal .modal-body form label {
	color: var(--dark);
	display: block;
	margin: 0 0 5px;
	font-size: 15px
}

#waitlistModal .modal-body form input {
	width: 100%;
	font-size: 14px;
	line-height: 18px;
	padding: 15px;
	margin: 0 0 20px;
	border: 0;
	border-radius: 4px;
	background: var(--light-primary);
	outline: none !important
}

#waitlistModal .modal-body form .submit input {
	background: var(--primary);
	color: var(--white);
	width: auto;
	padding: 10px 20px;
	margin-bottom: 0;
	transition: .5s
}

#waitlistModal .modal-body form .submit input:hover {
	background: #000
}

#waitlistModal .modal-body form .submit {
	text-align: center
}

.work-bottom p a.text-btn {
	padding: 10px 20px;
	background: var(--primary);
	color: var(--white);
	display: inline-block;
	transition: .5s
}

.work-bottom p a.text-btn:hover {
	background: #000
}

.work-bottom {
	min-height: 194px
}

form.wpcf7-form.invalid .wpcf7-response-output {
	display: none
}

div#wpcf7-f6-o1 .wpcf7-response-output {
	color: #fff
}

div#wpcf7-f1137-o2 span.wpcf7-spinner {
	display: none !important
}

div#wpcf7-f1137-o2 .wpcf7-response-output {
	color: #000;
	margin-top: 13px
}

a.blog-con {
	color: var(--primary)
}

.podcast-box figure img {
	height: 170px;
}

.blog-details-main .blogdetailimage1 {
	margin: 0 0 20px;
}

.blog-details-main .blogdetailimage1>img {
	height: 400px;
	object-fit: cover;
}

.blog-details-main .blog-detail-left .alignleft,
.blog-details-main .blog-detail-left .alignright,
.blog-details-main .blog-detail-left .aligncenter {
	width: auto;
}

.blog-details-main .blog-detail-left .alignleft {
	display: table;
	margin-right: auto;
}

.blog-details-main .blog-detail-left .alignright {
	display: table;
	margin-left: auto;
}

.blog-details-main .blog-detail-left .aligncenter {
	display: table;
	margin: 0 auto;
}

.landing-pg.ab-pg .meet-shape1{
	left: auto;
	right: -20px;
	width: 280px;
	bottom: -15px;
}
.landing-pg.ab-pg .meet-img{
	background: transparent;
	position: relative;
}
.landing-pg.ab-pg .meet-img:before{
	position: absolute;
	content: "";
	right: -7px;top: 20px;
	width: 40%;height: 35%;
	background: var(--primary);
	z-index: -1;
}
.landing-pg.ab-pg .meet-img img {
    border-radius: 80px 0 0 80px;
}
.landing-pg .meet-btm{
	justify-content: flex-start;
	position: relative;
	gap: 0;
	row-gap: 25px;
}
.landing-pg .meet-btm .sec-head{
	margin: 0 60px 0 0;
	padding-right: 60px;
	border-right: 1px solid #D9D9D9;
}
.landing-pg .meet-btm .sec-head h2{
	font-size: 60px;
	line-height: 55px;
}
.landing-ab-pg .meet-img{
	background: transparent;
	position: relative
}
.ab-pg.landing-ab-pg .meet-img img {
    border-radius: 80px 0;
}
.landing-ab-pg .meet-img:before{
	position: absolute;
	content: "";
	left: -7px;top: -7px;
	width: 40%;height: 35%;
	background: var(--primary);
	border-radius: 80px 0 0;
	z-index: -1;
}
.landing-ab-pg .meetleft-count{
	background: #fff;
	box-shadow: 0 0 30px 0 rgba(0,0,0,0.1);
	border-radius: 0;
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 25px;
	width: 300px;
	bottom: 180px;
	left: auto;
	right: 30px;
}
.landing-ab-pg .land-ab-count{
	min-width: 71px;
	width: 71px;height: 71px;
	border-radius: 50%;
	border: 1px solid var(--primary);
	display: flex;align-items: center;
	justify-content: center;
}
.landing-ab-pg .land-ab-count h2, .landing-ab-pg .land-ab-count span{
	font-size: 20px;font-weight: 600;
	color: var(--primary);
}
.landing-ab-pg .land-ab-cn p{
	font-size: 20px;color: var(--dark);
	margin-bottom: 6px;font-weight: 600;
	line-height: 25px;
}
.landing-ab-pg .land-ab-cn span{
	font-size: 16px;color: var(--textColor);
	margin-bottom: 0;display: block;
	line-height: 25px;
}
.landing-ab-pg .meet-right h3{
	font-size: 22px; font-weight: 600;
	margin-bottom: 8px;
}
.landing-ab-pg .meet-right .ab-list {
	column-count: 2;
	margin-bottom: 25px;
}
.landing-pg .help_top{
	border: 0;
}
.landing-pg h3.faqhead{
	color: #fff;
}
.landing-pg .faqpart{
	box-shadow: none;
	border: 1px solid #fff;
}
.landing-pg h3.faqhead:before{
	background: #FCF1ED;
}