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

*{padding:0;
	margin:0;
	border:0;	
	outline:none;
	text-decoration:none;
	list-style:none;
}
html{
    overflow-x: hidden ;
}
body{
	font-size:14px;	
	line-height:20px;
	overflow-x:hidden;
	overflow-y:hidden;
	height:auto;
	font-family: 'Inter', sans-serif;
}
/*@font-face {
    font-family: 'myriad_proregular';
    src: url('../fonts/myriad_pro_regular-webfont.woff2') format('woff2'),
         url('../fonts/myriad_pro_regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}*/
/*input[type="button"],
input[type="submit"]{
	transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
}*/
h1,h2,h3,h4,h5,h6{
	margin:0;			   
}
p{
	margin:0;
}
ul,label{
	margin:0;
	padding:0;
}
.clear{
	clear:both;
	height:auto;	
}
.img-full,.body-div{
	width:100%;	
}
.area-lft{
	float:left;	
}
.area-rgt{
	float:right;	
}
.no-bg{
	background:none !important;	
}
.white-bg{
	background: #fff;
}
.img-fluid {
	max-width:100%;
	height:auto
}
/*---------------main css---------------*/
#header-section{
	background-image: url(../images/body-bg.svg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	width: 100%;
	margin: 0 auto;
}
#header-section .wrapper-head{
	position: relative;
}
#header-section .wrapper-head nav .logo{
	
}
#header-section .wrapper-head nav .logo img{
	width: 72.5%;
}
nav{
    width: 100%;
    display: flex;
    padding: 1rem 0;
}

/* Styling Navigation Links*/
.nav-links{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-transform: uppercase;
    list-style: none;
    width: 100%;
}
.nav-links li a{
    margin: 0 0.7vw;
    text-decoration: none;
    transition: all ease-in-out 350ms;
    padding: 10px;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    text-transform: capitalize;
     color: #000;
}
.nav-links li.active a{
    color:#ffce1c;
}
.nav-links li a:hover{
    color:#ffce1c;
    padding: 10px;
}
.nav-links li{
    position:relative;
}
.nav-links li a:hover::before{
    width: 80%;
}
/*Buttons Styling*/
#header-section .nav-links li button.login-button{
    padding:15px 20px;
    margin-left: 20px;
    cursor:pointer;
    font-size: 13px;
    background: #14142B;
    border-radius: 2em;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    overflow: hidden;
    font-family:'Inter', sans-serif;
}
#header-section .nav-links li button.login-button:hover{
    color:#14142B;
    background:#ffce1c;
    transition: all ease-in-out 350ms;
}
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffce1c;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover, 
.hvr-sweep-to-right:focus, 
.hvr-sweep-to-right:active {
   color: #14142B;
}
.hvr-sweep-to-right:hover:before, 
.hvr-sweep-to-right:focus:before, 
.hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
/*Navigation Icon Styling*/
.hamburger div{
    width: 23px;
    height: 2px;
    background: #000;
    margin: 5px;
    transition: all 0.3s ease;
}
.hamburger{
    display: none;
}
/*Responsive Adding Media Queries*/
@media screen and (max-width:800px){
.logo{
	padding:10px 0 0 15px;
}
nav{
    position: inherit;
    z-index: 3;
    padding-top:0;
    width: 98%;
}
.hamburger{
	display:block;
	position: absolute;
	cursor: pointer;
	right: 5%;
	top: 50%;
	transform: translate(-5%, -50%);
	z-index: 2;
	transition: all 0.7s ease;
}
.nav-links{
	background: #e8b806;
	justify-content: flex-start;
	position: fixed;
	opacity: 1;
	height: 100vh;
	width: 100%;
	flex-direction: column;
	clip-path: circle(50px at 90% -20%);
/*	-webkit-clip-path: circle(50px at 90% -10%);*/
	transition: all 1s ease-out;
	pointer-events: none;
	padding: 40px 0;
}
.nav-links.open{
    clip-path: circle(1000px at 90% -10%);
    -webkit-clip-path: circle(1000px at 90% -10%);
    pointer-events: all;
}
.nav-links li{
    opacity: 0;
}
.nav-links li a{
	padding: 12px 0;
	display: inline-block;
}
.nav-links li a:hover{
	background: #fff !important;
}
.nav-links li:nth-child(1){
    transition: all 0.5s ease 0.2s;
}
.nav-links li:nth-child(2){
    transition: all 0.5s ease 0.4s;
}
.nav-links li:nth-child(3){
    transition: all 0.5s ease 0.6s;
}
.nav-links li:nth-child(4){
    transition: all 0.5s ease 0.7s;
}
.nav-links li:nth-child(5){
    transition: all 0.5s ease 0.8s;
}
.nav-links li:nth-child(6){
    transition: all 0.5s ease 0.9s;
    margin: 0;
}
.nav-links li:nth-child(7){
    transition: all 0.5s ease 1s;
    margin: 0;
}
.nav-links li:last-child{
    margin-top:15px;
}
li.fade{
    opacity: 1;
}
/* Navigation Bar Icon on Click*/
.toggle .bars1{
/*    transform: rotate(-45deg) translate(-5px, 6px);*/
	transform: rotate(-45deg) translate(-4px, 5px);
}
.toggle .bars2{
    transition: all 0s ease;
    width: 0;
}
.toggle .bars3{
    transform: rotate(45deg) translate(-5px, -6px);
}
}

.banner-pannal{
	width: 90%;
	margin: 0 auto;
}
.banner-pannal .banner-lft-pan{
	width: 45%;
	padding: 7.5rem 0 5rem;
}
.banner-pannal .banner-lft-pan h1{
	font-size: 108px;
	line-height: 101px;
	color: #373D47;
	font-weight: 600;
	position: relative;
	z-index: 0;
}
.banner-pannal .banner-lft-pan h1::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	border-radius: 350px;
	background: linear-gradient(138deg, #FFF 9.02%, rgba(255, 255, 255, 0.00) 86.21%);
	width: 280px;
	height: 280px;
	z-index: 0;
	left: -55px;
	top: -60px;
	z-index: -1;
}
.banner-pannal .banner-lft-pan p {
	font-size: 22px;
	font-weight: 400;
	line-height: 30px;
	padding: 30px 110px 40px 0;
	position: relative;
	z-index: 1;
}
.banner-pannal .banner-lft-pan .rd-mr {
	padding: 15px 35px;
	cursor: pointer;
	font-size: 13px;
	background: #14142B;
	border-radius: 2em;
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	overflow: hidden;
}
.banner-pannal .banner-lft-pan .rd-mr:hover{
    color:#14142B;
    background: #ffce1c;
    transition: all ease-in-out 350ms;
}
.banner-pannal .banner-rgt-pan{
	width: 55%;
	padding: 1rem 0;
	align-self: start;
	position: relative;
}
.banner-pannal .banner-rgt-pan:before{
	position: absolute;
	content: '';
	background-image: url(../images/bulb.png);
	background-repeat: no-repeat;
	background-position: center top;
	width: 87px;
	height: 106px;
	top: 17rem;
	left: -2rem;
	background-size: 80%;
	transition:0.5s all;
}
.banner-pannal .banner-rgt-pan:hover:before{
	background-image: url(../images/bulb2.png);
	background-size: 81%;
}
.banner-pannal .banner-rgt-pan:after{
	position: absolute;
	content: '';
	background-image: url(../images/rocket.svg);
	background-repeat: no-repeat;
	background-position: center top;
	width: 77px;
	height: 93px;
	top: 7rem;
	right: 7rem;
	background-size: 90%;
}
.ban-desktop-ver{
	display: block;
}
.ban-mob-ver{
	display: none;
}
.counter-cell-pan{
	width: 100%;
	margin: 0 auto;
}
.counter-cell-pan .counter-cell{
	text-align: center;
	width: 33.33%;
	margin: 1%;
}
.counter-cell-pan .counter-cell p,
.counter-cell-pan .counter-cell span{
	color: #373D47;
	font-size: 94px;
	line-height: 100px;
	font-weight: 600;
	display: inline-block;
}
.counter-cell-pan .counter-cell ins{
	color: #5C626B;
	font-size: 20px;
	line-height: 24px;
	font-weight: 600;
	text-align: center; 
	display: block;
	padding: 15px 0; 
}
.service-hldr{
	width: 100%;
	margin: 0 auto;
	padding: 4rem 0 0;
}
.service-hldr .service-top-hldr{
	width: 100%;
}
.service-hldr .service-top-hldr h2{
	font-size: 34px;
	line-height: 40px;
	color: #0F110F;
	font-weight: 600;
	text-align: center;
	padding: 0 0 15px;
}
.service-hldr .service-top-hldr p{
	font-size: 18px;
	line-height: 26px;
	color: #62686B;
	text-align: center;
	width: 80%;
	margin: 0 auto;
	padding: 0 0 3rem;
}
.service-hldr .ser-card {
	width: 40%;
	padding: 2.5% 4%;
	margin: 0 5% 0 0;
	background: #fff;
	border-radius: 30px 0px;
	min-height: 350px;
	box-shadow: 40px 45px 114px 0px rgba(0, 0, 0, 0.06);
}
.service-hldr .ser-card .circle{
	width: 96px;
	height: 96px;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 30px 0;
	transition: transform .7s ease-in-out;
}
.service-hldr .ser-card:hover .circle{
	transform: rotate(360deg);
}
.service-hldr .row-width-full:first-child .ser-card:nth-child(1) .circle{
	background: #B9E8F2;
}
.service-hldr .row-width-full:first-child .ser-card:nth-child(2) .circle{
	background: #FFD1DB;
}
.service-hldr .row-width-full:last-child .ser-card:nth-child(1) .circle{
	background: #FFE7B5;
}
.service-hldr .row-width-full:last-child .ser-card:nth-child(2) .circle{
	background: #F2E9B9;
}
.service-hldr .ser-card .circle img{
	width: 40px;
	height: 40px;
}
.service-hldr .ser-card h3{
	font-size: 22px;
	line-height: 28px;
	font-weight: 600;
	color: #3B3663;
}
.service-hldr .ser-card p{
	font-size:15px;
	line-height: 22px;
	font-weight: 400;
	padding: 15px 0;
	color: #696687;
}
.partners-logo-wrap{
	width: 100%;
	margin: 0 auto;
	padding: 2rem 0 3rem;
}

.about-us-pan{
	background: #A0C3D3;
	padding: 15px 0 0 0;
	position: relative;
}
.about-us-pan .about-us-hldr{
	width: 100%;
	margin: 0 auto;
}
.about-us-pan .abt-left-area{
	width: 47.5%;
	padding: 4rem 0 5.5rem;
}
.about-us-pan .abt-left-area h3{
	font-size: 34px; 
	line-height: 40px;
	font-weight: 600;
	color: #1F3B47;
}
.about-us-pan .abt-left-area p{
	font-size: 17px; 
	line-height: 24px;
	font-weight: 600;
	color: #284654;
	padding:1.5rem 3rem 2rem 0;
}
.about-us-pan .abt-left-area .rd-mr {
	padding: 15px 35px;
	cursor: pointer;
	font-size: 13px;
	background: #14142B;
	border-radius: 2em;
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	overflow: hidden;
}
.about-us-pan .abt-left-area .rd-mr:hover{
    color:#14142B;
    background: #ffce1c;
    transition: all ease-in-out 350ms;
}
.about-us-pan .abt-right-area{
	width: 52.5%;
}
.about-us-pan .abt-right-area img{
	position: absolute;
	width: 35%;
	height: auto;
	right: 15%;
	bottom: 0;
}
.about-us-desktop-pan{
	display: block;
}
.about-us-mob-pan{
	display: none;
}
.pricing-hldr {
	width: 100%;
	margin: 0 auto;
	padding: 4rem 0 5rem;
}
.pricing-hldr .plan-box-main-wrap{
	width: 90%;
	margin: 0 auto;
}
.pricing-hldr .pricing-top-hldr h2 {
	font-size: 34px;
	line-height: 40px;
	color: #0F110F;
	font-weight: 600;
	text-align: center;
	padding: 0 0 15px;
}
.pricing-hldr .pricing-top-hldr p {
	font-size: 18px;
	line-height: 26px;
	color: #62686B;
	text-align: center;
	width: 80%;
	margin: 0 auto;
	padding: 0 0 4rem;
}
.pricing-hldr .plan-box{
	padding:3%;
	border-radius: 20px; 
	border: 2px solid #D7D7D7; 
	width: 30.33%;
	margin:0 15px;
	transition: all ease-in-out 350ms;
}
.pricing-hldr .plan-box:hover{
	border: 2px solid #14142B; 
}
.pricing-hldr .plan-box h3{
	color: #240E13; 
	font-size: 24px;
	line-height: 30px;
	font-weight: 600;
	padding:0 0 10px;
	display: block;
}
/*.pricing-hldr .plan-box span{
	display: inline-block;
	background: #eee;
	padding: 7px 15px;
	border-radius: 40px;
	font-size: 13px;
	line-height: 18px;
	color: #7C7C7C;
}*/
.pricing-hldr .plan-box .price-info{
	padding: 15px 0 10px;
}
.pricing-hldr .plan-box .price-info p.price{
	color: #240E13;
	font-size: 33px;
	line-height: 40px;
	font-weight: 500;
}
.pricing-hldr .plan-box .price-info small{
	color: #AD5769;
	font-size: 13px;
	line-height: 18px;
	font-weight: 500;
}
.pricing-hldr .plan-box .price-info span.line{
	width: 250px;
	height: 2px;
	background: #ECECEC;
	display: block;
	padding: 0;
	margin: 30px auto;
}
.pricing-hldr .plan-box .price-info .listing-det{
	text-align: left;
}
.pricing-hldr .plan-box .price-info .listing-det li{
	font-weight: 600;
	padding:0 0 30px 0;
	display: flex;
}
.pricing-hldr .plan-box .price-info .listing-det li p{
	font-size: 15px;
	line-height: 22px;
	color: #754751;
}
.pricing-hldr .plan-box .price-info .listing-det li i{
	padding:0 10px 0 0;
	width: 22px;
	height: 22px;
}
.pricing-hldr .plan-box .price-info .get-started-but {
	padding: 20px 35px;
	cursor: pointer;
	font-size: 13px;
	line-height: 18px;
	background: transparent;
	border-radius: 100px;
	color: #000;
	font-weight: 500;
	text-transform: uppercase;
	overflow: hidden;
	border: 2px solid #000;
	display: inline-block;
	margin: 15px 0 0 0;
}
.pricing-hldr .plan-box:hover .price-info .get-started-but {
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	overflow: hidden;
	border: 2px solid #14142B;
	background: #14142B;
	transition: all ease-in-out 350ms;
}
.pricing-hldr .plan-box .price-info .get-started-but:hover{
    transition: all ease-in-out 350ms;
}

.reporting-pan{
	background: #B9E8F2; 
	padding: 15px 0 0 0;
	overflow: hidden;
	min-height: 450px;
}
.reporting-pan .animated h1{
	color: #14142B; 
	font-size: 134px;
	line-height: 166px;
	font-weight: 700;
	word-wrap: wrap;
}
.reporting-pan .animated {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}

.reporting-pan .animated > * {
  display: inline-block;
  position: relative;
  animation: 15s linear 0s infinite alternate move;
}

.reporting-pan .animated > *.min {
  min-width: 100%;
}

@keyframes move {
  0%,
  25% {
    transform: translateX(0%);
    left: 0%;
  }
  75%,
  100% {
    transform: translateX(-100%);
    left: 100%;
  }
}
.reporting-pan .animated2 h1{
	color: transparent; 
	font-size: 134px;
	line-height: 166px;
	font-weight: 700;
	padding: 110px 0 0 0;
	word-wrap: wrap;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: black;
}
.reporting-pan .animated2 {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}

.reporting-pan .animated2 > * {
  display: inline-block;
  position: relative;
  animation: 15s linear 0s infinite alternate move2;
}

.reporting-pan .animated2 > *.min {
  min-width: 100%;
}
/*@keyframes move2 {
  0%,
  25% {
    transform: translateX(-100%);
    left: 0%;
  }
  75%,
  100% {
    transform: translateX(0%);
    left: 100%;
  }
}*/
@keyframes move2 {
  0%,
  25% {
   transform: translateX(0%);
    left: 0%;
  }
  75%,
  100% {
    transform: translateX(-100%);
    left: 100%;
  }
}
.reporting-pan .man-report-div{
	position: relative;
}
.reporting-pan .man-report-div-inr{
	position: absolute;
	top:-148px;
	left: 40%;
	width: auto;
}
.reporting-pan .man-report-div img{
	display: block;
	width: 75%;
}
.testimonial-hldr{
	width: 100%;
	margin: 0 auto;
	padding: 4rem 0 0;
}
.testimonial-hldr .testimonial-top-hldr h2 {
	font-size: 34px;
	line-height: 40px;
	color: #0F110F;
	font-weight: 600;
	text-align: center;
	padding: 0 0 15px;
}
.testimonial-hldr .testimonial-top-hldr p {
	font-size: 18px;
	line-height: 26px;
	color: #62686B;
	text-align: center;
	width: 85%;
	margin: 0 auto;
	padding: 0 0 2.5rem;
	font-weight: 500;
}
.testimonial-pan {
	width: 120%;
	margin: 0 -10%;
	padding-bottom:1.5rem;
}
.testimonial-pan .testimonial-box{
	background: none;
	padding: 40px 30px;
	border-radius: 20px;
	margin: 0 20px;
	cursor: pointer;
	border: 1px solid #D7D7D7;
}
.testimonial-pan .testimonial-box img{
	width: 76px;
	height: 76px;
}
.testimonial-pan .testimonial-box:hover{
	background: linear-gradient(110deg, #F2FCFE 28.07%, #FEFCEF 99.36%);
	border: 1px solid transparent;
}
.testimonial-pan .testimonial-box p{
	color: #000;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	padding: 20px 0 25px;
}
.testimonial-pan .testimonial-box h4{
	color: #000;
	font-size: 20px;
	line-height: 24px;
	font-weight: 400;
}
/* owl theme css edit  */
.owl-theme .owl-nav.disabled + .owl-dots {
	margin-top: 20px;
	margin-bottom: 20px;
}
.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 5px;
	background: #EAEAEA;
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity .2s ease;
	border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
	background: #14142B;
}
/* owl theme css edit */

.digital-exp-wrap {
	background-color: #FBCABB;
	padding: 50px 0 0 0;
	background-image: url(../images/digital-exp-sec-bg.png);
	background-position: 92.5% 50%;
	background-repeat: no-repeat;
	background-size: 50%;
}
.digital-exp-wrap .digital-exp-hldr{
	width:100%;
	margin: 0 auto;
}
.digital-exp-wrap .digital-exp-hldr .digital-exp-desktop-ver{
	display: block;
}
.digital-exp-wrap .digital-exp-hldr .digital-exp-mob-ver{
	display: none;
}
.digital-exp-wrap .digital-exp-hldr .digital-exp-wrap-lft{
	width: 55%;
	padding: 4rem 0 5rem;
}
.digital-exp-wrap .digital-exp-hldr .digital-exp-wrap-lft h2{
	font-size: 34px;
	line-height: 40px;
	font-weight: 600;
	color: #653323;
}
.digital-exp-wrap .digital-exp-hldr .digital-exp-wrap-lft p{
	color: #9A4931;
	font-size: 17px;
	line-height: 22px;
	font-weight: 600;
	padding: 40px 60px 30px 0;
}
.digital-exp-wrap .digital-exp-hldr .digital-exp-wrap-lft .rd-mr {
	padding: 15px 35px;
	cursor: pointer;
	font-size: 13px;
	background: #14142B;
	border-radius: 2em;
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	overflow: hidden;
}
.digital-exp-wrap .digital-exp-hldr .digital-exp-wrap-lft .rd-mr:hover {
	color: #14142B;
	background: #ffce1c;
	transition: all ease-in-out 350ms;
}
.digital-exp-wrap .digital-exp-hldr .digital-exp-wrap-rgt{
	width: 45%;
}
.digital-exp-wrap .digital-exp-hldr .digital-exp-wrap-rgt img{
	display: block;
	margin: 0 auto;
}

.form-contact-pannal{
	width: 100%;
	margin: 0 auto;

}
.form-contact-pannal .left-pan{
	width: 45%;
	padding: 10rem 0;
	position: relative;
}
.form-contact-pannal .left-pan::before {
	position: absolute;
	content: '';
	width: 310px;
	height: 375px;
	background-image: url(../images/plane.png);
	background-repeat: no-repeat;
	background-size: 100%;
	left: -220px;
	top: 70px;
}
.form-contact-pannal .left-pan::after {
	position: absolute;
	content: '';
	width: 90%;
	height: 90%;
	left: -10%;
	top: 5%;
	z-index: -1;
	border-radius: 100%;
	background: linear-gradient(148deg, rgba(255, 253, 240, 0.00) 8.48%, #FFFDF0 80.67%);
}
.form-contact-pannal .left-pan h2{
	font-size: 48px;
	line-height: 54px;
	font-weight: 500;
	color: #0F110F;
	padding: 0 0 1.5rem;
}
.form-contact-pannal .left-pan span.line{
	width: 112px;
	height: 1px;
	background: #D8D8D8;
	display: block;
	margin: 0 0 2rem;
}
.form-contact-pannal .left-pan p{
	font-size: 20px;
	line-height: 30px;
	font-weight: 400;
	color: #696687;
	padding: 0 0 5px;
}
.form-contact-pannal .left-pan a{
	font-size: 36px;
	line-height: 42px;
	font-weight: 500;
	color: #0F110F;
	display: inline-block;
	position: relative;
	z-index: 1;
}

/*--form section area--*/
.form-contact-pannal .right-pan{
	width: 52.5%;
	padding: 0 0 0 2.5%;
}
.form-contact-pannal .right-pan form input[type=text],
.form-contact-pannal .right-pan form input[type=email],
.form-contact-pannal .right-pan form input[type=number],
.form-contact-pannal .right-pan form textarea{ 
/*.form-contact-pannal .right-pan form select */
  width: 96%;
  padding: 16px 15px;
  margin: 10px 2%;
  display: inline-block;
  border: 1px solid #D7D7D7;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  font-weight:600;
  font-size:15px;
  color: #696687;
  appearance: textfield;
}
.form-contact-pannal .right-pan form textarea{ 
	resize: none;
}
.form-contact-pannal .right-pan form input[type=text]:hover,
.form-contact-pannal .right-pan form input[type=email]:hover,
.form-contact-pannal .right-pan form input[type=number]:hover,
.form-contact-pannal .right-pan form textarea:hover{
	 border-color: #000;
}
.form-contact-pannal .right-pan form input[type=text]:focus,
.form-contact-pannal .right-pan form input[type=email]:focus,
.form-contact-pannal .right-pan form input[type=number]:focus,
.form-contact-pannal .right-pan form textarea:focus{
	box-shadow: inset 0 2px 7px rgba(0,0,0,.2);
	outline: 1px solid #000;
}
.form-contact-pannal .right-pan form input[type=text]::-webkit-input-placeholder,
.form-contact-pannal .right-pan form input[type=email]::-webkit-input-placeholder,
.form-contact-pannal .right-pan form input[type=number]::-webkit-input-placeholder,
.form-contact-pannal .right-pan form textarea::-webkit-input-placeholder{
	color:#696687;
	font-weight:600;
	font-size:15px;
	font-family: 'Inter', sans-serif;
}
.form-contact-pannal .right-pan form input[type=text]::-moz-placeholder,
.form-contact-pannal .right-pan form input[type=email]::-moz-placeholder,
.form-contact-pannal .right-pan form input[type=number]::-moz-placeholder,
.form-contact-pannal .right-pan form textarea::-moz-input-placeholder{
	color:#696687;
	font-weight:600;
	font-size:15px;
	font-family: 'Inter', sans-serif;
}
/*.form-contact-pannal .right-pan form input[type=submit]{*/
.form-contact-pannal .right-pan form button{
	padding:18px 35px;
	cursor: pointer;
	font-size: 13px;
	line-height: 18px;
	background: #14142B;
	border-radius: 2em;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	overflow: hidden;
	margin: 10px 2%;
	width: auto;
}
.form-contact-pannal .right-pan form button:hover {
	color: #14142B;
	background: #ffce1c;
	transition: all ease-in-out 350ms;
}
/*--/form section area--*/


/*--newsletter pannal--*/
.newsletter-pannal{
	background: #B9E8F2;
	padding: 10rem 0 6rem;
}
.newsletter-pannal .newsletter-pannal-inr{
	text-align: center;
}
.newsletter-pannal .newsletter-pannal-inr h1{
	font-size: 78px;
	line-height: 48px;
	font-weight: 500;
	color: #0F110F;
	display: block;
}
.newsletter-pannal .newsletter-pannal-inr h1.mob{
	display: none;
}
.newsletter-pannal .newsletter-pannal-inr p{
	font-size: 22px;
	line-height: 28px;
	font-weight: 400;
	color: #3F5D63;
	text-align: center;
	padding: 30px 0;
}
.newsletter-pannal .newsletter-pannal-inr p.desktop{
	display: block;
}
.newsletter-pannal .newsletter-pannal-inr p.mob{
	display: none;
}
.newsletter-pannal .newsletter-pannal-inr .newsletter-add{
	position: relative;
	width: 100%;
}
.newsletter-pannal .newsletter-pannal-inr .newsletter-add input[type=email]{
	width: 55%;
	padding:24px 25px;
	display: inline-block;
	border-radius: 50px;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
	font-weight:600;
	font-size:15px;
	color: #696687;
}
.newsletter-pannal .newsletter-pannal-inr .newsletter-add input[type=email]::-webkit-placeholder,
.newsletter-pannal .newsletter-pannal-inr .newsletter-add input[type=email]::-moz-placeholder{
	font-size:15px;
	line-height: 20px;
	font-weight: 600;
	color: #696687;
}
.newsletter-pannal .newsletter-pannal-inr .newsletter-add button {
	padding: 18px 52px;
	cursor: pointer;
	font-size: 15px;
	line-height: 18px;
	background: #14142B;
	border-radius: 2em;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	overflow: hidden;
	margin: 10px 2%;
	width: auto;
	position: absolute;
	left: 57.75%;
	top: -4px;
}
.newsletter-pannal .newsletter-pannal-inr .newsletter-add button:hover{
	color: #14142B;
	background: #ffce1c;
	transition: all ease-in-out 350ms;
}
/*--/newsletter pannal--*/


/*--footer pannal--*/
.footer-pan{
	background-color:#0F110F;
	background-image: url(../images/footer-bg.png);
	background-repeat: repeat;
	padding: 3rem 0 0;
}
.footer-pan-inr{
	width: 100%;
	margin: 0 auto;
}
.footer-pan .footer-pan-inr .ft-lft-hldr{
	width: 25%;
	padding: 2rem 0;
}
.footer-pan .footer-pan-inr .ft-lft-hldr .ft-logo{

}
.footer-pan .footer-pan-inr .ft-lft-hldr .ft-logo a{
	display: inline-block;
}
.footer-pan .footer-pan-inr .ft-lft-hldr p{
	color: #fff;
	padding: 20px 0 45px;
}
.footer-pan .footer-pan-inr .ft-lft-hldr ul.social{
	padding: 0;
}
.footer-pan .footer-pan-inr .ft-lft-hldr ul.social li{
	display: inline-block;
	padding: 0 10px;
}
.footer-pan .footer-pan-inr .ft-lft-hldr ul.social li:first-child{
	padding-left: 0;
}
.footer-pan .footer-pan-inr .ft-lft-hldr ul.social li:hover a img{
	 filter: invert(8%) sepia(13%) saturate(3207%) hue-rotate(130deg) brightness(95%) contrast(80%);
   
}
.footer-pan .footer-pan-inr .ft-rgt-hldr{
	width: 65%;
	padding: 2rem 0;
	margin: 0 0 0 10%;
}
.footer-pan .footer-pan-inr .ft-rgt-hldr .row-end,
.footer-pan .footer-pan-inr .ft-rgt-hldr .row-end .row-d-flex{
	align-items: center;
}
.footer-pan .footer-pan-inr .ft-rgt-hldr .row-end .row-d-flex:first-child{
	margin-right: 2rem;
}
.footer-pan .footer-pan-inr .ft-rgt-hldr .round-icon-shape{
	width: 55px;
	height: 55px;
	border-radius: 100px;
	border: 1px solid #6B6B6B;
	background: #0F110F;
	display: flex;
	justify-content: center;
	align-items: center;
	transition:0.5s all;
}
.footer-pan .footer-pan-inr .ft-rgt-hldr .row-d-flex:hover .round-icon-shape{
	background: #222;
}
.footer-pan .footer-pan-inr .ft-rgt-hldr .detail-box{
	margin:0 0 0 15px;
}
.footer-pan .footer-pan-inr .ft-rgt-hldr .detail-box a{
	display: block;
	color: #fff;
}
.footer-pan .footer-pan-inr .ft-rgt-hldr .detail-box a.phone-num{
	font-size: 21px;
	line-height: 26px;
	font-weight: 600;
}
.footer-pan .footer-pan-inr .ft-rgt-hldr .detail-box p{
	color: #fff;
	font-size: 14px;
	line-height: 22px;
	font-weight: 600;
}
.footer-pan .footer-pan-inr .ft-rgt-hldr .detail-box p.desktop{
	display: block;
}
.footer-pan .footer-pan-inr .ft-rgt-hldr .detail-box p.mob{
	display: none;
}
.footer-pan .footer-pan-inr .ft-rgt-hldr .detail-box a.email-add{
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
}
.footer-pan .footer-pan-inr .ft-rgt-hldr .bus-info-mob{
	display: none;
}
.footer-pan .footer-pan-inr .ft-rgt-hldr .bus-info-desktop{
	display: block;
}
.footer-pan .footer-pan-inr .ft-rgt-hldr .ft-full-rgt-hldr{
	width: 100%;
	display: flex;
	padding: 2rem 0;
}
.footer-pan .footer-pan-inr .ft-rgt-hldr .ft-full-rgt-hldr ul{
	padding: 0 8.5rem 0 0;
}
.footer-pan .footer-pan-inr .ft-rgt-hldr .ft-full-rgt-hldr ul li{
	padding:8px 0;
}
.footer-pan .footer-pan-inr .ft-rgt-hldr .ft-full-rgt-hldr ul li a{
	color: #fff;
	font-size: 15px;
	line-height: 22px;
	font-weight: 400;
	transition:0.5s all;
	text-align: left;
	display: block;
}
.footer-pan .footer-pan-inr .ft-rgt-hldr .ft-full-rgt-hldr ul li a:hover{
	color: #ffce1c;
}
.footer-pan .footer-pan-inr .divider{
	width: 100%;
	height: 1px;
	background: #323232;
}
.footer-pan .footer-pan-inr .cpt-text{
	padding:25px 0;
	text-align: center;
} 
.footer-pan .footer-pan-inr .cpt-text p{
	color: #fff;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
}
.footer-pan .footer-pan-inr .cpt-text p a{
	color: #fff;
	transition:0.5s all;
}
.footer-pan .footer-pan-inr .cpt-text p a:hover{
	color: #ffce1c;
}
/*--/footer pannal--*/


/*--start tooltip 18.01.24--*/
.tooltip {
    position: relative;
}
.tooltip::after {
    background-color: #000;
    border-radius: 5px;
    color: #fff;
    display: none;
    padding: 5px 15px;
    position: absolute;
    text-align: center;
    z-index: 999;
    font-size: 13px;
    width: auto;
}
.tooltip.top.tw::after {
    content: 'Twitter';
    top: 0;
    left: 50%;
    transform: translate(-50%, calc(-100% - 10px));
}
.tooltip.top.fb::after {
    content: 'Facebook';
    top: 0;
    left: 50%;
    transform: translate(-50%, calc(-100% - 10px));
}
.tooltip.top.gplus::after {
    content: 'Google Plus';
    top: 0;
    left: 50%;
    transform: translate(-50%, calc(-100% - 10px)); 
    width: 77px; 
}
.tooltip.top.pin::after {
    content: 'Pinterest';
    top: 0;
    left: 50%;
    transform: translate(-50%, calc(-100% - 10px));
}
.tooltip.top.in::after {
    content: 'Linkedin';
    top: 0;
    left: 50%;
    transform: translate(-50%, calc(-100% - 10px));
}
.tooltip.bottom::after {
    content: 'bottom';
    bottom: 0;
    left: 50%;
    transform: translate(-50%, calc(100% + 10px));
}
.tooltip.right::after {
    content: 'right';
    top: 0;
    right: 0;
    transform: translateX(calc(100% + 10px));
}
.tooltip.left::after {
    content: 'left';
    top: 0;
    left: 0;
    transform: translateX(calc(-100% - 10px));
}
.tooltip:hover::after {
    display: block;
}
.tooltip::before {
    background-color: #000;
    content: ' ';
    display: none;
    position: absolute;
    width: 15px;
    height: 15px;
    z-index: 999;
}
.tooltip:hover::before {
    display: block;
}
.tooltip.top::before {
    top: 0;
    left: 50%;
    transform: translate(-50%, calc(-100% - 5px)) rotate(45deg);
}
.tooltip.bottom::before {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, calc(100% + 5px)) rotate(45deg);
}
.tooltip.right::before {
    top: 50%;
    right: 0;
    transform: translate(calc(100% + 5px), -50%) rotate(45deg);
}
.tooltip.left::before {
    top: 50%;
    left: 0;
    transform: translate(calc(-100% - 5px), -50%) rotate(45deg);
}
/*--end tooltip 18.01.24--*/


/*-----------------------------about us page start-----------------------------*/
.head-bg{
	background-image: url(../images/inner-page-bg.svg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	width: 100%;
	margin: 0 auto;
}
.head-bg .breadcrumb{
	border-top: 1px solid #DCDCDC;
	border-bottom: 1px solid #DCDCDC;
	text-align: center;
	width: 220px;
	margin:3rem auto 1rem;
	padding: .4rem 0;
}
.head-bg .breadcrumb li{
	display: inline-block;
	padding: 0 5px;
}
.head-bg .breadcrumb li a{
	text-transform: uppercase;
	color: #000;
	font-size: 12px;
	line-height: 18px;
	letter-spacing: 5px;
	font-weight: 500;
}
/*.head-bg .breadcrumb li.active a{
	color: #FEC321;
}*/
.head-bg .page-head{
	text-align: center;
	width: 1200px;
	margin: 0 auto;
	padding: 0 0 6rem 0;
}
.head-bg .page-head h1{
	font-size: 112px;
	line-height: 124px;
	color:#373D47;
	font-weight: 500;
	padding: 0 0 1rem;
}
.head-bg .page-head p{
	font-size: 18px;
	line-height: 24px;
	color:#62686B;
	font-weight: 500;
}


/*--about us section start--*/
.about-us-pannal{
	background-image: url(../images/about-sec-right-bg.svg);
	background-repeat: no-repeat;
	background-position: 95% center;
	background-size: 43%;
	position: relative;
}
.about-us-pannal .about-sec-lft{
	width: 60%;
	text-align: left;
	padding: 7rem 0;
}
.about-us-pannal .about-sec-lft h3{
	font-size: 34px;
	line-height: 42px;
	font-weight: 500;
	color: #373D47;
	padding: 0 0 1rem 0;
}
.about-us-pannal .about-sec-lft p{
	font-size: 18px;
	line-height: 26px;
	font-weight: 500;
	color: #000;
}
.about-us-pannal .about-sec-rgt{
	width: 35%;
}
.about-us-pannal .about-sec-rgt img {
	position: absolute;
	width: 30%;
	right: 5rem;
	bottom: -2px;
	margin: 0 auto;
	display: block;
	z-index: 0;
}
/*--/about us section end--*/

.what-we-do-sec-pannal{
	padding: 5rem 0;
	position: relative;
	z-index: 1;
	background-image: url(../images/body-bg.svg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	width: 100%;
}
.what-we-do-sec-pannal .top-section{
	width: 70%;
	margin: 0 auto;
	text-align: center;
}
.what-we-do-sec-pannal .top-section h3{
	color: #373D47;
	font-size: 34px;
	line-height: 36px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 0 0 1.25rem 0;
}
.what-we-do-sec-pannal .top-section p{
	color: #62686B;
	font-size: 18px;
	line-height: 24px;
	font-weight: 500;
	padding: 0 0 3.5rem;
}
.what-we-do-sec-pannal .bottom-section{
	width: 100%;
}
.what-we-do-sec-pannal .bottom-section .boxes{
	width: 31.83%;
	background: #fff;
	padding: 70px 50px;
	margin: 0 1.5%;
	text-align: center;
	box-shadow: 40px 45px 114px 0px rgba(0, 0, 0, 0.06); 
	border-radius: 0px 45px;
	min-height: 370px;
}
.what-we-do-sec-pannal .bottom-section .boxes h3{
	color: #5C626B;
	background: #fff;
	font-size: 22px;
	line-height: 26px;
	padding: .5rem 0 1.25rem;
}
.what-we-do-sec-pannal .bottom-section .boxes h3.text-uppercase{
	text-transform: uppercase;
}
.what-we-do-sec-pannal .bottom-section .boxes p{
	font-size: 15px;
	line-height: 22px;
	color: #696687;
	min-height:130px;
}
.what-we-do-sec-pannal .bottom-section .boxes .icon-box{
	width: 96px;
	height: 96px;
	background: #f00;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	border-radius: 100px;
	margin: 0 auto 20px;
	transition: transform .7s ease-in-out;
}
.what-we-do-sec-pannal .bottom-section .boxes:nth-child(1) .icon-box{
	background: #F2E9B9;
}
.what-we-do-sec-pannal .bottom-section .boxes:nth-child(2) .icon-box{
	background: #B9E8F2;
}
.what-we-do-sec-pannal .bottom-section .boxes:nth-child(3) .icon-box{
	background:#FFD1DB;
}
.what-we-do-sec-pannal .bottom-section .boxes:hover .icon-box{
	transform: rotate(360deg);
}

/*--our team section--*/
.our-team-wrap{
	padding: 4rem 0 3rem;
	width: 70%;
	margin: 0 auto;
	text-align: center;
}
.our-team-wrap h3{
	color: #373D47;
	font-size: 34px;
	line-height: 38px;
	font-weight: 500;
	padding: 0 0 20px;
}
.our-team-wrap p{
	color: #62686B;
	font-size: 18px;
	line-height: 26px;
	font-weight: 500;
	text-align: center;
}
.our-team-pannal{
	padding: 0 0 4rem;
}
.our-team-pannal .team-members-div{
	width: 100%;
}
.our-team-pannal .team-members-div .member-box {
	width: 23.5%;
	padding: 0 .75%;
	text-align: center;
}
.our-team-pannal .team-members-div .member-box h3{
	color: #000;
	font-size: 24px;
	line-height: 30px;
	font-weight: 500;
}
.our-team-pannal .team-members-div .member-box .member-box-info{
	padding: 20px 0;
}
.our-team-pannal .team-members-div .member-box p{
	color: #000;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500; 
}
.our-team-pannal .team-members-div .member-box img{
	border-radius:45px 0;
}
.what-we-do-sec-pannal .top-section p {
	width: 100%;
	margin: 0 auto;
}
/*--/our team section--*/

/*-----------------------------/about us page end-----------------------------*/


/*-----------------------------service page start-----------------------------*/
.service-pan{

}
.service-pan .seo-sec-lft{
	width: 50%;	
	padding: 6rem 0 7rem;
}
.service-pan .seo-sec-lft h3{
	font-size: 34px;
	line-height: 40px;
	color: #373D47;	
	font-weight: 500; 
	padding: 0 0 20px;
}
.service-pan .seo-sec-lft p{
	font-size: 17px;
	line-height: 32px;
	color: #000;	
	font-weight: 400; 
}
.service-pan .seo-sec-rgt{
	width: 50%;	
	position: relative;
}
.service-pan .seo-sec-rgt.desktop{
	display: block;
}
.service-pan .seo-sec-rgt.mobile{
	display: none;
}
.service-pan .seo-sec-rgt img {
	position: absolute;
	width: 60%;
	left: 10%;
	height: auto;
	bottom: -235px;
	z-index: 1;
} 
.service-pan .seo-sec-rgt::after {
	position: absolute;
	content: '';
	width: 410px;
	height: 410px;
	border-radius: 500px;
	bottom: -250px;
	left: 110px;
	z-index: 0;
	background: linear-gradient(148deg, rgba(255, 253, 240, 0.00) 8.48%, #FFFDF0 80.67%); 
}
.strategy-sec{
	background: #A0C3D3;
	position: relative;
	z-index: 1;
}
.strategy-sec .strategy-sec-left{
	width: 50%;
}
.strategy-sec .strategy-sec-left .strategy-img-inr img.desktop{
	display: block;
}
.strategy-sec .strategy-sec-left .strategy-img-inr img.mobile{
	display: none;
}
.strategy-sec .strategy-sec-rgt h3.desktop{
	display: block;
}
.strategy-sec .strategy-sec-rgt h3.mobile{
	display: none;
}
.strategy-sec .strategy-sec-left .strategy-img-inr{
	text-align: center;
	position: relative;
}
.strategy-sec .strategy-sec-left .strategy-img-inr::before {
	position: absolute;
	content: '';
	text-align: center;
	width: 450px;
	height: 450px;
	border-radius: 400px;
	z-index: -1;
	background: linear-gradient(148deg, rgba(181, 214, 229, 0.00) 8.48%, #B5D6E5 80.67%);
	left: -50px;
	top: -230px;
}
.strategy-sec .strategy-sec-left .strategy-img-inr img {
	width: 90%;
	height: auto;
	position: absolute;
	left: -40px;
	bottom: -281px;
}
.strategy-sec .strategy-sec-rgt {
	width: 40%;
	padding-right: 10%;
	padding-top: 10rem;
	padding-bottom: 5rem;
}
.strategy-sec .strategy-sec-rgt h3{
	color: #373D47;
	font-size: 34px;
	line-height: 38px;
	font-weight: 500;
	padding: 0 0 15px;
}
.strategy-sec .strategy-sec-rgt p{
	color: #000;
	font-size: 17px;
	line-height: 33px;
	font-weight: 400;
	letter-spacing: .5px; 
}

.social-media-mkt-pan{
	position: relative;
}
.social-media-mkt-pan .social-media-mkt-pan-lft{
	width: 50%;
	padding: 0 0; 
}
.social-media-mkt-pan .social-media-mkt-pan-lft h3{
	color:#373D47;
	font-size: 34px;
	line-height: 40px;
	font-weight: 500;
	letter-spacing: -0.408px; 
	padding:0 0 20px;
}
.social-media-mkt-pan .social-media-mkt-pan-lft p{
	color:#000;
	font-size: 17px;
	line-height: 33px;
	font-weight: 400;
}
.social-media-mkt-pan .social-media-mkt-pan-rgt{
	width: 50%;
} 
.social-media-mkt-pan .social-media-mkt-pan-rgt .social-media-mkt-rgt-inr{

}
.social-media-mkt-pan .social-media-mkt-pan-rgt .social-media-mkt-rgt-inr img{
	display: block;
	margin: 0 auto;
	padding: 3rem 0 0;
	width: 500px;
}
.social-media-mkt-pan .social-media-mkt-pan-rgt .social-media-mkt-rgt-inr img.desktop{
	display: block;
}
.social-media-mkt-pan .social-media-mkt-pan-rgt .social-media-mkt-rgt-inr img.mobile{
	display: none;
}

.content-mng-pan{
	background: #B9E8F2;
	padding: 2.5rem 0;
}
.content-mng-pan .content-mng-pan-lft{
	width: 50%;
	position: relative;
} 
.content-mng-pan .content-mng-pan-lft::before {
	position: absolute;
	content: '';
	border-radius: 100%;
	opacity: 0.4;
	background: linear-gradient(148deg, rgba(225, 244, 255, 0.00) 8.48%, #E1F4FF 80.67%);
	width: 380px;
	height: 380px;
	z-index: 0;
	bottom: -70px;
}
.content-mng-pan .content-mng-pan-lft img{
	position: relative;
	z-index: 1;
	width: 85%;
	margin: 0 auto;
	display: block;
}
.content-mng-pan .content-mng-pan-rgt{
	width: 47.5%;
	padding: 0 2.5% 0 0; 
}
.content-mng-pan .content-mng-pan-rgt h3{
	color:#000;
	font-size: 34px;
	line-height: 40px;
	font-weight: 500;
	letter-spacing: -0.408px; 
	padding:0 0 20px;
}
.content-mng-pan .content-mng-pan-rgt p {
  color: #000;
  font-size: 17px;
  line-height: 33px;
  font-weight: 400;
}
.web-degn-dev-pan{

}
.web-degn-dev-pan .web-degn-dev-pan-rgt{
	width: 50%;
	position: relative;
}
.web-degn-dev-pan .web-degn-dev-pan-rgt:before{
	position: absolute;
	content: '';
	width: 500px;
	height: 50px;
	background: #fff;
	top: -6.35rem;
	left: 0;
}
.web-degn-dev-pan .web-degn-dev-pan-rgt h3{
	color:#373D47;
	font-size: 34px;
	line-height: 40px;
	font-weight: 500;
	padding:0 0 20px;
}
.web-degn-dev-pan .web-degn-dev-pan-rgt p{
	color:#000;
	font-size: 17px;
	line-height: 33px;
	font-weight: 400;
}
.web-degn-dev-pan .web-degn-dev-pan-lft{
	width: 50%;
}
.web-degn-dev-pan .web-degn-dev-pan-lft img{
	width: 80%;
	padding: 2.5rem 0 0;
	display: block;
	margin: 0 auto;
}
.web-degn-dev-pan .web-degn-dev-pan-lft img.desktop{
	display: block;
}
.web-degn-dev-pan .web-degn-dev-pan-lft img.mobile{
	display: none;
}
.gr-mul-sec{
	background: #FBCABB;
}
.gr-mul-sec .gr-mul-sec-left{
	width: 50%;
}
.gr-mul-sec .gr-mul-sec-left img{
	width: 100%;
	display: block;
	margin: 0 auto;
	padding: 1.5rem 0 0 0;
}
.gr-mul-sec .gr-mul-sec-left img.desktop{
	display: block;
}
.gr-mul-sec .gr-mul-sec-left img.mobile{
	display: none;
}
.gr-mul-sec .gr-mul-sec-rgt{
	width: 45%;
	padding: 7rem 0 5.5rem;
}
.gr-mul-sec .gr-mul-sec-rgt h3{
	color:#000;
	font-size: 34px;
	line-height: 40px;
	font-weight: 500;
	padding:0 0 20px;
}
.gr-mul-sec .gr-mul-sec-rgt p{
	color: #000;
	font-size: 17px;
	line-height: 33px;
	font-weight: 400;
}
/*-----------------------------/service page end-----------------------------*/



/*-----------------------------pricing page start-----------------------------*/
.pricing-main-hldr .plan-box{
	position: relative;
}
.pricing-main-hldr .plan-box:hover{
	border: 2px solid #FF0A38;
}
.pricing-main-hldr .plan-box:hover .price-info .get-started-but {
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	overflow: hidden;
	border: 2px solid #FF0A38;
	background: #FF0A38;
	transition: all ease-in-out 350ms;
}
.pricing-main-hldr .plan-box .price-info .get-started-but:hover{
    transition: all ease-in-out 350ms;
}
.pricing-main-hldr .plan-box:nth-child(2) img.seller-tag{
	position: absolute;
	width: 110px;
	left:-11px;
	top: 28px;
}
.pricing-packages-mn-wrap{
	background-image: url(../images/pricing-bg.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	width: 100%;
	padding: 3rem 0;
}
.pricing-packages-mn-wrap .pricing-packages-inr-hldr{
	width: 100%;
	display: flex;
	justify-content: center;
}
.pricing-packages-mn-wrap .pricing-packages-inr-hldr h2{
	font-size: 34px;
	line-height: 40px;
	font-weight: 500;
	color: #373D47;
	letter-spacing: -.5px;
	text-align: center;
	margin: 0 0 3rem;
}
.pricing-packages-mn-wrap .pricing-table-hldr{
	background: #fff;
	width: 100%;
	border-radius: 20px;
}
.pricing-packages-mn-wrap table.pricing-table.mob{
	display: none;
}
.pricing-packages-mn-wrap table.pricing-table {
	margin: 3rem auto 2rem;
	background: #fff;
	border-collapse: collapse;
	width: 100%;
	display: block;
}
.pricing-packages-mn-wrap table.pricing-table tr th {
	text-align: left;
	padding: 25px 4%;
	color: #373D47;
	font-size: 34px;
	line-height: 36px;
	font-weight: 500;
}
.pricing-packages-mn-wrap table.pricing-table tr th.fst {
	text-align: left;
	width: 35%;
	padding: 25px 4%;
	color: #373D47;
	font-size: 34px;
	line-height: 36px;
	font-weight: 500;
}
.pricing-packages-mn-wrap table.pricing-table tr th.all {
	text-align: left;
	width: 21%;
	padding: 25px 4%;
	color: #373D47;
	font-size: 34px;
	line-height: 36px;
	font-weight: 500;
}
.pricing-packages-mn-wrap table.pricing-table tr td.blue-text{
	color: #5236FF;
	font-size: 21px; 
	line-height: 36px;
	font-weight: 500; 
	border-top: 2px solid #D3D3D3;
	padding: 20px 1% 12px 3%;
	background: #fff;
}
.pricing-packages-mn-wrap table.pricing-table tr td {
	text-align: left;
	width: auto;
	color: #373D47;
	font-size: 17.25px;
	line-height: 24px;
	padding: 28px 0 28px 3%;
}
.pricing-packages-mn-wrap table.pricing-table tr:nth-child(2n) {
	background: #F9F9F9;
}
.pricing-packages-mn-wrap table.pricing-table tr.white-bg {
	background: #fff;
}
.pricing-packages-mn-wrap table.pricing-table tr td.tick {
	padding-left: 100px;
}
.pricing-packages-mn-wrap table.pricing-table tr td.tick.nopad-lft {
	padding-left:0px;
	text-align: center;
}
.pricing-packages-mn-wrap table.pricing-table tr td .button-p {
	padding: 15px 30px;
	cursor: pointer;
	font-size: 13px;
	border: 1px solid #14142B;
	border-radius: 2em;
	color: #14142B;
	font-weight: 500;
	text-transform: uppercase;
	overflow: hidden;
	transition:0.5s all;
}
.pricing-packages-mn-wrap table.pricing-table tr td .button-p:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #14142B !important;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.pricing-packages-mn-wrap table.pricing-table tr td .button-p:hover, 
.pricing-packages-mn-wrap table.pricing-table tr td .button-p:focus, 
.pricing-packages-mn-wrap table.pricing-table tr td .button-p:active {
   color: #fff;
}
.pricing-packages-mn-wrap table.pricing-table tr td .button-p:hover:before, 
.pricing-packages-mn-wrap table.pricing-table tr td .button-p:focus:before, 
.pricing-packages-mn-wrap table.pricing-table tr td .button-p:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
/*-----------------------------/pricing page end-----------------------------*/


/*-----------------------------contact page start-----------------------------*/
.contact-wrap{
	padding: 3.5rem 0 4rem;
}
.contact-wrap .wrapper .row{
	align-items:start;
}
.contact-wrap .map-hldr{
	width: 50%;
}
.contact-wrap .contact-form{
	width: 46%;
	padding-left: 4%;
}
.contact-wrap .contact-form form h3{
	color: #373D47; 
	font-size: 34px; 
	line-height: 36px;
	font-weight: 500; 
	padding: 0 0 20px 0;
}
.contact-wrap .contact-form form input[type="text"],
.contact-wrap .contact-form form input[type="email"],
.contact-wrap .contact-form form input[type="phone"]{
	width: 100%;
	padding: 16px 15px;
	display: inline-block;
	border: 1px solid #DBDBDB;
	border-radius: 10px;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 15px;
	color: #373D47;
	margin: 10px 0;
}
.contact-wrap .contact-form form textarea{
	width: 100%;
	padding: 16px 15px;
	display: inline-block;
	border: 1px solid #DBDBDB;
	border-radius: 10px;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 15px;
	color: #373D47;
	margin: 10px 0;
	resize: none;
}
.contact-wrap .contact-form form input[type="text"]:focus,
.contact-wrap .contact-form form input[type="email"]:focus,
.contact-wrap .contact-form form input[type="phone"]:focus,
.contact-wrap .contact-form form textarea:focus{
	box-shadow: inset 0 2px 7px rgba(0,0,0,.2);
	outline: 1px solid #000;
}
.contact-wrap .contact-form form input[type="text"]::-webkit-input-placeholder,
.contact-wrap .contact-form form input[type="email"]::-webkit-input-placeholder,
.contact-wrap .contact-form form input[type="phone"]::-webkit-input-placeholder,
.contact-wrap .contact-form form textarea::-webkit-input-placeholder {
	color:#373D47;
	font-weight:500;
	font-size:14px;
	line-height: 36px;
}
.contact-wrap .contact-form form input[type="text"]::-moz-placeholder,
.contact-wrap .contact-form form input[type="email"]::-moz-placeholder
.contact-wrap .contact-form form input[type="phone"]::-moz-placeholder
.contact-wrap .contact-form form textarea::-moz-placeholder{
	color:#373D47;
	font-weight:500;
	font-size:14px;
	line-height: 36px;
}
.contact-wrap .contact-form form button[type="submit"] {
	padding: 18px 35px;
	cursor: pointer;
	font-size: 13px;
	line-height: 18px;
	background: #14142B;
	border-radius: 2em;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	overflow: hidden;
	margin: 20px 0 10px;
	width: auto;
}
.faq-wrap{
	background: #FBCABB;
	padding: 4rem 0 5rem;
	text-align: center;
}
.faq-wrap h3{
	font-size: 34px;
	line-height: 36px;
	color: #000;
	font-weight: 500; 
	display: block;
	padding: 0 0 25px;
}
.faq-wrap .accordion-gap{
	margin-bottom: 20px;
}
.faq-wrap .accordion {
  background:#FFF5F2;
  color: #373D47;
  cursor: pointer;
  padding: 25px 30px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition:0.5s all;
  width: 800px;
  margin: 0 auto;
  border-radius: 10px; 
  font-size: 21px; 
  font-weight: 400; 
  position: relative;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.faq-wrap .active, 
.faq-wrap .accordion:hover {
	background-color: #fff;
}

/* Style the accordion panel. Note: hidden by default */
.faq-wrap .panel {
	background: #fff;
	display: none;
	overflow: hidden;
	width: 680px;
	margin: -10px auto 20px;
	padding: 10px 60px 35px 60px;
	transition: min-height 0.2s ease-out;
}
.faq-wrap .panel p{
	text-align: left;
	color: #696687;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
}
.faq-wrap .accordion::after {
	content: '';
	background:#373d47 url(../images/plus.png) no-repeat center center;
	font-size: 22px;
	color: #fff;
	top: 20px;
	position: absolute;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 100px;
	right: 20px;
}

.faq-wrap .active:after {
 	background:#373d47 url(../images/minus.png) no-repeat center center; /* Unicode character for "minus" sign (-) */
}
/*-----------------------------/contact page start-----------------------------*/


/*==============To top css==============*/
#back-top {
	position: fixed;
	bottom: 20px;
	right:25px;
	z-index:99;
}
#back-top a {
	width: 48px;
	height:83px;
	display:block;
	background:url(../images/flame.png) no-repeat left;
}
/*#back-top a:hover {
	background:url(../images/top2.png) no-repeat left;
}*/
/*==============To top css end==============*/



/*--placeholder default colour change--*/
/*::-webkit-input-placeholder{
	color:#000 !important;
	font-weight:400;
	font-size:13px;
}
::-moz-placeholder{
	color:#000 !important;
	font-weight:400;
	font-size:13px;
}
::-ms-input-placeholder{
	color:#000 !important;
	font-weight:300;
	font-size:13px;
}*/
/*--/placeholder default colour change--*/