* {
  box-sizing: border-box;
  font-family: "Jost", serif;
  box-shadow: none;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-shadow: none;
}
body,html {
  margin: 0;
  padding: 0;
  font-family: "Jost", serif;
}

body {
  font-family: "Jost", serif;
  line-height: 1.5;
  background-color: var(--ds-btn-color);
  box-shadow: none;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: var(--eac-body-bgcolor);
}

:root {
  --ins-primary-color: #0ED8D2;
  --ins-blue-color: #494590;
  --ins-red-color: #FE2C4A;
  --ins-heading-color: #232236;
  --ins-white-color: #ffffff;
  --ins-black-color: #000000;

}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  margin: 0;
  padding: 0;
  font-family: "Jost", serif;
}

ul,
p {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-family: "Jost", serif;
}

span {
 font-family: "Jost", serif;
}

ul li {
  list-style-type: none;
}

a {
  text-decoration: none;
 font-family: "Jost", serif;
}

.form-control:focus {
  box-shadow: none;
}

input:focus-visible {
  outline: none;
}

.form-control:focus {
  box-shadow: none;
  border-color: transparent;
}

img {
  max-width: 100%;
}

:focus-visible {
  outline: none;
  border-color: transparent;
}

/* Scroll */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background-color: var(--ins-blue-color);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  height: 100px;
  background-color: var(--ins-primary-color);
}
/* Scroll */
/* button css start*/
.eac-btn, button.eac-btn, input.eac-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  min-height: 48px;
  font-size: 16px;
  font-weight: 500;
  color: var(--eac-white-color);
  background-image: -moz-linear-gradient( 141deg, rgb(255,135,77) 0%, rgb(253,200,48) 100%);
  background-image: -webkit-linear-gradient( 141deg, rgb(255,135,77) 0%, rgb(253,200,48) 100%);
  background-image: -ms-linear-gradient( 141deg, rgb(255,135,77) 0%, rgb(253,200,48) 100%);
  box-shadow: 0px 0px 120px 0px rgba(252, 145, 40, 0.2);
  font-family: "Jost", serif;
  position: relative;
  z-index: 1;
  transition: all .5s ease-in-out;
  overflow: hidden;
  border-radius: 30px;
}

.eac-btn::before{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0);
  border-radius: 30px;
  transition: all .5s ease-in-out;
  background: -webkit-linear-gradient(141deg, rgb(243 184 12) 0%, rgb(255 102 0) 100%);
}
.eac-btn:hover:before{
  transform: scale(1);
}
.bar-btn:hover::after{
  animation: shine .7s cubic-bezier(.01, .56, 1, 1);
}
@keyframes shine {
  100% {
    left: -200%;
  }
}


/* button css End*/
.ins-bgcover{
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 80px;
  overflow: hidden;
}
p{
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  color: var(--eac-para-color);
  font-family: "Jost", serif;
}

/* loader css */
.ins-loader {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fefefe;
}
.loader_circle_1{
  animation: rotateClockwise 1.5s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes rotateClockwise {
  from {
  transform: rotate(0deg);
  }
  to {
  transform: rotate(360deg);
  }
}
.loader_circle_1_counter{
  animation: rotateCounterClockwise 1.5s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes rotateCounterClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
/* .bar-loader img {
  width: 100px;
} */
/*-------------- Banner section css start ----------*/
.ins-banner-section {
  background-image: url('../images/banner-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding: 45px 0 113px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.ins-banner-logo-sec{
  text-align: center;
  margin: 0 auto 40px;
}
.ins-banner-head h4{
  max-width: 512px;
  padding: 8px 24px;
  background-color: var(--ins-primary-color);
  border: 1px solid var(--ins-primary-color);
  border-radius: 100px;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--ins-white-color);
  text-align: center;
  box-shadow: 0px 0px 22px 0px #00545933;
}
.ins-banner-head h1{
  font-size: 54px;
  font-weight: 700;
  text-align: center;
  color: var(--ins-heading-color);
  max-width: 990px;
  margin: 0 auto;
  padding: 24px 0 32px;
}
.ins-banner-head span{
  font-family: "Caveat", cursive;
}
.ins-banner-video-sec{
  box-shadow: 0px 0px 80px 0px #1155581A;
  max-width: 722px;
  border-radius: 20px;
  padding: 18px;
  text-align: center;
  border: 2px solid var(--ins-white-color);
  background: #FFFFFF66;
  margin: 0 auto 50px;
}
.ins-banner-trafficbox{
  max-width: 1170px;
  border-radius: 30px;
  background: #FFFFFFB2;
  border: 1.5px dashed #45FCF6;
  box-shadow: 0px 0px 60px 0px #0ED8D233;
  padding: 50px 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  margin: auto;
}
.ins-traffic-box {
  text-align: center;
  max-width: 260px;
  margin: 0 0 43px;
}
.ins-traffic-img{
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F9FCFF;
  border: 1px solid #BBD9FB;
  border-radius: 100%;
  margin: 0 auto;
}
.ins-traffic-text h5{
  font-size: 24px;
  font-weight: 400;
  color: var(--ins-heading-color);
}
.ins-traffic-text h3{
  font-size: 24px;
  font-weight: 700;
  color: var(--ins-heading-color);
}
.ins-traffic-box:nth-child(2) .ins-traffic-img{
  background: #FFFCF4;
  border: 1px solid #FDEEC8;
}
.ins-traffic-box:nth-child(3) .ins-traffic-img{
  background: #F8FEFF;
  border: 1px solid #8BF0FF;
}
.ins-traffic-box:nth-child(4) .ins-traffic-img{
  background: #FEF9FF;
  border: 1px solid #A687AB;
}
.ins-traffic-box:nth-child(5) .ins-traffic-img{
  background: #F7F5FE;
  border: 1px solid #826ED6;
}
.ins-traffic-box:nth-child(6) .ins-traffic-img{
  background: #F1FDFE;
  border: 1px solid #66EFFF;
}
.ins-origvalue-sec {
  padding: 80px 0 0;
  display: flex;
  align-items: center;
  gap: 29px;
}
.ins-origval-text h5{
  font-size: 36px;
  font-weight: 600;
  color: var(--ins-blue-color);
}
.ins-origval-text h5 span{
  text-decoration: line-through;
}
.ins-origval-text h2{
  font-size: 46px;
  font-weight: 700;
  color: var(--ins-heading-color);
  max-width: 600px;
  padding: 15px 0 37px;
}
.ins-origval-text h4{
  font-size: 22px;
  font-weight: 700;
  color: var(--ins-white-color);
  max-width: 522px;
  /* background-color: var(); */
  background:linear-gradient(180deg, #1BEAE4 0%, #0ED8D2 100%);
  box-shadow: 0px 0px 83.68px 0px #F9802633;
  border-radius: 84px;
  text-align: center;
  padding: 17px 0 17px;
}
/*-------------- Banner section css End ----------*/
/*-------------- Converter-dashbord section css start ----------*/
.ins-converterdashboard-sec{
  position: relative;
  padding: 80px 0 0px;
}
.ins-dashboard-heading h4{
  font-size: 56px;
  font-weight: 800;
  color: var(--ins-white-color);
  background-color: var(--ins-red-color);
  box-shadow: 0px 11px 20px 0px #FE2C4A4D;
  /* box-shadow: 0px 0px 22px 0px #00545933; */
  border-radius: 60px;
  max-width: 748px;
  text-align: center;
  margin: 0 auto;
  padding: 12px 0 10px;
}
.ins-dashboard-heading h2, .ins-dashboard-heading h3, .ins-easy-head h3, .ins-sucess-head h3{
  font-size: 50px;
  font-weight: 700;
  color: var(--ins-heading-color);
  text-align: center;
}
.ins-dashboard-heading h2 {
  padding: 17px 0 20px;
}
.ins-dashboard-heading h3{

}
.ins-dashboard-img-sec{
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  padding: 59px 0 0;
}
.ins-dashcon-img {
  position: relative;
  text-align: end;
  max-width: 630px;
  width: 100%;
}
.ins-dashboard-img-sec::after {
  position: absolute;
  content: url('../images/blur-circle-dashboard.png');
  left: 14%;
  top: -27%;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.ins-manimg {
  position: absolute;
  left: 9%;
  bottom: 4px;
}
.ins-dashcon-text {
  max-width: 600px;
}
.ins-dashcon-text ul li{
  padding: 0 0 26px;
}
.ins-dashcon-text ul li p{
  font-size: 22px;
  font-weight: 400;
  line-height: 26px;
  color: var(--ins-blue-color);
}
.ins-dashcon-text ul li p.text-underline{
  text-decoration: underline;
}
.ins-dashcon-text ul li p span{
  font-weight: 600;
  color: var(--ins-heading-color);
}
/*-------------- Converter-dashbord section css End ----------*/
/*-------------- Presenting section css start ----------*/
.ins-presenting-section{
  background-image: url(../images/ins-traffic-bg.png);
  padding: 252px 0 29px;
}
.ins-present-head{
  margin: 0 auto;
  text-align: center;
}
.ins-present-head h4{
  font-size: 30px;
  font-weight: 700;
  color: var(--ins-white-color);
  background: linear-gradient(180deg, #1BEAE4 0%, #0ED8D2 100%);
  max-width: 261px;
  border-radius: 10px;
  padding: 15px 0;
  text-align: center;
  margin: 0 auto;
}
.ins-present-head h3{
  font-size: 50px;
  font-weight: 700;
  color: var(--ins-white-color);
  padding: 25px 0 26px;
}
.ins-present-head h5{
  font-size: 36px;
  font-weight: 500;
  color: var(--ins-white-color);
  padding: 30px 0 14px;
}
.ins-present-head h2, .ins-present-head h6{
  font-size: 50px;
  font-weight: 700;
  color: var(--ins-white-color);
  max-width: 1080px;
  margin: 0 auto;
}
.ins-present-head h2 span{
  font-family: "Caveat", cursive;
}
.ins-present-head h6{

}
.ins-present-stepbox{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 130px;
  padding: 48px 0 73px;
}
.text-left {
  text-align: left;
}
.ins-present-stepbox-img {
  max-width: 480px;
  width: 100%;
  text-align: end;
}
.ins-present-stephead{
  max-width: 355px;
  border-radius: 0px 35px 35px 35px;
  background-color: var(--ins-white-color);
  position: relative;
  z-index: 1;
}
.ins-present-stephead h3 {
  font-size: 36px;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(90deg, #FF2440 0%, #FF395B 12.79%, #FF4A70 26.43%, #FF557F 40.92%, #FF5C88 58.83%, #FF5F8B 85.26%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: capitalize;
  line-height: 1.1;
  background-size: 100% 200%;
  text-align: center;
  margin: 8px auto 0;
  width: 100%;
  padding: 16px 0px 15px;
}
.ins-present-stepbox-para {
  background-color: #201633;
  max-width: 570px;
  border-radius: 20px;
  padding: 66px 30px 4px;
  margin-top: -40px;
}
.ins-present-stepbox-para p{
  font-size: 26px;
  font-weight: 400;
  line-height: 30px;
  color: var(--ins-white-color);
  padding: 0 0 30px;
}
.ins-present-stepbox:nth-child(2) .ins-present-stephead h3 {
  background: linear-gradient(90deg, #22C8BC 0%, #5DE2DB 85.26%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: capitalize;
  background-size: 100% 200%;
  text-align: center;
}
.ins-present-stepbox:nth-child(3) .ins-present-stephead h3{
  background: linear-gradient(90deg, #FF2440 0%, #FFA14A 85.26%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: capitalize;
  background-size: 100% 200%;
  text-align: center;

}
/*-------------- Presenting section css End ----------*/
/*-------------- unbelivable-easy section css start ----------*/
.ins-uneasy-section {
  background-image: url('../images/easy-bg.png');
  padding: 65px 0 162px;
}
.ins-easy-head h4 {
  font-size: 46px;
  font-weight: 700;
  color: var(--ins-white-color);
  background: linear-gradient(180deg, #1BEAE4 0%, #0ED8D2 100%);
  box-shadow: 0px 11px 40px 0px #370B583B;
  border-radius: 10px;
  max-width: 1020px;
  margin: 39px auto 61px;
  text-align: center;
  padding: 11px 77px 14px;
}
.ins-video{
  position: relative;
  z-index: 1;
  margin: 0 auto;
  text-align: center;
}
.heading-linear {
  margin: 0 auto;
  text-align: center;
  background-image: url('../images/never-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 1100px;
  padding: 15px 0 40px;
  margin: 64px auto 38px;
}
.heading-linear h4{
  font-size: 38px;
  font-weight: 800;
  color: var(--ins-primary-color);
  text-align: center;
}
.ins-easy-fall-sec h3{
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 43.83px;
  font-weight: 800;
  color: var(--ins-primary-color);
}
.ins-easyfall-box {
  display: flex;
  align-items: center;
  background: linear-gradient(0deg, #FDF2EC 0%, #F3F4F6 100%);
  max-width: 1230px;
  border-radius: 40px;
  justify-content: center;
  padding: 60px 0px;
  gap: 49px;
  flex-wrap: wrap;
  margin: 0 0 50px;
}
.ins-easy-falltext{
  max-width: 596px;
  text-align: left;
}
.ins-easy-falltext h3{
  font-size: 32px;
  font-weight: 800;
  color: var(--ins-heading-color);
  text-align: left;
  padding: 0 0 19px;
}
.ins-easy-falltext p{
  padding: 0 0 34px;
  color: var(--ins-black-color);
  text-align: left;
}
.ins-easy-falltext p span{
  font-weight: 700;
}
.ins-perfect-cust{
  padding: 50px 0;
}
.ins-easyfall-box:nth-child(3){
  background: linear-gradient(0deg, #FDEFEC -26.98%, #EFECFE 100%);
}
.ins-easyfall-box:nth-child(4){
  background: linear-gradient(0deg, #F1ECFD 0%, #EDFBFF 100%);
}
.ins-easyfall-box:nth-child(5){
  background: linear-gradient(0deg, #EBFBF9 -26.98%, #E9F3FD 100%);

}
.ins-perfect-cust h3, .ins-lead-genration h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--ins-white-color);
  background: linear-gradient(90deg, #FF537A 0%, #FF5E42 100%);
  max-width: 680px;
  width: 100%;
  padding: 19px 0;
  border-radius: 16px;
  text-align: center;
  margin: 0 auto 80px;
}
.ins-perfect-cust .ins-perfect-box{
  background: linear-gradient(0deg, #FDEFEC -26.98%, #EFECFE 100%);
}
.ins-perfect-cust .ins-perfect-box .ins-easy-falltext p:last-child{
  padding: 0;
}
.ins-lead-genration h3{
  background: linear-gradient(90deg, #56AB2F 0%, #9ED857 100%);
  max-width: 612px;
}
.ins-lead-genration .ins-lead-box{
  background: linear-gradient(0deg, #F1ECFD 0%, #EDFBFF 100%);

}
/*-------------- unbelivable-easy section css End ----------*/
/*-------------- inboxed section css start ----------*/
.ins-inboxed-section {
  background-image: url('../images/inboxed-bg.png');
  padding: 389px 0 2px;
  margin-top: -156px;
  z-index: 1;
}
.ins-inboxed-head {
  position: relative;
  top: -169px;
}
.ins-inboxed-head h4{
  font-size: 50px;
  font-weight: 800;
  color: var(--ins-white-color);
  max-width: 351px;
  padding: 9px 0;
  background: #C039FF;
  border-radius: 60px;
  margin: 0 auto;
  text-align: center;
}
.ins-inboxed-head h3{
  font-size: 48px;
  font-weight: 700;
  color: var(--ins-white-color);
  max-width: 970px;
  margin: 0 auto;
  text-align: center;
  padding: 29px 0 17px;
}
.ins-inboxed-head p{
  font-size: 22px;
  color: #C7C1D2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 0 34px;
}
.ins-inbox-img {
  margin: 17px auto 0;
  text-align: center;
}
/*-------------- inboxed section css End ----------*/
/*-------------- Sucess section css start ----------*/
.ins-sucess-section {
  background-image: url('../images/sucess-bg.png');
  padding: 305px 0 100px;
  margin-top: -266px;
  /* z-index: -1; */
}
.ins-sucess-head{
  margin: 0 auto;
  text-align: center;
}
.ins-sucess-head h4{
  font-size: 56px;
  font-weight: 800;
  color: var(--ins-white-color);
  background: #06A5FF;
  box-shadow: 0px 11px 20px 0px #06A5FF4D;
  max-width: 730px;
  border-radius: 60px;
  padding: 11px 0;
  margin: 0 auto 25px;
  text-align: center;
}
.ins-effort-sec {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.ins-effort-sec-para {
  max-width: 580px;
}
.ins-unlock-head {
  margin: 59px auto 50px;
  text-align: center;
  background-image: url('../images/unlock-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 1080px;
  padding: 40px 0 62px;
  text-align: center;
}
.ins-unlock-head h4{
  font-size: 43.83px;
  font-weight: 800;
  color: var(--ins-primary-color);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.ins-unlock-box .ins-easy-falltext {
  max-width: 580px;
}
.ins-effort-sec-para p{
  font-size: 22px;
  line-height: 26px;
  padding: 0 0 15px;
  color: var(--ins-blue-color);
  text-align: left;
}
.ins-easyfall-box.ins-unlock-box{
  background: linear-gradient(0deg, #FDF2EC 0%, #F3F4F6 100%);
  padding: 36px 0 33px;
  gap: 23px;
}
.ins-unlock-box .ins-easy-falltext h3 {
  padding: 0 0 21px;
}
.ins-unlock-box .ins-easy-falltext p {
  /* padding: 0 0 33px; */
 }
.ins-easy-falltext ul li{
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: flex-start;
}
.ins-easy-falltext ul li img {
  padding: 9px 0 0;
}
.ins-easy-falltext ul li p{
  padding: 0;
}
.ins-easy-falltext ul.ins-track{
  padding: 0 0 34px;
}
.ins-easyfall-box.ins-unlock-box:nth-child(2){
  background: linear-gradient(0deg, #FDEFEC -26.98%, #EFECFE 100%);
  padding: 51px 0 46px;
}
.ins-easyfall-box.ins-unlock-box:nth-child(3){
  background: linear-gradient(0deg, #F1ECFD 0%, #EDFBFF 100%);
  gap: 68px;
  padding: 52px 0 49px;
}
.ins-easyfall-box.ins-unlock-box:nth-child(4){
  background: linear-gradient(0deg, #EBFBF9 -26.98%, #E9F3FD 100%);
  padding: 51px 0 46px;
}
.ins-easyfall-box.ins-unlock-box:nth-child(5){
  background: linear-gradient(0deg, #FDF2EC 0%, #F3F4F6 100%);
  padding: 51px 0 46px;
}
.ins-unlock-boxsec > h3{
  font-size: 40px;
  font-weight: 700;
  color: var(--ins-heading-color);
  max-width: 948px;
  text-align: center;
  margin: 10px auto 0;
}

/*-------------- Sucess section css end ----------*/
/*-------------- lead-generation section css start ----------*/
.ins-leadgen-section {
  background-image: url('../images/leadgen-bg.png');
  padding: 160px 0 400px;
  background-position: top;
}
.ins-leadgen-head {
  margin: 0 auto 68px;
  text-align: center;
}
.ins-leadgen-head h2{
  font-size: 48px;
  font-weight: 700;
  color: var(--ins-heading-color);
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.ins-leadgen-head h2 span{
  color: #837cff;
}
.ins-leadgen-head h2 span.icon{
  color: #ff8d4e;
}
.ins-leadgen-head h3{
  font-size: 36px;
  font-weight: 500;
  color: var(--ins-blue-color);
  padding: 35px 0 0;
}
.ins-agencysec-box{
  margin: 0 auto 65px;
  text-align: center;
}
.ins-agency-head {
  max-width: 483px;
  padding: 30px 0 29px;
  min-height: 179px;
  box-shadow: 0px 0px 60px 0px #0ED8D214;
  border: 1.5px dashed #45FCF6;
  background: #FFFFFFB2;
  text-align: center;
  vertical-align: middle;
  border-radius: 30px;
  margin: 0 auto 30px;
}
.ins-agency-head h3{
  font-size: 30px;
  font-weight: 500;
  color: var(--ins-blue-color);
  max-width: 420px;
  margin: 0 auto;
}
.ins-agency-img img{
  border: 1.35px solid #D4BFFF;
  background-color: var(--ins-white-color);
  padding: 4px;
}
/*-------------- lead-generation section css end ----------*/
/*-------------- Sucess-guaruntee section css start ----------*/
.ins-sucguarntee-section {
  background-image: url('../images/suc-guar-bg.png');
  padding: 400px 0 0px;
  margin-top: -360px;
}
.ins-sugua-head-wrap {
  position: relative;
  top: -146px;
  /* top: -156px; */
}
.ins-sucguar-head h3 {
  font-size: 48px;
  font-weight: 600;
  color: var(--ins-white-color);
  max-width: 680px;
  margin: 0 auto 34px;
}
.ins-sucguar-box{
  background-color: var(--ins-white-color);
  max-width: 1170px;
  border-radius: 30px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 56px 13px;
}
.ins-sucguar-box img {
  padding: 0 0 39px;
}
.ins-sucguar-box p{
  font-size: 22px;
  padding: 0 0 34px;
  text-align: left;
  max-width: 1073px;
  color: var(--ins-blue-color);
}
.ins-sucguar-box p span{
  font-weight: 700;
  color: var(--ins-heading-color);

}
/*-------------- Sucess-guaruntee section css end ----------*/
/*-------------- today section css start ----------*/
.ins-today-section{
  background-image: url('../images/today-bg.png');
  padding: 87px 0 285px;
}
.ins-today-head h3{
  font-size: 48px;
  font-weight: 700;
  color: var(--ins-heading-color);
  text-align: center;
  padding: 0 0 64px;
}
.ins-today-box{
  max-width: 1170px;
  background-color: var(--ins-white-color);
  border: 1px solid #D4BFFF;
  border-radius: 20px;
  box-shadow: 0px 4px 120px 0px #286B8E1A;
  margin: 0 auto 80px;
  text-align: center;
  position: relative;
  padding: 0 0 58px;
}
.ins-today-logo {
  box-shadow: -15px 12px 31px 0px #B85EC833;
  border: 1px solid #D4BFFF;
  background: #FFFFFF;
  max-width: 295px;
  min-height: 96px;
  text-align: center;
  margin: -20px auto 0;
  border-radius: 10px;
  padding: 9px 0;
}
.ins-today-box h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--ins-white-color);
  background: linear-gradient(90deg, #CB44AD 0%, #9D50FF 100%);
  max-width: 400px;
  min-height: 49px;
  text-align: center;
  margin: -30px auto 0;
  text-align: center;
  border-radius: 30px;
  padding: 10px 0;
}
.ins-today-box-list {
  display: flex;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  justify-items: center;
  gap: 162px;
  justify-content: center;
}
.ins-today-box-list ul {
  max-width: 350px;
}
.ins-today-box-list ul li {
  display: grid;
  grid-template-columns: 41px 1fr;
  align-items: center;
  margin: 0 0 17px;
}
.ins-today-box-list ul li p{
  font-size: 20px;
  font-weight: 500;
  color: var(--ins-heading-color);
  padding: 0;
  text-align: left;
}
.ins-today-box > img{
  padding: 21px 0 20px;
}
.ins-today-icons img{
  position: absolute;
}
.ins-today-icons img:nth-child(1) {
  bottom: 22%;
  left: -2.3%;
}
.ins-today-icons img:nth-child(2) {
  right: -2%;
  bottom: 50%;
}
.ins-today-icons img:nth-child(3) {
  right: -3%;
  bottom: 14%;
}
.ins-today-icons img:nth-child(4) {
  top: 20%;
  right: -3%;
}
.ins-today-icons img:nth-child(5) {
  top: 12%;
  left: -2%;
}
.ins-orvalue{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
.ins-ortext h4{
  background: linear-gradient(180deg, #F7B733 0%, #FC4A1A 100%);
  box-shadow: 0px 0px 83.68px 0px #F9802633;


}
/*-------------- today section css end ----------*/
/*-------------- Warning section css start ----------*/
.ins-ewarning-section {
  padding: 0px 0 37px;
}
.ins-ewarning-section::after{
  position: absolute;
  content: '';
  top: 161px;
  /* inset: 0; */
  background-image: url('../images/warning-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: none;
}
.ins-offord-sec {
  padding: 0 0 0;
}
.ins-warofferbox{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.ins-warning-head h4{
  font-size: 56px;
  font-weight: 800;
  color: var(--ins-white-color);
  margin: 0 auto;
  text-align: center;
  max-width: 411px;
  border-radius: 60px;
  background: linear-gradient(90deg, #FF2D6C 0%, #FF3743 100%);
  padding: 13px 0 12px;
}
.ins-warning-head h3{
  font-size: 48px;
  font-weight: 700;
  color: var(--ins-heading-color);
  text-align: center;
  margin: 0 auto;
  padding: 27px 0 70px;
}
.ins-offer-box-img{
  position: relative;
}
.ins-offer-circle {
  position: absolute;
  right: -43%;
  top: -53%;
  z-index: -1;
}
.ins-offerbox-text ul li{
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  margin: 0 0 15px;
}
.ins-offerbox-text {
  max-width: 576px;
}
.ins-offerbox-text ul li p, .ins-offerbox-text p{
  text-align: left;
  color: var(--ins-blue-color);
  font-size: 22px;
}
.ins-offerbox-text ul li p span, .ins-offerbox-text p span{
  font-weight: 600;
  color: var(--ins-heading-color);
}
.ins-offord-sec h3{
  font-size: 50px;
  font-weight: 800;
  color: var(--ins-primary-color);
  max-width: 800px;
  margin: 0px auto 0;
  text-align: center;
}
.ins-offerd-text {
  max-width: 600px;
}
.ins-offersec-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 66px;
  margin: 0 0 73px;
}
.ins-offerd-text p {
  font-size: 24px;
  color: var(--ins-black-color);
  padding: 0 0 0 70px;
}
.ins-offered-centerpara p, .ins-offered-btmpara a {
  font-size: 22px;
  color: var(--ins-blue-color);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 0 34px;
}
.ins-offered-btmpara {
text-align: center;
}
.ins-offered-btmpara a {
display: inline-block;
}
.ins-offered-centerpara p span{
  font-weight: 700;
}
.ins-offered-btmpara a{
  text-decoration: underline;
  padding: 60px 0 34px;

}
/*-------------- warning section css end ----------*/
/*-------------- Converter-dashbord section css start ----------*/
/*-------------- Converter-dashbord section css start ----------*/
/*-------------- footer section css start ----------*/

.ins-footer-section{
  background-image: url(../images/ins-footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding: 80px 0 0;

}
.ins-footer-logo {
  border: 1.5px solid transparent;
  background: linear-gradient(#fff,#fff), linear-gradient(180deg, #B924FF -45.45%, #9EFF00 68.6%, #FFB0B0 125.62%, #00F0FF 182.64%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
}
.ins-copy-text{
  color: var(--ins-white-color);
  font-size: 18px;
  font-weight: 400;
  margin: 40px 0 20px;
}
.disclaimer_box {
    max-width: 1140px;
    margin: 0 auto 60px;
}
.disclaimer_box p {
    color: rgb(255, 255, 255);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: normal;
}
.wplus_spdisclaimer {
    color: #ffffff;
    margin-top: 50px;
    margin-bottom: 30px;
}
.ins-coprighttab{
  background: rgba(255, 255, 255, 0.1);
  padding: 13px 15px;

}
.ins-footer-section .ins-coprighttab ul li a{
  color: var(--ins-white-color);
  font-weight: 400;
}
.ins-footer-section .ins-coprighttab ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
/*-------------- footer section css end ----------*/
/*-------------- go-top section css start ----------*/
.go-top{
  position: fixed;
  bottom: 4%;
  right: 2%;
  padding: 20px;
  display: none;
  cursor: pointer;
  -webkit-font-smoothing:antialiased;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background:var(--ins-primary-color);
  box-shadow: 0px 0px 120px 0px rgba(252, 145, 40, 0.2);
  transition: all .5s ease-in-out;
  z-index: 99;
  animation: 4s installation infinite alternate;
}
.go-top svg {
  position: absolute;
  top: 17px;
  left: 0;
  transform: rotate(270deg);
  right: 0;
  margin: auto;
  transition: all .8s ease-in-out;

}
.go-top svg path{
  fill: var(--ins-white-color);
}
.go-top:hover{
  transform: translateY(-10px);
}
@keyframes installation {
  0% {
      transform: translateY(0px);
  }
  50% {
      transform: translateY(-20px);
  }
}
/*-------------- go-top section css end ----------*/
/*-------------- Banner section css start ----------*/


.sp_orangeBtn {
  background: linear-gradient(180deg, #F7B733 0%, #FC4A1A 100%), linear-gradient(90deg, #5200FF 0%, #A106FF 100%);
  box-shadow: 0px 0px 60px rgba(249, 128, 38, 0.2);
  border-radius: 60px;
  padding: 20px 30px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  animation-name: stretch;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-fill-mode: none;
  animation-play-state: running;
  display: inline-block;
}
@keyframes stretch {
  0% {
    transform: scale(1);

  }
  50% {
      transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.sp_orangeBtn:hover {
  color: #ffffff;
}
.ins-orvalue.columnValue {
  flex-direction: column;
}
.columnValue .ins-origval-text.ins-ortext {
  text-align: center;
}