@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
  overflow: auto;
  scroll-behavior: smooth;
}

/* @media screen and (max-width: 790px) {
  html {
    overflow: auto;
    scroll-behavior: smooth;
  }
} */

body {
  scroll-behavior: smooth;
  overflow-x: hidden;

}

.bg-banner-img {
  /* display: flex;
    justify-content: center;
    align-items: center;
    width: 650px;
    height: 650px;
    border-radius: 100%;
    background-image: linear-gradient(#1100ff 10%, #ff00f2);
    filter: blur(250px);
    transition: all 450ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: -1; */
}

/* switch settings 👇 */
 
.ui-switch {
  /* switch */
  --switch-bg: rgb(135, 150, 165);
  --switch-width: 48px;
  --switch-height: 20px;
  /* circle */
  --circle-diameter: 34px;
  --circle-bg: rgb(0, 56, 146);
  --circle-inset: calc((var(--circle-diameter) - var(--switch-height)) / 2);
}

.ui-switch input {
  display: none;
}

.slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--switch-width);
  height: var(--switch-height);
  background: var(--switch-bg);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
}

.slider .circle {
  top: calc(var(--circle-inset) * -1);
  left: 0;
  width: var(--circle-diameter);
  height: var(--circle-diameter);
  position: absolute;
  background: var(--circle-bg);
  border-radius: inherit;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjAiIHdpZHRoPSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4KICAgIDxwYXRoIGZpbGw9IiNmZmYiCiAgICAgICAgZD0iTTkuMzA1IDEuNjY3VjMuNzVoMS4zODlWMS42NjdoLTEuMzl6bS00LjcwNyAxLjk1bC0uOTgyLjk4Mkw1LjA5IDYuMDcybC45ODItLjk4Mi0xLjQ3My0xLjQ3M3ptMTAuODAyIDBMMTMuOTI3IDUuMDlsLjk4Mi45ODIgMS40NzMtMS40NzMtLjk4Mi0uOTgyek0xMCA1LjEzOWE0Ljg3MiA0Ljg3MiAwIDAwLTQuODYyIDQuODZBNC44NzIgNC44NzIgMCAwMDEwIDE0Ljg2MiA0Ljg3MiA0Ljg3MiAwIDAwMTQuODYgMTAgNC44NzIgNC44NzIgMCAwMDEwIDUuMTM5em0wIDEuMzg5QTMuNDYyIDMuNDYyIDAgMDExMy40NzEgMTBhMy40NjIgMy40NjIgMCAwMS0zLjQ3MyAzLjQ3MkEzLjQ2MiAzLjQ2MiAwIDAxNi41MjcgMTAgMy40NjIgMy40NjIgMCAwMTEwIDYuNTI4ek0xLjY2NSA5LjMwNXYxLjM5aDIuMDgzdi0xLjM5SDEuNjY2em0xNC41ODMgMHYxLjM5aDIuMDg0di0xLjM5aC0yLjA4NHpNNS4wOSAxMy45MjhMMy42MTYgMTUuNGwuOTgyLjk4MiAxLjQ3My0xLjQ3My0uOTgyLS45ODJ6bTkuODIgMGwtLjk4Mi45ODIgMS40NzMgMS40NzMuOTgyLS45ODItMS40NzMtMS40NzN6TTkuMzA1IDE2LjI1djIuMDgzaDEuMzg5VjE2LjI1aC0xLjM5eiIgLz4KPC9zdmc+');
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: left 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    -webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  -o-transition: left 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  transition: left 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    -webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}

.slider .circle::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.75);
  border-radius: inherit;
  -webkit-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms;
  opacity: 0;
}

/* actions */

.ui-switch input:checked+.slider .circle {
  left: calc(100% - var(--circle-diameter));

  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjAiIHdpZHRoPSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj4KICAgIDxwYXRoIGZpbGw9IiNmZmYiCiAgICAgICAgZD0iTTQuMiAyLjVsLS43IDEuOC0xLjguNyAxLjguNy43IDEuOC42LTEuOEw2LjcgNWwtMS45LS43LS42LTEuOHptMTUgOC4zYTYuNyA2LjcgMCAxMS02LjYtNi42IDUuOCA1LjggMCAwMDYuNiA2LjZ6IiAvPgo8L3N2Zz4=');
}

.ui-switch input:active+.slider .circle::before {
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
  opacity: 1;
  width: 0;
  height: 0;
}

.banner_img {
  width: 100%;
}

@-moz-keyframes blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* IE */
@-ms-keyframes blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Opera and prob css3 final iteration */
@keyframes blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.banner_imgg {
  width: 100%;
  /* -moz-animation: blink 1s ease-in-out; Firefox */
  /* -webkit-animation: blink 1s ease-in-out; Webkit */
  /* -ms-animation: blink 1s ease-in-out; IE */

  opacity: 0;
  transition: opacity 2s;
  /* animation: blink 1s ease-in-out; Opera and prob css3 final iteration */
}

.try_for_free {
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background: unset !important;
  /* text-decoration: none; */
  border: none;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.try_for_free>a {
  text-decoration: none !important;
}

.try_for_free:hover {
  cursor: pointer;
  color: #1db2ed;
}

.heder_txt {
  color: #fff;
  font-family: 'Chivo', sans-serif !important;
  font-weight: 200;
}

.privcy>a>span {
  color: #172026;
  /* font-family: 'Chivo', sans-serif !important; */
  font-weight: 500;
}

.privcy>a>span:hover {
  color: #1db2ed;
  cursor: pointer;
}

.Login {
  padding: 14px 30px;
  border-radius: 12px;
  border: none !important;
  background: none !important;
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;

  /* 133.333% */
}

.heder_cont {
  position: relative;
}

.heder_cont_txt {
  position: absolute;
  top: 4%;
  /* left: 5%; */
  left: 0;
  right: 0;
  margin: 0 auto;
}

.grid_lins {
  position: absolute;
  top: 13%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.txt_1 {
  color: #ffffff;
  text-align: center;
  font-family: Poppins;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 72px;
  -webkit-mask-image: linear-gradient(-75deg,
      rgb(255, 255, 255) 30%,
      #ffffff 50%,
      rgb(255, 255, 255) 70%);
  -webkit-mask-size: 200%;
  animation: shine 2s linear forwards, changeTextColor 1s linear forwards;
}

@keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }

  to {
    -webkit-mask-position: -50%;
  }
}

@keyframes changeTextColor {
  from {
    color: #717070;
  }

  to {
    color: #ffffff;
    /* Change to desired color after shine effect */
  }
}

.txt_2 {
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  -webkit-mask-image: linear-gradient(-75deg,
      rgb(255, 255, 255) 30%,
      #ffffff 50%,
      rgb(255, 255, 255) 70%);
  -webkit-mask-size: 200%;
  animation: shine 2s linear forwards, changeTextColor 1s linear forwards;
  /* 155.556% */
}

.btn_1 {
  text-align: center;
  padding: 16px 32px;
  border-radius: 12px;
  background: #817af3;
  gap: 10px;
  border: none;
  color: #fff;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 500;
}

.btn_2 {
  color: #fff;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  border: none;
  background: none;
}

.txt_cont {
  position: absolute;
  top: 24%;
  /* left: 23%; */
  left: 0;
  right: 0;
  margin: 0 auto;
}

.view_img {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.tusk_man_cont {
  color: #595959;
  text-align: center;
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 200px;
}

.tusk_man {
  background: linear-gradient(93deg,
      #8f60ff 75.18%,
      #1db2ed 86.54%,
      #ff2780 93.72%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.bg_cont_icon {
  background-image: url('https://pro-manage.s3.ap-south-1.amazonaws.com/bg_img_cir.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100%;
}

.cont_icon_1 {
  color: #252525;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.cont_icon_2 {
  display: none;
  color: #565656;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.y_focus>p {
  color: #595959;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.y_focus>p>span {
  background: linear-gradient(90deg,
      #817af3 44.12%,
      #1db2ed 70.29%,
      #f09 98.75%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.y_focus>p:nth-child(2) {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.bg_clr_img {
  background-image: url('https://pro-manage.s3.ap-south-1.amazonaws.com/bg_clr_img.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  border: 1px solid #f09;
}

.bg_clr_img>p:first-child {
  color: #252525;
  font-family: Poppins;
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.bg_clr_img>p:first-child>span {
  color: #1db2ed;
  font-family: Poppins;
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.bg_clr_img>p:nth-child(2) {
  color: #252525;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.bg_ctn {
  background-image: url('https://pro-manage.s3.ap-south-1.amazonaws.com/bg_ics_ctn.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg_ctn_txt>p {
  color: #252525;
  text-align: center;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.bg_ctn_txt>p>span {
  background: linear-gradient(90deg, #817af3 38%, #1db2ed 58.71%, #f09 81.22%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.bg_hyp {
  border-radius: 12px;
  /* opacity: 0.7; */
  background: #fff;
  height: 412px;
}

.bg_hyp>ul {
  color: #6c6c6c;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.dif_clr_1 {
  color: #817af3;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.dif_clr_2 {
  color: #ff0099;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.dif_clr_3 {
  color: #1db2ed;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.dif_clr_4 {
  color: #34a853;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.frq_as_qus>p:first-child {
  color: #eb2891;
  font-family: Poppins;
  font-size: 12.833px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.25px;
  /* 150% */
}

.frq_as_qus>p:nth-child(2) {
  color: #172026;
  font-family: Poppins;
  font-size: 33.688px;
  font-style: normal;
  font-weight: 500;
  line-height: 46.521px;
  /* 138.095% */
}

.frq_as_qus>p:last-child {
  color: #36485c;
  font-family: Poppins;
  font-size: 14.438px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.458px;
  /* 155.556% */
}

.accordion-button:not(.collapsed) {
  color: #172026;
  background-color: #dddbff !important;
  box-shadow: unset;
  border-radius: unset !important;
  /* background: #DDDBFF; */
  /* color: #172026; */
  font-family: Poppins;
  font-size: 18.147px;
  font-style: normal;
  font-weight: 500;
  line-height: 24.195px;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 18.147px;
  color: #172026;
  background-color: #dddbff !important;
  border: none;
  border-radius: unset !important;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
  font-family: poppins;
}

.accordion-button:focus {
  z-index: 3;
  border-color: unset;
  outline: 0;
  box-shadow: unset;
}

.accordion-item {
  margin-top: 13px;
  color: #172026;
  background-color: #dddbff !important;
  border: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: all 0.5s;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.elip_bg {
  background-image: url('https://pro-manage.s3.ap-south-1.amazonaws.com/bg_elip.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg_tri_img {
  background-image: url('https://pro-manage.s3.ap-south-1.amazonaws.com/bg_tri.png');
  /* background-position: center; */
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
  /* border: 0.5px solid #F09; */
}

.bg_cont_tri>p:first-child {
  color: #252525;
  font-family: Poppins;
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.bg_cont_tri>p:first-child>span {
  background: linear-gradient(92deg,
      #817af3 -9.78%,
      #1db2ed 44.47%,
      #f09 89.76%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Poppins;
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.bg_cont_tri>p:nth-child(2) {
  color: #252525;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.btn_tri {
  padding: 16px 32px;
  gap: 10px;
  border-radius: 12px;
  background: #817af3;
  color: #fff;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  border: none;
}

.img_tlit {
  transform: rotate(-0deg);
  padding-left: 10px;
}

.bg_grid {
  background-image: url('https://pro-manage.s3.ap-south-1.amazonaws.com/bg_grid.png');
  background-position: bottom 30px right 0px;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer_txt {
  color: #242424;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

footer>p {
  color: #242424;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

footer>p>a>span {
  background: linear-gradient(90deg,
      #817af3 36.4%,
      #1db2ed 50.63%,
      #f09 60.43%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.splide_ver_carosel>p {
  color: #817af3;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.imf_fld_titl {
  /* width: 50vh !important; */
  width: 75% !important;
}

.vert_csr_txt {
  color: #505FAA;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  padding: 10px;
  border: 0.2px solid var(--Linear, #7860B0);
  box-shadow: 0px 2px 2px 0px rgba(255, 255, 255, 0.25) inset;
}

.img-fluidx {
  width: 50px !important;
}

@media screen and (max-width: 600px) {
  .y_focus>p {
    font-size: 24px;
  }

  .tusk_man_cont {
    font-size: 20px;
    margin-top: 6px;
  }

  .bg_clr_img>p:first-child,.bg_clr_img>p:first-child>span {
    font-size: 24px;
  }
  .bg_clr_img>p:nth-child(2),.bg_cont_tri>p:nth-child(2)     {
  font-size: 16px;
  }

  .y_focus>p>span, .bg_ctn_txt>p ,.bg_ctn_txt>p>span,.bg_cont_tri>p:first-child ,.bg_cont_tri>p:first-child>span     {
    font-size: 24px;
  }

  .tusk_man_cont {
    margin-top: 283px;
  }

  .tusk_man {
    font-size: 23px;
  }

  .vert_csr_txt {
    font-size: 12px;
  }

  .cont_icon_1 {
    font-size: 16px;
  }

  .splide_ver_carosel>p {
    font-size: 22px;
  }


  .view_img {
    top: 75%;
  }

  .txt_1 {
    font-size: 16px;

  }

  .txt_cont {

    top: 40%;

  }

  .grid_lins {

    top: 31%;

  }

  .txt_2 {
    font-size: 14px;
    margin-top: -40px !important;
  }

  .imf_fld {
    width: 42% !important;
    margin-top: 10px;
    /* width: 70vh !important; */
  }

  .imf_fldd {
    width: 70% !important;
  }

  .imf_flde {
    width: 50% !important;
  }

  .splide__slide {
    height: 100% !important;
  }
    .try_for_free {
    font-size: 14px;
    padding: 10px;
  }
  .Login {
    padding: 2px;
  }
  .mob_img{
    width: auto;
  }
}