


*{
    font-family: 'poppins', sans-serif;
    text-decoration: none;
    list-style: none;
}

::-webkit-scrollbar {
	width: 5px;
  }
  ::-webkit-scrollbar-track {
	background: transparent;
  }
  ::-webkit-scrollbar-thumb {
	background: #5C24B4;
  }
  ::-webkit-scrollbar-thumb:hover {
	background: #555;
  }
  ::-moz-selection { 
	color: white;
	background: #ffb6ff;
  }
  
  ::selection {
	color: white;
	background:  #ffb6ff;
  }

body {
	background-color: #F4F5FA;
	box-sizing: border-box;
}
img {
    pointer-events: none;
}

h1 {
	font-size: 2.2rem;
	font-weight: 800;
	line-height: auto;
}
h2 {
	font-size: 2rem;
	font-weight: 700;
}
h3 {
	font-size: 2.3rem;
	font-weight: 800;
}

p {
	font-weight: 400;
	font-size: 1.2rem;
	color: rgb(51, 51, 51);
}
button:focus {
	outline: none;
}

.page-other .container {
	height: auto;
}

.container {
                width: 85%;
                max-width: 1600px;
				height: 100%;
				
			}
			.row {
				align-items: center;
				align-content: center;
				height:100%;
				
			}


.scroll-control {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateX(-50%);
    z-index: 999;
}
.scroll-control span {
    cursor: pointer;
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 10px 0;
    background-color: #000;
    opacity: 0.7;
}
.scroll-control span:hover {
    opacity: 20;
}

.section {
	position: relative;
}


/*/////////////////////////    S ONE    /////////////////////////////////////*/

.s-one {
	padding-bottom: 100px;
}

.brand {
	max-width: 13.3rem;
	height: auto;
	line-height: 70px;
	margin-top: 27px;
}

.top-img {
	position:absolute;
	top: -20px;
	left: 4%;
	z-index: -1;
	margin-top: -8px;
	margin-left: 5%;
	width: 45vw;
	height: auto;
	filter: blur(15px);
}

.hero-bg {
	position: absolute;
	top: 0px;
	right: 0;
	width: 60%;
	z-index: -1000;
}
			
nav {
	margin: 0 auto;
	width: 85%;
  	max-width: 1600px;
	height: 100px;
	z-index: 9999;
}
#menu_section {
	z-index: 9999;
	width: auto;
	height: 60px;
	float: right;
	margin-top: 27px;
	background: rgba(255, 255, 255, 0.31);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(13.5px);
	-webkit-backdrop-filter: blur(13.5px);
	border: 1px solid rgba(255, 255, 255, 0.18);
}
#menu_section ul a {
	list-style: none;
	text-decoration: none;
	color: black;
}
#menu_section li {
	position: relative;
	font-weight: 500;
	font-size: .9rem;
	display: inline;
	margin-right: 20px;
	cursor: pointer;
	line-height: 60px;
	text-align: center;
	transition: all .5s ease-in-out;
	
}

#menu_section li:hover {
	color: #5C24B4;
	transition: 300ms;
}
.menuList li::after {
	content:"";
	position: absolute;
	left: 0;
	background-color: #5C24B4;
	height: 3px;
	width: 0px;
	bottom: -18px;
	border-radius: 10px;
}
.menuList li:hover:after {
	width: 100%;
	height: 3px;
	transition: 0.5s;
}
.menuList li.active {
	color: #5C24B4;
}
.contactButton {
	float: right;
	font-weight: 500;
	font-size: 1rem;
	width: 150px;
	height: 60px;
	border: none;
	border-radius: 10px;
	background: #5C24B4;
	color: white;
	margin-left: 20px;
	cursor: pointer;
	display: inline;
	
}
.contactButton:hover {
	box-shadow: 0px 25px 20px rgba(116, 51, 253, 0.15);
	transition: 300ms;
	background-color: #5C24B4;
}
#nav-icon1{
	display: none;
	margin-top: 45px;
	margin-right: 3%;
	float: right;
	width: 30px;
	height: 30px;
	position: relative;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
  }
  
  #nav-icon1 span{
	display: block;
	position: absolute;
	height: 3.4px;
	width: 100%;
	background: #5C24B4;
	border-radius: 9px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
  }
  
  #nav-icon1 span:nth-child(1) {
	top: 0px;
  }
  
  #nav-icon1 span:nth-child(2) {
	top: 8px;
  }
  
  #nav-icon1 span:nth-child(3) {
	top: 16px;
  }
  
  #nav-icon1.open span:nth-child(1) {
	top: 8px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
  }
  
  #nav-icon1.open span:nth-child(2) {
	opacity: 0;
	left: -60px;
  }
  
  #nav-icon1.open span:nth-child(3) {
	top: 8px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
  }
  



  #s-one a{
	text-decoration: none;
	color: inherit;
}
	
  
  .cta {
	margin-top: 50px;
	position: relative;
	padding: 19px 22px;
	transition: all .2s ease; }
	.cta:before {
	  content: "";
	  position: absolute;
	  top: 0;
	  left: 0;
	  display: block;
	  border-radius: 28px;
	  background: #FFD7F8;
	  width: 56px;
	  height: 56px;
	  transition: all .3s ease; }
	.cta span {
	  position: relative;
	  font-size: 16px;
	  line-height: 15px;
	  font-weight: 800;
	  letter-spacing: .20em;
	  text-transform: uppercase;
	  vertical-align: middle; 
	}
	.cta svg {
	  position: relative;
	  top: 0;
	  margin-left: 10px;
	  fill: none;
	  stroke-linecap: round;
	  stroke-linejoin: round;
	  stroke: #111;
	  stroke-width: 2;
	  transform: translateX(-5px);
	  transition: all .3s ease; }
	.cta:hover:before {
	  width: 100%;
	  background: #B9B9EF;
	}
	  
	.cta:hover svg {
	  transform: translateX(0); }
	.cta:active {
	  transform: scale(0.96); }









  .button1 {
	width: auto;
	height: auto;
	padding: 15px 27px;
	background: #5C24B4;
	box-shadow: 0px 25px 20px rgba(116, 51, 253, 0.15);
	border-radius: 10px;
	border: none;
	color: #F3F3F3;
	font-weight: 500;
	font-size: 1.1rem;
	cursor: pointer;


	
}
.button1:hover {
	box-shadow: 0px 25px 20px rgba(116, 51, 253, 0.15);
	transition: 300ms;
	transform: scale(1.05);
	background-color: #5C24B4;
}


.button2 {
	width: auto;
	height: auto;
	padding: 15px 27px;
	margin-left: 15px;
	border: none;
	border-radius: 10px;
	font-weight: 700;
	font-size: 1.1rem;
	cursor: pointer;
	color: #5C24B4;
	background: rgba(255, 255, 255, 0.35);
	box-shadow: 9px 12px 18px rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(21.5px);
	z-index: 1;
}
.button2:hover {
	box-shadow: 0px 25px 20px rgba(116, 51, 253, 0.15);
	transition: 300ms;
	transform: scale(1.05);
}
.s-one .row {
	margin-top: 0px;
}
nav {
	position: sticky;
}
.hero-img-section {
	display: flex;
	position: relative;
}
.hero-img {
	width: 100%;
	max-width: 520px;
	margin: 0 auto;
	float: right;
}
.hero-img-coin {
	position: absolute;
}
.hero-heading{
	padding: 0px;
}
.hero-heading h1{
	margin-bottom: 30px;
}
.details-section {
	width: 100%;
	display: flex;
	justify-content: space-between;
	order: 3;
}
.details-box {
	display: flex;
	align-items: center;
	padding: 25px;
	background: rgba(255, 255, 255, 0.35);
	margin: 5px;
	background: rgba(255, 255, 255, 0.51);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(14.6px);
	-webkit-backdrop-filter: blur(14.6px);
	border: 1px solid rgba(255, 255, 255, 0.27);
}

.details-box p {
	font-size: 0.8rem;
	font-weight: 300;
}


.details-icon {
	width: 4.3rem;
}
.details-text {
	width: 100%;
	margin-left: 20px;
}





/*/////////////////////////    S TWO    /////////////////////////////////////*/
.s-two {
	padding-top: 5%;
	background-image: url(img/service-bg-1.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}
.services h1 {
	font-size: 6rem;
	line-height: 6rem;
}
.services p {
	max-width: 700px;
}
.services-image-section {
	margin: 0 auto;
}
.services-img {
	width: 100%;
}
.services-heading-color {
	background: linear-gradient(91.68deg, #5C24B4 6.4%, rgba(239, 147, 235, 0.85) 56.95%);
	background: -o-linear-gradient(91.68deg, #5C24B4 6.4%, rgba(239, 147, 235, 0.85) 56.95%);
	background: -moz-linear-gradient(91.68deg, #5C24B4 6.4%, rgba(239, 147, 235, 0.85) 56.95%);
	background: -ms-linear-gradient(91.68deg, #5C24B4 6.4%, rgba(239, 147, 235, 0.85) 56.95%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	
}


/*/////////////////////////    S-THREE    /////////////////////////////////////*/
.s-three {
	padding-top: 5%;
	background-image: url(img/service-bg-2.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}


/*/////////////////////////    S-FOUR   /////////////////////////////////////*/




/*/////////////////////////    S-FIVE   /////////////////////////////////////*/
.s-five {
	background-image: url(img/testimonial-bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}
#s-five .container {
	height: 100vh !important;
}

.testimonial-heading {
	color: #5C24B4;
	margin: 0 auto;
	width: fit-content;
	padding: 15PX 20px;
	border: 2px solid #5C24B4;
	border-radius: 10px;
	border-radius: 15px;
	margin-bottom: 25px;
}
.q-mark-img {
	margin: 16px 0px 20px;
}

.s-five .container  {
	flex-wrap: wrap;
}

.testimonial .row {
	max-width: 1200px;
}
.testimonial .row .tabs {
	all: unset;
	margin-right: 50px;
	display: flex;
	flex-direction: column;
}
.testimonial .row .tabs li {
	all: unset;
	display: block;
	position: relative;
}
.testimonial .row .tabs li.active::before {
	position: absolute;
	content: "";
	width: 50px;
	height: 50px;
	background: #5C24B4;
	border-radius: 50%;
}
.testimonial .row .tabs li.active::after {
	position: absolute;
	content: "";
	width: 30px;
	height: 30px;
	background: #5C24B4;
	border-radius: 50%;
}
.testimonial .row .tabs li:nth-child(1) {
	align-self: flex-end;
}
.testimonial .row .tabs li:nth-child(1)::before {
	left: 64%;
	bottom: -50px;
}
.testimonial .row .tabs li:nth-child(1)::after {
	left: 97%;
	bottom: -81px;
}
.testimonial .row .tabs li:nth-child(1) figure img {
	margin-left: auto;
}
body .testimonial .row .tabs li:nth-child(2) {
	align-self: flex-start;
}
.testimonial .row .tabs li:nth-child(2)::before {
	right: -65px;
	top: 50%;
}
.testimonial .row .tabs li:nth-child(2)::after {
	bottom: 101px;
	border-radius: 50%;
	right: -120px;
}
.testimonial .row .tabs li:nth-child(2) figure img {
	margin-right: auto;
	max-width: 300px;
	width: 100%;
	margin-top: -50px;
}
.testimonial .row .tabs li:nth-child(3) {
	align-self: flex-end;
}
.testimonial .row .tabs li:nth-child(3)::before {
	right: -10px;
	top: -66%;
}
.testimonial .row .tabs li:nth-child(3)::after {
	top: -130px;
	border-radius: 50%;
	right: -46px;
}
.testimonial .row .tabs li:nth-child(3) figure img {
	margin-left: auto;
	margin-top: -50px;
}
.testimonial .row .tabs li:nth-child(3):focus {
	border: 10px solid red;
}
.testimonial .row .tabs li figure {
	position: relative;
}
.testimonial .row .tabs li figure img {
	display: block;
}
.testimonial .row .tabs li figure::after {
	content: "";
	position: absolute;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border: 4px solid #5C24B4;
	border-radius: 50%;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.testimonial .row .tabs li figure:hover::after {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.testimonial .row .tabs.carousel-indicators li.active figure::after {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.testimonial .row .carousel > h3 {
	font-size: 20px;
	line-height: 1.45;
	color: rgba(0, 0, 0, .5);
	font-weight: 600;
	margin-bottom: 0;
}
.testimonial .row .carousel h1 {
	font-size: 40px;
	line-height: 1.225;
	margin-top: 23px;
	font-weight: 700;
	margin-bottom: 0;
}
.testimonial .row .carousel .carousel-indicators {
	all: unset;
	padding-top: 43px;
	display: flex;
	list-style: none;
}
.testimonial .row .carousel .carousel-indicators li {
	background: #000;
	background-clip: padding-box;
	height: 2px;
}
.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper {
	margin-top: 42px;
}
.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper p {
	font-size: 18px;
	line-height: 1.72222;
	font-weight: 500;
	color: rgba(0, 0, 0, .7);
}
.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper h3 {
	color: #000;
	font-weight: 700;
	margin-top: 37px;
	font-size: 20px;
	line-height: 1.45;
	text-transform: uppercase;
}
@media only screen and (max-width: 1200px) {
	.testimonial .row .tabs {
		margin-right: 25px;
   }
}
.previewsSection{
	display: flex;
  justify-content: center;
  align-items: center;
}
.overviewImg {
	margin: 0 auto;
	width: 800%;
	overflow: hidden;
	height: auto;
	position: relative;
}
.overviewText {
	position: relative;
	top: 40%;
	left:25%;
	
	 transform: translate(-50%, -50%);
	font-size: 10rem;
	font-weight: 900;
}
/*/////////////////////////    S-SIX   /////////////////////////////////////*/
.s-six {
	padding-top: 5%;
	background-image: url(img/contact-bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	margin: 20px 0px;
}

.contact-section {
	display: flex;
	margin: 0 auto;
	width: 100%;
	max-width: 1366px;
	height: auto;
	background: rgba(255, 255, 255, 0.51);
	background: rgba(255, 255, 255, 0.51);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(14.6px);
	-webkit-backdrop-filter: blur(14.6px);
	border: 1px solid rgba(255, 255, 255, 0.27);
	padding: 3% 6% 3% 6%;
}

.contact-section p {
	color: black;
}



.contact-img {
	width: 80%;
}
#contact-form {
	width: 100%;
}
label {
	font-style: normal;
	font-weight: 400;
	font-size: 0.9rem;
	color: #615D75;
	margin: 20px 0px 5px 0px;
}
input {
	width: 100%;
	max-width: 400px;
	height: 55px;
	font-size: 1rem;
	font-weight: 400;
	border: none;
	background: #EFEFEF;
	mix-blend-mode: multiply;
	border: 1px solid #E2E2E2;
	border-radius: 93px;
	padding: 5px 30px;
}
input:focus {
	border: none;
	color: #514D69;
	outline: none;
}

textarea {
	font-size: 1rem;
	font-weight: 400;
	width: 100%;
	max-width: 400px;
	border-radius: 30px;
	padding: 30px 30px;
	background: #EFEFEF;
	mix-blend-mode: multiply;
	border: 1px solid #E2E2E2;
	outline: none;
}
.copyright-text {
	margin: 0 auto;
	text-align: center;
	font-size: .6rem;
	font-weight: 400;
}







.testim{
    width: 100%;
}
.testim .wrap{
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}
.testim .arrow{
    display: block;
    position: absolute;
    color: rgb(20, 21, 24);
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}
.testim .arrow:before{
    cursor: pointer;
}
.testim .arrow.left{
    left: 10px;
}
.testim .arrow.right{
    right: 10px;
}
.testim .arrow:hover{
    color: #F0A3ED;
}
.testim .dots{
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
	margin-left: -20PX;
    display: block;
    z-index: 3333;
    height: 12px;
}
.testim .dots .dot{
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgb(216, 216, 216);
    margin: 0 10px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    position: relative;
}
.testim .dots .dot.active,
.testim .dots .dot:hover{
background: #F0A3ED;
border-color: #F0A3ED;
}

.testim .dots .dot.active{
    animation: testim-scale .5s ease-in-out forwards;
}
.testim .cont{
    position: relative;
    overflow: hidden;
}
.testim .cont > div{
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}
.testim .cont > div.inactive{
    opacity: 1;
}
.testim .cont > div.active{
    
    position: relative;
    opacity: 1;
    
}
.testim .cont div .img img{
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}
.testim .cont div h2{
    color: black;
    font-size: 1em;
	font-weight: 700;
    margin: 15px 0;
}
.testim .cont div p{
    font-size: 1.15em;
    color: rgb(34, 34, 34);
    width: 80%;
    margin: auto;
}

.testim .cont div.active .img img{
    animation: testim-show .5s ease-in-out forwards;
}
.testim .cont div.active h2{
    animation: testim-content-in .4s ease-in-out forwards;
}
.testim .cont div.active p {
    animation: testim-content-in .5s ease-in-out forwards;
}
.testim .cont div.inactive .img img{
    animation: testim-hide .5s ease-in-out forwards;
}
.testim .cont div.inactive h2{
    animation: testim-content-out .4s ease-in-out forwards;
}
.testim .cont div.inactive p {
    animation: testim-content-out .5s ease-in-out forwards;
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }
    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }
    70% {
        box-shadow: 0px 0px 10px 5px #5C24B4;
    }
    100% {
        box-shadow: 0px 0px 0px 0px #5C24B4;
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}
@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0);
    }
}
/* coding with nick */

/* Responsive */

@media all and (max-width: 300px) {
    body {
        font-size: 14px;
    }
}
@media all and (max-width: 500px) {
    .testim .arrow{
        font-size: 1.5rem;
    }
    .testim .cont div p{
        line-height: 25px;
    }
}

  /* -------------------BREAK POINT--------------------- */



 
  
  @media all and (min-width: 992px) {
	h1 {
		font-size: 3.2rem;
	}
	.contact-section h1{
		font-size: 3rem;
		max-width: 350px;
	}
	.contact-section p {
		margin-top: 20px;
		max-width: 400px;
	}
  }
  @media all and (min-width: 1254px) {
	h1 {
		font-size: 4rem;
	}
	.details-box {
		max-width: 32%;
		}
}
  @media all and (max-width: 1600px) {
	.hero-heading h1 {
		margin-bottom: 15px;
	}
	
	.hero-img {
		max-width: 450px;
	}
  }
  @media all and (max-width: 1366px) {
	.container {
		width: 90%;
	}
	
	
  }
  @media all and (max-width: 993px) {
	h1 {
		font-size: 3.6rem;
	}
	h3 {
		font-size: 2.5rem;
		font-weight: 800;
	}
	.scroll-control {
		display: none;
	}
	.hero {
		text-align: center;
	}
	.hero-heading {
		height: auto;
		flex: 1;
		order: 2;
		justify-content: center;
		align-content: center;
	}
	.hero-img-coin {
		display: none;
	}
	.hero-img {
		padding: 0;
		width: 100%;
		height: auto;
		margin-bottom: 50px;
	}
	.hero-bg {
		margin-top: 50%;
		width: 90%;
	}
	.hero-heading h1 {
		max-width: 500px !important;
		margin: 20px auto 0px;
	}
	.hero-heading p {
		margin: 15px auto;
		max-width: 500px !important;
	}
	.details-section {
		text-align: left;
		display: flex;
		flex-wrap: wrap;
		z-index: 99;
		margin-top: 80px !important;
	}
	.services {
		display: flex;
		text-align: center;
		justify-content: center;
	}
	.services-img {
		max-width: 400px;
		margin: 0px 0px 40px 0px;
	}
	.services h1 {
		font-size: 5rem;
		line-height: 5rem;
	}
	.services p {
		margin: 0 auto;
	}
	.s-one{
		padding-bottom: 0;
		margin-bottom: 100px;
	}
	
	.s-two, .s-three {
		background-color:white ;
		box-shadow: 5px 4px 66px rgba(0, 0, 0, 0.09);
		width: 90%;
		margin: 0 auto;
		padding: 50px 0px 80px;
		border-radius: 30px;
		margin-bottom: 100px;
	}
	.s-two .services-content-section{
		flex-direction: column-reverse;
	}
	#nav-icon1{
		display: inline;
		z-index: 99999 !important;
	}
	#menu_section {
		
		z-index: 9999 !important;
		display: none;
		position: absolute;
		max-width: 90%;
		min-width: 90%;
		text-align: center;
		align-content: center;
		padding: 80px 0px 40px;
		border-radius: 16px;
		background: rgba(255, 255, 255, 0.85);
		box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
		backdrop-filter: blur(14.6px);
		-webkit-backdrop-filter: blur(14.6px);
		border: 1px solid rgba(255, 255, 255, 0.27);
		transition: all .5s ease-in-out;
	}
	#menu_section.show {
		display: block;
		height: auto;
		transition: all .5s ease-in-out;
	}
	
	#menu_section ul {
		padding: 0;
		
	}
	#menu_section li {
		width: fit-content;
		display: block;
		font-weight: 600;
		font-size: 25px;
		margin: 0 auto;
		padding: 3px 0;
	}
	.menuList li::after {
		content:"";
		bottom: 5px;
	}
	.contactButton {
		float: none;
		width: auto;
		height: auto;
		padding: 20px 40px;
		border: none;
		border-radius: 15px;
		background: #5C24B4;
		color: white;
		cursor: pointer;
		margin: 35px 0px 30px;
		font-size: 25px;
		
	}
	.contactButton:hover {
		box-shadow: 0px 25px 20px rgba(0, 0, 0, 0.15);
		transition: 700ms;
		background-color: black;
	}
	.brand {
		float: left;
	}
	.contact-section {
		border-radius: 16px;
		background: rgba(255, 255, 255, 0.51);
		border-radius: 16px;
		box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
		backdrop-filter: blur(14.6px);
		-webkit-backdrop-filter: blur(14.6px);
		border: 1px solid rgba(255, 255, 255, 0.27);
		padding: 80px;
	}
	.contact-section {
		display: flex;
		flex-direction: column;
		text-align: center;
	}
	.contact-section-1  {
		max-width: 100% !important;
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.contact-section-2 {
		max-width: 100% !important;
	}
	.contact-section h1 {
		max-width: 400px;
	}
	.contact-section p {
		max-width: 400px;
	}
	.contact-img {
		width: 60%;
		height: auto;
	}
	.contact-section-2 {
		width: 80%;
		margin: 0 auto;
		align-items: center;
		justify-content: center;
	}
	input {
		max-width: 100%;
	}
	textarea {
		max-width: 100%;
	}
	
	
  }
  @media all and (max-width: 780px) {
	h3 {
		font-size: 2.3rem;
		font-weight: 800;
	}
	.hero-heading {
		padding: 0 30px;
	}
	.scroll-control {
		display: none;
	}
	.s-two, .s-three {
		padding: 40px 0;
	}
	
	
}
@media all and (max-width: 600px) {
	h1 {
		font-size: 12vw;
	}
	h3 {
		font-size: 2.3rem;
		font-weight: 800;
	}
}
@media all and (max-width: 414px) {
	h1 {
		font-size: 13vw;
	}
	.top-img {
		display: none;
	}
	.s-one {
		margin-top: 0;
	}
	
	.brand {
		width: 50%;
		padding-top: 7px;
	}
	.hero-img {
		width: 100%;
		min-width: none;
	}
	.hero-heading h1 {
		margin-top: 60px;
	}
	.hero-heading p {
		margin-top: 40px;
	}
	.services {
		flex-direction: column;
	}
	.services h1 {
		font-size: 3.5rem;
		line-height: 3.7rem;
	}
	.services p {
		font-size: 110%;
		margin-bottom: 50px;
	}

	.contact-section {
		width: 100%;
		text-align: center;
		padding: 70px 0px;
		margin-bottom: 20px;
	}
	
	
	.contact-img {
		width: 100%;
	}
	.contact-section-2 {
		width: 100%;
	}
	.contact-section-2 .button1 {
		float: none;
	}
	

	

}



  /*-------------------BREAK POINT END---------------------*/
  
  /*-------------------PAGE X ---------------------*/
	.x {
		padding-bottom: 40px;
	}
	.page-other.container {
		width: 90%;
		max-width: 1600px;
		height: auto;
		margin: 0 auto;
	}
	.page-other .hero-bg {
		width: 100%;
		height: auto;
	}
	.page-other h1 {
		font-size: 400%;
	}

	.product-intro {
		padding: 0px;
		display: flex;
		width: 100%;
		height: auto;
		margin: 50px 0;
		background: rgba(255, 255, 255, 0.51);
		border-radius: 16px;
		box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
		backdrop-filter: blur(14.6px);
		-webkit-backdrop-filter: blur(14.6px);
		border: 1px solid rgba(255, 255, 255, 0.27);
	}
	.product-intro h2 {
		color: #3A117B;
		margin-bottom: 30px;
	}
	
	
	.intro-text-section {
		padding: 70px;
		justify-content: center;
		background: rgba(255, 255, 255, 0.51);
		border-radius: 16px;
		box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
		backdrop-filter: blur(14.6px);
		-webkit-backdrop-filter: blur(14.6px);
		border: 1px solid rgba(255, 255, 255, 0.27);
	}
	.intro-img-section {
		display: flex;
		align-items: center;
		padding: 5px;
		justify-content: center;
		border-radius: 30px;
	}
	.intro-img {
		width: 100%;
		max-width: 500px;
		height: auto;
	}
	.summery-peragraph {
		background: #F4F5FA;
		box-shadow: 0px 24px 26px rgba(0, 0, 0, 0.1);
		border-radius: 19px;
		padding: 40px;
		width: 100%;
		margin: 50px 0;
	}
	.summery-peragraph p {
		color: black;
		text-align: center;
	}
	.s-seven .container {
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.summery-section {
		position: relative;
		width: 100%;
		max-width: 900px;
		background-color: #3A117B;
		border-radius: 30px;
		height: auto;
		padding: 70px;
		margin: 80px 0;
		margin: 0 auto;
	}
	.summery-section h4 {
		color: #B1AEFF;
		margin: 20px 0px 50px;
	}
	.summery-section p {
		color: white;
	}
	.summery-tooltip {
		position: relative;
		display: flex;
		flex-wrap: wrap;

	}
	.s-tooltip-box {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 60px;
		height: 60px;
		border-radius: 50%;
		background-color: #2E0B64;
		font-size: 1.5rem;
		cursor: pointer;
		margin: 10px 20px 10px 0px;
		position: relative;
		transition: opacity 1s ease-in;

		z-index: 2;
	}
	.s-tooltip-box:hover .s-tooltip-text {
		visibility: visible;
		opacity: 1;
	}
	.s-tooltip-box:hover {
		box-shadow: 0px 0px 11px rgba(177, 174, 255, 0.37);
	}
	.summery-tooltip span {
		font-weight: 800;
		text-align: center;
		color: #6C6AB8;
		font-weight: 700;
		text-align: left;
		
	}
	.s-tooltip-text {
		position: absolute;
		left:0;
		bottom: 140%;
		width: 500%;
		height: auto;
		text-align: left;
		padding: 30px;
		background-color: #B1AEFF;
		border-radius: 15px;
		box-shadow: 11px 24px 150px rgba(0, 0, 0, 0.49);
		font-size: 1.4rem;
		font-weight: 600 !important;
		line-height: 130%;
		color: #6C6AB8;
		visibility: hidden;
		opacity: 0;
		transition: opacity 0.3s ease-in;
	
	}
	.s-tooltip-text::before {
		content: " ";
		position: absolute;
		top: calc(100% - 17px);
		left: 7%;
		width: 25px;
		height: 25px;
		transform: rotate(45deg);
		background-color: #B1AEFF;
	}

	.summery-img {
		position: absolute;
		right: 0;
		margin-right: 4%;
		bottom: -30px;
		width: 35%;
		max-width: 350px;
		z-index: 1;
}


	@media all and (min-width: 992px) {
		.product-intro {
			margin-bottom: 100px;
		}
	}

	@media all and (max-width: 992px) {
		.page-other .hero {
			display: flex;
			flex-direction: column;
		}
		.page-other .hero h1 {
			font-size: 400% !important;
			text-align: center;
			max-width: 560px !important;
		}
		.intro-text-section {
			width: 100%;
			background: rgba(255, 255, 255, 0.51);
			border-radius: 16px;
			box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
			backdrop-filter: blur(14.6px);
			-webkit-backdrop-filter: blur(14.6px);
			border: 1px solid rgba(255, 255, 255, 0.27);
			text-align: center;
		}
		.intro-img-section {
			padding: 60px 0;
		}
		
		.intro-text-section p {
			max-width: 100%;
		}
		
		.hero-bg {
			margin-top: -40px;
			width: 150%;
		}
		.product-intro {
			flex-direction: column;
			display: flex;
			text-align: left;
			padding: 0;
		}
		
		
		
		.page-other .product-intro {
			display: flex;
			flex-direction: column;
			flex: 3;
			order: 3;
			justify-content: center;
			align-content: center;
		}
		.summery-img {
			position: absolute;
			right: 0;
			bottom: -60px;
			width: 45%;
			margin-right: 0;
	}
	
		
	}
	@media all and (max-width: 768px) {
		
		.page-other page-heading {
			flex: 1;
			order: 2;
		}
		
		.page-other page-heading h1 {
			margin: 0 auto;
		}
		.product-intro {
			margin: 100px 0;
		}
		.hero-bg {
			margin-top: 60px;
			
		}
		
		.summery-img {
			display: none;
	}
	.s-tooltip-text {
		position: absolute;
		left:0;
		bottom: 140%;
		width: 300%;
		padding: 15px;
	
	}
	.s-tooltip-text::before {
		content: " ";
		position: absolute;
		top: calc(100% - 9px);
		left: 12%;
		width: 15px;
		height: 15px;
		transform: rotate(45deg);
		background-color: #B1AEFF;
	}
	.summery-section {
		padding: 45px;
		margin: 0;
		width: 100%;
	}
	
		
	}
	@media all and (max-width: 600px) {
		.s-tooltip-box {
			display: flex;
			justify-content: center;
			align-items: center;
		}
		.s-tooltip-text {
			width: 246%;
		}
		.intro-text-section {
			padding: 50px;
		}
		
	
	.summery-tooltip {
		text-align: center;
	}
	

	}
	@media all and (max-width: 412px) {
		
		
		.page-other .hero h1 {
			text-align: left;
		}
		.intro-text-section {
			text-align: left;
		}
		.product-intro {
			width: 100%;
			margin-bottom: 0;
		}
		.intro-text-section {
			padding: 30px;
		}
		.product-intro h2 {
			margin-bottom: 20px;
		}
		
		.summery-section {
			min-width: 100%;
			margin: 50px 0px;
		}
		.summery-tooltip {
			display: none;
		}
	}
  /*-------------------PAGE X  END ---------------------*/




































/*-------------------ENTRENCE ANIMATION---------------------*/
  .animate {
	animation-duration: 0.75s;
	animation-duration: 1s;
	animation-delay: 0.5s;
	animation-name: animate-fade;
	animation-timing-function: cubic-bezier(.26,.53,.74,1.48);
	animation-fill-mode: backwards;
  }
  
  /* Fade In */
  .animate.fade {
	animation-name: animate-fade;
	animation-timing-function: ease;
  }
  @keyframes animate-fade {
	0% { opacity: 0; }
	100% { opacity: 1; }
  }
  
  /* Pop In */
  .animate.pop {
	animation-name: animate-pop;
  }
  @keyframes animate-pop {
	0% {
	  opacity: 0;
	  transform: scale(0.5, 0.5);
	}
	100% {
	  opacity: 1;
	  transform: scale(1, 1);
	}
  }
  
  /* Blur In */
  .animate.blur {
	animation-name: animate-blur;
	animation-timing-function: ease;
  }
  @keyframes animate-blur {
	0% {
	  opacity: 0;
	  filter: blur(15px);
	}
	100% {
	  opacity: 1;
	  filter: blur(0px);
	}
  }
  
  /* Glow In */
  .animate.glow {
	animation-name: animate-glow;
	animation-timing-function: ease;
  }
  @keyframes animate-glow {
	0% {
	  opacity: 0;
	  filter: brightness(3) saturate(3);
	  transform: scale(0.8, 0.8);
	}
	100% {
	  opacity: 1;
	  filter: brightness(1) saturate(1);
	  transform: scale(1, 1);
	}
  }
  
  /* Grow In */
  .animate.grow {
	animation-name: animate-grow;
  }
  @keyframes animate-grow {
	0% {
	  opacity: 0;
	  transform: scale(1, 0);
	  visibility: hidden;
	}
	100% {
	  opacity: 1;
	  transform: scale(1, 1);
	}
  }
  
  /* Splat In */
  .animate.splat {
  animation-name: animate-splat;
  }
  @keyframes animate-splat {
  0% {
  opacity: 0;
  transform: scale(0, 0) rotate(20deg) translate(0, -30px);
  }
  70% {
	  opacity: 1;
	  transform: scale(1.1, 1.1) rotate(15deg);
  }
  
  85% {
	  opacity: 1;
	  transform: scale(1.1, 1.1) rotate(15deg) translate(0, -10px);
  }
  
  100% {
	  opacity: 1;
	  transform: scale(1, 1) rotate(0) translate(0, 0);
  }
  }
  
  /* Roll In */
  .animate.roll {
  animation-name: animate-roll;
  }
  @keyframes animate-roll {
  0% {
  opacity: 0;
  transform: scale(0, 0) rotate(360deg);
  }
  100% {
	  opacity: 1;
	  transform: scale(1, 1) rotate(0deg);
  }
  }
  
  /* Flip In */
  .animate.flip {
  animation-name: animate-flip;
  transform-style: preserve-3d;
  perspective: 1000px;
  }
  @keyframes animate-flip {
  0% {
  opacity: 0;
  transform: rotateX(-120deg) scale(0.9,0.9);
  }
  100% {
	  opacity: 1;
	  transform: rotateX(0deg) scale(1,1);
  }
  }
  
  /* Spin In */
  .animate.spin {
  animation-name: animate-spin;
  transform-style: preserve-3d;
  perspective: 1000px;
  }
  @keyframes animate-spin {
  0% {
  opacity: 0;
  transform: rotateY(-120deg) scale(0.9,0.9);
  }
  100% {
	  opacity: 1;
	  transform: rotateY(0deg) scale(1,1);
  }
  }
  
  /* Slide In */
  .animate.slide { animation-name: animate-slide; }
  @keyframes animate-slide {
  0% {
  opacity: 0;
  transform: translate(0,20px);
  }
  100% {
	  opacity: 1;
	  transform: translate(0,0);
  }
  }
  
  /* Drop In */
  .animate.drop { 
  animation-name: animate-drop; 
  animation-timing-function: cubic-bezier(.77,.14,.91,1.25);
  }
  @keyframes animate-drop {
  0% {
  opacity: 0;
  transform: translate(0,-300px) scale(0.9, 1.1);
  }
  95% {
	  opacity: 1;
	  transform: translate(0,0) scale(0.9, 1.1);
  }
  96% {
	  opacity: 1;
	  transform: translate(10px,0) scale(1.2, 0.9);
  }
  97% {
	  opacity: 1;
	  transform: translate(-10px,0) scale(1.2, 0.9);
  }
  98% {
	  opacity: 1;
	  transform: translate(5px,0) scale(1.1, 0.9);
  }
  99% {
	  opacity: 1;
	  transform: translate(-5px,0) scale(1.1, 0.9);
  }
  100% {
	  opacity: 1;
	  transform: translate(0,0) scale(1, 1);
  }
  }
  
  /* Animation Delays */
  .delay-1 {
  animation-delay: 0.6s;
  }
  .delay-2 {
  animation-delay: 0.7s;
  }
  .delay-3 {
  animation-delay: 0.8s;
  }
  .delay-4 {
  animation-delay: 0.9s;
  }
  .delay-5 {
  animation-delay: 1s;
  }
  .delay-6 {
  animation-delay: 1.1s;
  }
  .delay-7 {
  animation-delay: 1.2s;
  }
  .delay-8 {
  animation-delay: 1.3s;
  }
  .delay-9 {
  animation-delay: 1.4s;
  }
  .delay-10 {
  animation-delay: 1.5s;
  }
  .delay-11 {
  animation-delay: 1.6s;
  }
  .delay-12 {
  animation-delay: 1.7s;
  }
  .delay-13 {
  animation-delay: 1.8s;
  }
  .delay-14 {
  animation-delay: 1.9s;
  }
  .delay-15 {
  animation-delay: 2s;
  }
  
  @media screen and (prefers-reduced-motion: reduce) {
	.animate {
	  animation: none !important;
	}
  }

/*-------------------   ENTRENCE ANIMATION    END   ---------------------*/