
:root {
  
    --cnvs-gradient-color: linear-gradient(to right, #f6955c, #f23457);
    --cnvs-body-image: url('images/new/blur-bg.png');
    --cnvs-saas-color-1: #FFF7EF;
    --cnvs-saas-color-2: #F9FAF6;
   
  
    --cnvs-slider-arrow-color: var(--cnvs-contrast-300);
    --cnvs-slider-arrows-bg-color: transparent;
    --cnvs-slider-arrows-bg-hover-color: var(--cnvs-slider-arrows-bg-color);
   
}
.swiper-pagination-progress {
	--cnvs-swiper-bar-size: 2px;
	--cnvs-swiper-bar-color: var(--cnvs-contrast-200);
	--cnvs-swiper-bar-active-color: var(--cnvs-contrast-1000);
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: auto;
	border-radius: 0;
	opacity: 1;
	margin: 0;
	background-color: transparent
}

.swiper-pagination-progress .swiper-pagination-bar,
.swiper-pagination-progress .swiper-pagination-bar-active {
	position: absolute;
	bottom: 0;
	border-radius: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: var(--cnvs-swiper-bar-size);
	margin: 0;
	background-color: var(--cnvs-swiper-bar-color)
}

.swiper-pagination-progress .swiper-pagination-bar-active {
	z-index: 2;
	width: 0%;
	background-color: var(--cnvs-swiper-bar-active-color)
}

.active .swiper-pagination-progress .swiper-pagination-bar-active {
	animation-name: swiperbarAnim;
	animation-duration: 5s;
	animation-timing-function: ease-in;
	animation-iteration-count: 1;
	animation-direction: alternate;
	animation-fill-mode: forwards
}

@keyframes swiperbarAnim {
	0% {
		width: 0
	}

	100% {
		width: 100%
	}
}

.swiper-tab-link {
	--swiper-tab-title: #AAA;
	--swiper-tab-content: ;
	counter-increment: step-counter;
	position: relative;
	overflow: hidden;
	margin-bottom: 5px;
	padding: 20px 0;
	cursor: pointer
}

.swiper-tab-link::before {
	content: "0" counter(step-counter)'.';
	position: relative;
	display: inline-block;
	font-size: 20px;
	font-weight: 600;
	min-width: 35px;
	margin-right: 3px;
	color: var(--swiper-tab-title);
	font-family: monospace;
	line-height: 1
}

.swiper-tab-link .swiper-tab-title {
	display: inline-block;
	color: var(--swiper-tab-title);
	margin-bottom: 0;
	font-size: calc(0.95rem + 0.3vw)
}

.swiper-tab-link .swiper-tab-content {
	margin-bottom: 0;
	padding-top: 10px;
	margin-left: 5px;
	line-height: 0;
	opacity: 0;
	vertical-align: middle;
	font-size: 1rem;
	transition: line-height .6s cubic-bezier(.4, 0, .2, 1), opacity .1s .1s cubic-bezier(.4, 0, .2, 1)
}

@media(min-width:768px) {
	.swiper-tab-link .swiper-tab-content {
		margin-left: 60px
	}
}

.swiper-tab-link.active .swiper-tab-content {
	opacity: .8;
	line-height: var(--cnvs-line-height-content);
	transition: line-height .5s cubic-bezier(.4, 0, .2, 1), opacity .15s .15s cubic-bezier(.4, 0, .2, 1)
}

.swiper-tab-link.active {
	--swiper-tab-title: #000
}

.back-shadow {
	---cnvs-back-shadow-size: 5px;
	---cnvs-back-shadow-bg: var(--cnvs-contrast-1000);
	---cnvs-back-shadow-color: var(--cnvs-contrast-0);
	position: relative;
	background-color: var(---cnvs-back-shadow-color);
	border: 1px solid var(---cnvs-back-shadow-bg);
	margin-left: var(---cnvs-back-shadow-size);
	margin-bottom: var(---cnvs-back-shadow-size);
	box-shadow: calc(-1 * var(---cnvs-back-shadow-size)) var(---cnvs-back-shadow-size) 0 var(---cnvs-back-shadow-bg)
}

.ins-categories .nav-link {
    padding: 20px 30px;
    color: #444;
    background-color: var(--bs-light);
    margin-top: 17px;
    font-size: 1.2em;
    border-radius: .25rem;
    transition: max-height .5s;
    max-height: 70px;
    overflow: hidden
}

.ins-categories .nav-link:first-child {
    margin-top: 0
}

.ins-categories .nav-link:hover {
    background-color: #f5f5f5
}

.ins-categories .nav-link.active {
    color: #000;
    background-color: #e3eaf1;
    max-height: 200px
}

.ins-categories .nav-link .tab-header img {
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-right: 15px;
    opacity: .5
}

.ins-categories .nav-link .tab-desc {
    opacity: 0;
    transition: opacity .3s;
    color: #5b5855;
    font-size: 1.025rem;
}

.ins-categories .nav-link.active .tab-desc {
    opacity: 1;
    transition: opacity .5s;
    transition-delay: .25s
}

.promo-card {
    --promo-card-gap: 15px;
    transform: translateX(calc(var(--promo-card-gap) * 2)) translateY(calc(var(--promo-card-gap) * -2));
    width: calc(100% - calc(var(--promo-card-gap) * 2))
}

.promo-card div:nth-child(1) {
    position: relative;
    padding: 60px 90px;
    z-index: 3
}

.promo-card>div:nth-child(2),.promo-card>div:nth-child(3) {
    position: absolute;
    top: var(--promo-card-gap);
    left: calc(-1 * var(--promo-card-gap));
    width: 100%;
    height: 100%;
    background-color: #bccce7;
    z-index: 1
}

.promo-card>div:nth-child(3) {
    top: calc(2 * var(--promo-card-gap));
    left: calc(-2 * var(--promo-card-gap));
    background-color: #e6ecf7;
    z-index: 0
}
.dotted-bg-calltoaction{
    background-color: #2c5aa8;
    background-image: radial-gradient(rgba(255,255,255,0.3) 6%,transparent 10%);
    background-size: 12px 12px;
    background-position: center;
    background-repeat: repeat;
}

.bg-secondary-color, .h-bg-secondary-color:hover {
    background-color: #35b75b!important;
}

.price-tenure {
    vertical-align: baseline;
    font-size: var(--cnvs-pricing-price-month);
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--cnvs-contrast-600);
    margin: 0 0 0 3px;
}

.pricing-details {
	min-height:80px;
}
/***pricing table for big screen ***/

.egMjkN {
    display: flex;
    position: sticky;
    top: 55px;
    z-index: 100;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    gap: 4px;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 16px;
    margin-bottom: 48px;
    background-color: rgb(255, 255, 255);
}
.fOVIzJ {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    width: 285px;
}
.bDOePM {
    display: flex;
    flex: 1 1 0%;
    width: 100%;
}
.iwIBup {
    display: flex;
    flex: 1 1 0px;
    gap: 8px;
    width: 100%;
}
.biAQvZ {
    width: 100%;
    height: 100%;
    border: 1.4px solid rgb(231, 237, 246);
    border-radius: 8px;
}

.dFAeSV {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 16px;
}
.ibHRew {
    display: flex;
    align-items: flex-end;
    -webkit-box-pack: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 40px;
}
.giQqEW {
    margin-top: auto;
}

.erYnXO {
    width: 100%;
    height: 100%;
}

.hFMcKY {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
    border: 1px solid rgb(231, 237, 246);
    border-radius: 20px;
}
.eDfbrs {
    width: 100%;
    height: auto;
}
.bhXzUT {
    table-layout: fixed;
}
.dgkkUt {
    cursor: pointer;
}
.gpCNKr {
    width: 285px;
    height: 100%;
}
.cvHlkX {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 16px 24px 8px;
}
.iaiRvW {
    width: auto;
    height: 100%;
}
.iuUBkp {
    visibility: visible;
}
.bhXzUT tr:first-child td {
    border-top: 1px solid rgb(231, 237, 246);
}
.kkrEZp {
    background-color: transparent;
    vertical-align: middle;
}
.cNDFxS {
    width: auto;
    height: auto;
    padding: 9px 23px;
}
.dxuRVH {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}
.dveRiI {
    display: flex;
    width: auto;
    min-width: 16px;
}
.iHXVUv {
    display: block;
    position: relative;
    z-index: 1;
}
.dUGens {
    --tooltip-msg-position: -50%;
    --tooltip-arrow-position: -50%;
    cursor: pointer;
    position: relative;
    display: inline-block;
}
.ddikkN {
    display: none;
    position: relative;
    z-index: 1;
}
/***pricing table for mobile ***/
.hBrclu {
    display: none;
    -webkit-box-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 16px;
    margin-top: 8px;
    background-color: rgb(255, 255, 255);
}
@media(max-width:768px){
	.hBrclu {
	    display: flex;
	}
.egMjkN {
    display: none;
}
}
.hero-features {
    transform: translateY(-20%);
    padding: 25px;
    border-radius: 6px;
}
@media(min-width: 992px) {
    .hero-features {
        transform:translateY(-50%);
        padding: 40px 30px;
        max-width: 80%;
        margin-left: auto;
        border-left: 4px solid rgba(0,0,0,.2);
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }
}