@charset "UTF-8";

.mobileDeviceShow {
	display: none;
}


html {
  scroll-behavior: smooth;
}

:root {
    --dc-white: #FFFFFF;
    --dc-dark: #333333;
    --black: #333333;
    --dc-primary: #3f2e88;
    --dc-secondary: #333;
    --dc-font: 'Montserrat', sans-serif;
    --dc-transition: all .3s ease;
    --dc-fs-1: 3.646vw;
    --dc-fs-2: 2.604vw;
    --dc-fs-3: 1.875vw;
    --dc-fs-4: 1.458vw;
    --dc-fs-5: 1.250vw;
    --dc-body-fs:  20px;
    --dc-body-fs-md:  16px;
    --dc-body-fs-sm:14px;
}

html,body,div,span,applet,object,iframe,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,
small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

*, ::after, ::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

img,svg,video {
    max-width: 100%;
    vertical-align: middle;
    height: auto !important;
}

img,svg,video {
    max-width: 100%;
    vertical-align: middle;
    height: auto;
}

iframe {
    border: none;
    max-width: 100%;
    max-height: 100%;
}

:focus {
    outline: 0 !important;
}

a:focus {
    outline: 0 !important;
}

a {
    transition: var(--dc-transition);
    text-decoration: none;
    color: currentColor;
}

a:hover {
    color: var(--dc-primary);
    text-decoration: none;
    outline: none !important;
}

svg path {
    transition: var(--dc-transition);
}

svg.text-white path {
    fill: var(--dc-white);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.h1,h1,.h2,h2,.h3,h3,.h4,h4,.h5,h5,.h6,h6 {
    font-family: var(--dc-font);
    font-weight: 700;
    margin:0; 
}

.error {
	color: #fff;
	margin-top: 5px;
	display: block;
    font-size: 12px;
}

.form-group {
	font-size: 14px;
}


.h1, h1 {
    font-size: var(--dc-fs-1);
}

h1.h2 {
    font-size: var(--dc-fs-2);
}

.h2, h2 {
    font-size: var(--dc-fs-2);
}

.h3, h3 {
    font-size: var(--dc-fs-3);
}

.h4, h4 {
    font-size: var(--dc-fs-4);
}

.h5, h5 {
    font-size: var(--dc-fs-5);
}

.h6, h6 {
    font-size: var(--dc-body-fs);
}

p {
    line-height: 2rem;
}



.text-primary {
    color: var(--dc-primary) !important;
}

.text-white {
    color: var(--dc-white) !important;
}

.text-center {
	text-align: center;
}

.text-right {
    text-align: right;
}

.border-0 {
    border: 0 !important;
}

.font-md {
    font-size: var(--dc-body-fs-md);
}

.font-sm {
    font-size: var(--dc-body-fs-sm);
}

.font-normal {
    font-weight: normal;
}

ul.grad-list li {
	position: relative;
	padding-left: 2.2rem;
	margin-bottom: 0.9rem;
	line-height: 2rem;
}

ul.grad-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 1.2rem;
	height: 1.2rem;
	border-radius: 50%;
	background: rgb(241,0,215);
	background: radial-gradient(circle, rgba(241,0,215,1) 0%, rgba(255,31,47,1) 12%, rgba(242,83,73,1) 24%, rgba(255,169,63,1) 36%, rgba(179,214,118,1) 48%, rgba(0,0,255,1) 65%, rgba(0,0,255,1) 100%);
}

.text-grad {
    background: rgb(247,0,208);
    background: linear-gradient(90deg, rgba(247,0,208,1) 0%, rgba(255,31,47,1) 28%, rgba(242,83,73,1) 55%, rgba(255,169,63,1) 80%, rgba(172,241,183,1) 100%);
    background-clip: border-box;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    display: inline-block;
}

.grad-circle {
    display: inline-block;
    width: 1.2rem;
	height: 1.2rem;
	border-radius: 50%;
	background: rgb(241,0,215);
	background: radial-gradient(circle, rgba(241,0,215,1) 0%, rgba(255,31,47,1) 12%, rgba(242,83,73,1) 24%, rgba(255,169,63,1) 36%, rgba(179,214,118,1) 48%, rgba(0,0,255,1) 65%, rgba(0,0,255,1) 100%);
}

.btn {
	font-size: 18px;
	padding: 16px 32px;
	border-radius: 10px;
	background: #000;
	color: var(--dc-white);
    display: inline-block;
    border: 1px solid #000;
    font-weight: 500;
}

.btn.btn-white {
    background: #fff;
    color: #000;
    border-color: #fff;
  }

.btn.btn-line {
	background: transparent;	
	color: #000;
}

.btn:hover {
	background: var(--dc-primary);
	color: var(--dc-white);
}

.btn.btn-header {
	padding: 18px 42px;
	text-transform: uppercase;
}

body {
    font-family: var(--dc-font);
    font-size: var(--dc-body-fs);
    color: var(--dc-secondary);
    font-weight: 400;
    background-color: #fff5f4;
    overflow-x: hidden;
}

.container {
    max-width: 75vw;
    margin: 0 auto;
}


.top-strip {
	background: var(--dc-primary);
	color: #fff;
	padding: 5px 20px;
	width: 100%;
	display: flex;

}

.closeStrip {
	flex-shrink: 0;
	font-size: 25px;
	width: 50px;
	text-align: center;
    cursor:pointer;
}

.cntStrip {
	flex-grow: 1;
	font-size: 18px;
	display: flex;
    align-items: center;
    justify-content: center;
}

.md {
    font-weight: 600;
}


/*.fc-header {
    background: var(--dc-primary) !important;
}

.chat-fc-form-outer div.fc-form a.fc-button{
	 background: var(--dc-primary) !important;
	 font-size: 12px;
}

.chat-fc-form-outer div.fc-form p {
    font-size: 14px;
    padding: 15px 0px 0px;
}

.chat-fc-form-outer div.fc-form ul li label {
    font-size: 14px;
}

.chat-fc-form-outer div.fc-form ul li input {
    padding: 8px 10px!important;
    font-size: 14px;
}

.pre-fc-error{
text-align: left !important;
}*/


@media(min-width:1922px){
.h1, h1 {
    font-size: 70px;
}

h1.h2 {
    font-size: 50px;
}

.h2, h2 {
    font-size: 50px;
}

.h3, h3 {
    font-size: 36px;
}

.h4, h4 {
    font-size: 28px;
}

.h5, h5 {
    font-size: 24px;
}

.h6, h6 {
    font-size: 20px;
}
.container {
	max-width: 1600px;
}
}

@media (max-width: 1599px){
.container {
    width: 100%;
    max-width: 90vw;
}

.top-strip{
	padding: 2px 20px;
}


}



@media(max-width:1366px){
body {
    font-size: 18px;
}
.btn {
	font-size: 16px;
}
}

@media(max-width:1100px){
body {
    font-size: 16px;
}
.h1, h1 {
    font-size: 40px;
}

h1.h2 {
    font-size: 30px;
}

.h2, h2 {
    font-size: 30px;
}

.h3, h3 {
    font-size: 24px;
}

.h4, h4 {
    font-size: 20px;
}

.h5, h5 {
    font-size: 18px;
}
}

@media(max-width:991px){
.h1, h1 {
    font-size: 40px;
}

h1.h2 {
    font-size: 30px;
}

.h2, h2 {
    font-size: 30px;
}

.h3, h3 {
    font-size: 24px;
}

.h4, h4 {
    font-size: 20px;
}

.h5, h5 {
    font-size: 18px;
}
}

@media(max-width:767px){

	
.h1, h1 {
    font-size: 30px;
}

h1.h2 {
    font-size: 26px;
}

.h2, h2 {
    font-size: 26px;
}

.h3, h3 {
    font-size: 20px;
}
p {
	line-height: 24px;
}
}

/*Arrow btn css*/

.lg-btn-arrow {
	font-size: 22px;
	color: var(--dc-secondary);
	display: flex;
	font-weight: 500;
}

.sm-btn-arrow {
	font-size: 18px;
	color: var(--dc-secondary);
	display: flex;
	font-weight: 500;
}

.lg-btn-arrow.white-btn, .sm-btn-arrow.white-btn {
	color: var(--dc-white);
}

.lg-btn-arrow.blue-btn, .sm-btn-arrow.blue-btn {
	color: var(--dc-primary);
}

.arrow-link {
	display:inline-flex;
	justify-content: center;
	align-items: center;
    position:relative;
}

.arrow-link::before {
	border-top: 2px solid var(--dc-dark);
	border-left: 2px solid var(--dc-dark);
	transform: rotate(135deg);
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	right:0;
	
}

.arrow-link::after {
	content: '';
	background: var(--dc-dark);
	width: 18px;
	height: 2px;
	position: relative;
}

.arrow-link.white-arrow::before {
	border-top: 2px solid var(--dc-white);
	border-left: 2px solid var(--dc-white);
}

.arrow-link.white-arrow::after {
	background: var(--dc-white);
}

.arrow-link.blue-arrow::before {
	border-top: 2px solid var(--dc-primary);
	border-left: 2px solid var(--dc-primary);
}

.arrow-link.blue-arrow::after {
	background: var(--dc-primary);
}

.arrow-link.arrow-sm::before {
	border-top: 1px solid var(--black);
	border-left: 1px solid var(--black);
	width: 8px;
	height: 8px;
	left: 16px;
}
.arrow-link.arrow-sm::after {
	width: 16px;
	height: 2px;
}


/* Flex CSS */
.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.justify-content-evenly {
    justify-content: space-evenly !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-self-center {
    align-self: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.ms-3 {
    margin-left: 1rem !important;
}


/* checkbox */
.check-label {display: block;position: relative;padding-left: 28px;cursor: pointer;font-size: 10px;color: #fff;font-weight: 500;padding-top: 2px;}
.check-label input {position: absolute;opacity: 0;cursor: pointer;height: 0;width: 0;}
.checkmark {position: absolute;top: 0;left: 0;height: 16px;width: 16px;background-color: #fff;border-radius: 2px;}
.check-label:hover input ~ .checkmark {background-color: #ccc;}
.check-label input:checked ~ .checkmark {background-color: #2196F3;}
.checkmark:after {content: "";position: absolute;display: none;}
.check-label input:checked ~ .checkmark:after {display: block;}
.check-label .checkmark::after {left: 6px;top: 2px;width: 5px;height: 10px;border: solid white;border-width: 0 3px 3px 0;-webkit-transform: rotate(45deg);-ms-transform: rotate(45deg);transform: rotate(45deg);}


.mobileShow {
    display: none;
}

.desktopshow {
    display: block;
}


/*image dimension start*/

.dimension-img {
    position: relative;
    margin: 0;
    padding: 0;

}


.dimension-img:before {
    content: "";
    display: block;
    padding-top: 100%;
}


.dimension-img img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    width: auto;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    display: inline-block;
}

/*image dimension end*/



/*brand Section Start*/

.track {
	position: absolute;
	white-space: nowrap;
	will-change: transform;
	animation: marquee 30s linear infinite;
    -webkit-animation: marquee 30s linear infinite;
    -moz-animation: marquee 30s linear infinite;
  }
  
  @keyframes marquee {
	from { transform: translateX(0%); }
	to { transform: translateX(-50%); }
  }

@-webkit-keyframes marquee {
   from { -webkit-transform: translateX(0%); }
   to { -webkit-transform: translateX(-50%); }
}

@-moz-keyframes marquee {
   from { -moz-transform: translateX(0%); }
   to { -moz-transform: translateX(-50%); }
}


.brand-sec {
	padding: 40px 0;
}

.brand-sec h4 {
	margin-bottom: 30px;
}


.brand-sec .shaper{
  background:url(../images/new/brand-stripe.webp) repeat 0 0 / cover;
  width: 100%;
  margin: 0;
  text-align: center;
  height:80px;
  padding-top:80px;
  box-sizing: border-box;
   animation: slide 30s linear infinite;    
  -webkit-animation: slide 30s linear infinite;
  -moz-animation: slide 30s linear infinite;
} 
 
@keyframes slide {
    from { background-position: 0 0; }
    to { background-position:-3422px 0px; }
}


@-webkit-keyframes slide {
    from { background-position: 0 0; }
    to { background-position:-3422px 0px; }
}

@-moz-keyframes slide {
    from { background-position: 0 0; }
    to { background-position:-3422px 0px; }
}

 
/*brand Section end*/



/*badges Section Start*/

.partner-logo {
	display: flex;
	justify-content: center;
	padding: 30px 0px;
	align-items: center; 
	gap: 1rem;
	max-width: 970px;
	margin: 0 auto;
}

.partner-logo li {
	position: relative;
	max-width: 8%;
	flex: 0 0 8%;
}

.partner-logo li:nth-child(3) {
    max-width: 10%;
    flex: 0 0 10%;
}

.partner-logo li:last-child {
	margin-left: 2rem;
	max-width: 15%;
	flex: 0 0 15%;
}

.partner-logo li:last-child:before {
	height: 100%;
	width: 2px;
	background-color: var(--black);
	position: absolute;
	left: -20px;
	top: 0;
	content: '';
}

.partner-logo .dimension-img:before {
	padding-top: 115%;
}

.partner-logo .google-rating:before {
	padding-top: 32%;
}


.partner-logo li.google-rating-circel{
    display:none;
}

.partner-logo li.google-rating-circel .dimension-img:before{
    padding-top:38%;
}


/*badges Section end*/

.slick-dots li {
	width: auto;
	height: auto;
	margin: 0;
}

.slick-dots li button {
	padding: 0;
	width: auto;
	height: auto;
}

.slick-dots li button:before {
	border-radius: 100%;
	border: 2px solid #3f2e88;
	font-size: 0;
	opacity: 1;
	position: inherit;
	display: inline-block;
	margin: 0 2px;
	transition: all ease .4s;
	height: 1rem;
	width: 1rem;
}

.slick-dots li.slick-active button:before {
	width: 2rem;
	border-radius: 2rem;
	background: linear-gradient(to right, #f407ae 10%, #f9353a 10%, #f66d46 20%, #ffa640 40%, #b4d575 50%, #0889c6 80%, #0009fb 100%);
}

.slick-prev,
.slick-next {
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 100%;
	background-color: #fff;
	border: 2px solid #3f2e88;
	transform: inherit;
	z-index: 9;
}

.slick-prev,
.slick-next {
	display: flex;
	align-items: center;
}

.slick-prev:before,
.slick-next:before {
	border-top: 2px solid #3f2e88;
	border-left: 2px solid #3f2e88;
	transform: rotate(135deg) translate(-50%, -50%);
	content: '';
	position: absolute;
	width: 0.5rem;
	height: 0.5rem;
	left: 1.3rem;
	position: absolute;
	transform-origin: 2px 1px;
	left: 50%;
	top: 50%;
}

.slick-prev:before {
	transform: rotate(316deg);
	left: initial;
	right: 50%;
	transform-origin: 0px 0px;
}

.slick-prev:after,
.slick-next:after {
	content: '';
	background: #3f2e88; 
	width: 1rem;
	height: 2px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
	opacity: 1;
}

.slick-prev:hover:after,
.slick-next:hover:after {
	background-color: #fff;
}

.slick-prev:hover:before,
.slick-next:hover:before {
	border-top-color: #fff;
	border-left-color: #fff;
}

.slick-prev:hover,
.slick-next:hover {
	background-color: #3f2e88;
}

@media(max-width: 767px){
.slick-prev:hover:after,
.slick-next:hover:after {
	background-color: #3f2e88;
}

.slick-prev:hover:before,
.slick-next:hover:before {
	border-top-color: #3f2e88;
	border-left-color: #3f2e88;
}

.slick-prev:hover,
.slick-next:hover {
	background-color: #fff;
}

}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
	opacity: 0.3;
	cursor: auto;
}

.slick-prev.slick-disabled:hover {
	background-color: #fff;
}

.slick-next.slick-disabled:hover {
	background-color: #fff;
}

.slick-prev.slick-disabled:hover:after,
.slick-next.slick-disabled:hover:after {
	background-color: #3f2e88;
}

.slick-prev.slick-disabled:hover:before,
.slick-next.slick-disabled:hover:before {
	border-top-color: #3f2e88;
	border-left-color: #3f2e88;
}

.slick-next.disabled-Next {
	background-color: #eee;
	color: grey;
	border: 1px solid grey;
	cursor: not-allowed;
	pointer-events: none;
	opacity: 0.6;
}

.row {
  display: flex;
  align-items: center;
  margin: 0rem -1rem;
  flex-wrap: wrap;
}



.impact-stories {
	padding-bottom: 5rem;
}

.impact-stories #impact-stories-slider .impact-box {
	/* flex: 0 0 33.33%;
    max-width: calc(33.33% - 2.5rem); */
	border: double 2px transparent;
	background-color: #fff;
	border-radius: 30px;
}

.impact-stories #impact-stories-slider .impact-box:hover {
	background-image: linear-gradient(white, white), linear-gradient(90deg, rgba(241, 0, 215, 1) 0%, rgba(255, 31, 47, 1) 15%, rgba(242, 83, 73, 1) 33%, rgba(255, 169, 63, 1) 49%, rgba(179, 214, 118, 1) 63%, rgba(0, 134, 202, 1) 83%, rgba(0, 0, 255, 1) 100%);
	background-origin: border-box;
	background-clip: content-box, border-box;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

#impact-stories-slider .slick-slide {
	padding: 0 15px;
}

.impact-img {
	width: 100%;
	height: 210px;
	margin-bottom: 2rem;
	border-radius: 10px;
	overflow: hidden;
}

.impact-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.impact-box-space {
	padding: 1.5rem;
}

.impact-stories h2 {
	text-align: center;
	margin-bottom: 2.5rem;
}

.impact-cnt h3 {

	margin-bottom: 5px;
	color: var(--black);
}


.impect-min {
	min-height: 220px;
}

.impact-know-more {
	color: var(--black);
	font-weight: 600;
	position: relative;
	display: flex;
	margin-top: 1rem;
	gap: 10px;
}


.impact-know-more .arrow-link::before {
	border-top: 2px solid var(--black);
	border-left: 2px solid var(--black);

}

.impact-know-more .arrow-link::after {
	background: var(--black);

}

.ExploreMore {
	position: relative;
	margin: 2rem 0;
	font-weight: 600;
	font-size: 1.5rem;
	color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}




.impact-cnt h4 {
	margin-bottom: 15px;
	font-size: 24px;
}

.impact-box .img-fluid {
	width: 100%;
	height: auto;
}


@media(max-width:1919px) {

	.impect-min {
		min-height: 240px;
	}
}


@media(max-width:1439px) {

	.customSliderBox p {
		font-size: 16px;
	}
}

@media(max-width:1279px) {
	.impact-stories .d-flex {
		gap: 1rem;
	}

	.impact-stories .d-flex .impact-box {
		max-width: calc(33.33% - 1rem);
	}

}

@media(max-width:991px) {


	.impact-stories .d-flex {
		gap: 0.5rem;
	}

	.impact-stories .d-flex .impact-box {
		max-width: calc(33.33% - 0.5rem);
	}

	.impact-box-space {
		padding: 0.7rem;
	}

	.ExploreMore {
		margin: 1.5rem 0;

	}

	#impact-stories-slider .slick-slide {
		padding: 0 10px !important;
	}
}


@media(max-width:767px) {

	.partner-logo li:nth-child(3) {
    max-width: 20%;
    flex: 0 0 20%;
}
	.impact-stories {
		padding-top: 3rem;
	}

	.impact-stories .d-flex {
		flex-direction: column;
	}

	.impact-stories .d-flex .impact-box {
		max-width: calc(100% - 0.5rem);
	}

	.impect-min {
		min-height: 130px;
	}

	#impact-stories-slider .slick-slide {
		padding: 0px 0px !important;
	}

	.impactsliderButton {
		justify-content: center;
		list-style: none;
		margin: 0px;
		display: flex;
		gap: 1rem;
		padding-top: 1rem;
		padding-bottom: 3rem;
	}

	.impactsliderButton .PrevimpactsliderButton {
		line-height: 0;
		z-index: 9;
		opacity: 1;
		cursor: pointer;
		-webkit-transition: all 350ms ease;
		transition: all 350ms ease;
		background: var(--dc-white);
		border-radius: 100%;
		width: 42px;
		height: 42px;
		border: 2px solid var(--blue);
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.impactsliderButton .NextimpactsliderButton {
		line-height: 0;
		z-index: 9;
		opacity: 1;
		cursor: pointer;
		-webkit-transition: all 350ms ease;
		transition: all 350ms ease;
		border-radius: 100%;
		background: var(--dc-white);
		width: 42px;
		height: 42px;
		border: 2px solid var(--blue);
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.impactsliderButton .NextimpactsliderButton:hover {
		background-color: var(--blue);
	}

	.impactsliderButton .NextimpactsliderButton:hover .arrow-link:before {
		border-top: 2px solid var(--dc-white);
		border-left: 2px solid var(--dc-white);
	}

	.impactsliderButton .NextimpactsliderButton:hover .arrow-link:after {
		background: var(--dc-white);
	}

	.impactsliderButton .PrevimpactsliderButton:hover {
		background-color: var(--blue);
	}

	.impactsliderButton .PrevimpactsliderButton:hover .arrow-link:before {
		border-top: 2px solid var(--dc-white);
		border-left: 2px solid var(--dc-white);
	}

	.impactsliderButton .PrevimpactsliderButton:hover .arrow-link:after {
		background: var(--dc-white);
	}


	.impactsliderButton .PrevimpactsliderButton .arrow-link:before {
		border-top: 2px solid var(--blue);
		border-left: 2px solid var(--blue);
		transform: rotate(316deg);
		left: inherit;
		right: 100%;
		transform-origin: 10px -8px;
	}


}

.impactsliderButton .PrevimpactsliderButton .arrow-link:after {
	background: var(--blue);

}

.impactsliderButton .NextimpactsliderButton .arrow-link:before {
	border-top: 2px solid var(--blue);
	border-left: 2px solid var(--blue);

}

.impactsliderButton .NextimpactsliderButton .arrow-link:after {
	background: var(--blue);

}


}


@media screen and (max-width:575px) {}


@media screen and (max-width:479px) {}