/* Pre-calc navbar height so the bar starts in the right place immediately */
:root {
  --nav-h: 72px;
} /* desktop default */
@media (max-width: 600px) {
  :root {
    --nav-h: 56px;
  }
} /* mobile */

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* Sits under the fixed navbar */
.notice-bar {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--nav-h); /* start below navbar without waiting for JS */
  z-index: 998; /* above content, below modals */
  visibility: hidden; /* avoid flashing at wrong position */
}

/* Pause on hover or when focused via keyboard */
.notice-bar:hover .ticker__content,
.notice-bar:focus-within .ticker__content {
  animation-play-state: paused;
}

/* Simple, modern marquee */
.ticker {
  overflow: hidden;
  white-space: nowrap;
}
.ticker__content {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-move 22s linear infinite;
}
@keyframes ticker-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

body {
  font-size: 1.5rem;
  font-family: "Inter", sans-serif;
  color: #000;
  font-weight: 400;
}

.container-fluid {
  width: 92%;
}

.fa-xmark {
  display: none;
}

.btn,
a {
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  text-decoration: none;
}

.btn:hover,
a:hover {
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  outline: none;
  box-shadow: none;
}

.numcol {
  height: 15rem;
  position: relative;
  margin-bottom: 5rem;
}

.line {
  width: 8rem;
  height: 0.5rem;
  background: #24dccc;
  border-radius: 3rem;
  margin-top: 7rem;
  position: absolute;
  bottom: 0;
  left: 0;
}

.home-banner {
  width: 100%;
  height: 90vh;
  background: url(../images/banner-bg.webp) no-repeat;
  background-size: cover;
}

.bg-dark {
  background: #000 !important;
  padding: 2rem 4rem;
}

header .container-fluid {
  width: 100%;
}

.navbar-expand-md .navbar-nav .nav-link {
  color: #fff;
}

.navbar-expand-md .navbar-nav .nav-link {
  padding-left: 2rem;
  padding-right: 2rem;
  font-weight: 500;
  font-size: 1.5rem;
}

.btn-succes {
  background: #24dccc;
  font-size: 1.6rem;
  color: #000;
}

.banner-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
}

.banner-title h1 {
  font-size: 4.2rem;
  font-weight: 600;
}

.banner-title h2 {
  font-size: 1.9rem;
}

.btn-success {
  background: #24dccc;
  color: #130c0f;
  font-weight: 600;
  border: 0;
  font-size: 1.6rem;
  border-radius: 3rem;
  padding: 0.8rem 2rem;
  width: max-content;
  position: relative;
  z-index: 99;
}

.btn:first-child:active,
.btn-success:hover {
  background: #130c0f;
  color: #24dccc;
}

.strategies {
  background: #f0f4fd;
  padding: 12rem 0 5rem 0;
}

.heading h5 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
}

.heading h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
}

.heading p {
  color: #808080;
}

.heading h2,
.heading h3 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
}

.heading h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
}

.btn-secondary {
  background: #10050b;
  color: #24dccc;
  font-weight: 600;
  border: 0;
  font-size: 1.6rem;
  border-radius: 3rem;
  padding: 0.8rem 2rem;
  margin-top: 7rem;
}

.btn-secondary:hover {
  background: #24dccc;
  color: #10050b;
}

.heading h3 i {
  color: #24dccc;
  font-size: 2.5rem;
  vertical-align: middle;
}

footer {
  background: #130c0f;
  color: #fff;
  padding: 6rem 0;
  margin-top: 8rem;
}

footer h4 {
  font-size: 2rem;
  color: #24dccc;
  margin-bottom: 3rem;
}

footer b {
  font-size: 2rem;
  color: #24dccc;
  margin-bottom: 3rem;
  font-weight: 500;
}

footer h5 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #24dccc;
}

footer address p {
  padding-left: 4rem;
}

footer ul li a {
  color: #fff;
  line-height: 3.5;
}

footer ul li a:hover {
  color: #24dccc;
  margin-left: 0.5rem;
}

.copyright {
  background: #24dccc;
  width: 100%;
}

.copyright p {
  margin-left: 4rem;
  color: #10050b;
  font-weight: 700;
  font-size: 1.3rem;
}

address p a {
  color: #fff;
}

address p a:hover {
  color: #24dccc;
}

.socialmedia-footer ul li {
  display: inline;
}

.socialmedia-footer ul li a {
  background: #fff;
  width: 3.5rem;
  height: 3.5rem;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 3.5rem;
  margin-right: 2rem;
}

.socialmedia-footer ul li a i {
  color: #130c0f;
  font-size: 2rem;
  line-height: 3.5rem;
}

.socialmedia-footer ul li a:hover {
  background: #24dccc;
  margin-left: 0;
  transform: rotate(360deg);
}

.empower {
  background: #f0f4fd;
  padding: 10rem 0 5rem 0;
}

.empower .mySwiper {
  margin-top: 5rem;
}

.empower p {
  color: #6a6667;
  font-weight: 400;
}

.empower .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
}

.empower .swiper-slide {
  display: flex;
  align-items: stretch;
}

.box {
  background: #fff;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  display: block;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  height: 100%;
}

.box img {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.box-txt {
  padding: 4rem 2rem 4rem 2rem;
}

.box-txt h4 {
  font-size: 2rem;
  color: #130c0f;
  font-weight: 700;
  line-height: 1.5;
}

.box-txt p {
  color: #6e6768;
  font-size: 1.6rem;
}

.empower .swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.empower .swiper-button-prev {
  top: 50%;
  transform: translateY(-50%);
  right: 8rem;
  left: inherit;
}

.swiper-slide {
  margin-bottom: 8rem;
}

.empower .swiper-button-next,
.empower .swiper-button-prev {
  color: #130c0f;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: #fff;
  /* font-size: 2rem; */
  /* box-shadow: 0px 1px 2px #6a6a6a; */
  /* margin-bottom: 1rem; */
}

.empower .swiper-button-next:after,
.empower .swiper-button-prev:after {
  font-size: 2.5rem;
  font-weight: 800;
}

.stranumer h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #10050b;
  margin-top: 6rem;
}

.stranumer p {
  color: #6e6768;
}

.number {
  font-size: 7rem;
  font-weight: 900;
  color: #dcf2f8;
  position: absolute;
  top: -6rem;
  line-height: normal;
}

.whyus {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.banstyle {
  border-radius: 1rem;
}

.choose-txt {
  padding-left: 10rem;
}

.choose-txt p {
  color: #6e6768;
  font-weight: 400;
}

.topspace {
  margin-top: 5rem;
}

.nav-link:focus,
.nav-link:hover {
  color: #24dccc !important;
}

.textanimate {
  background: #fff;
  border-radius: 5rem;
  width: 92%;
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 2rem 3rem;
  border: 1px solid #ebebeb;
}

.textanimate h4 {
  font-weight: 600;
  font-size: 1.7rem;
}

.textanimate h4 span {
  color: #857f7f;
  margin-left: 1rem;
  font-weight: 400;
  font-size: 1.7rem;
}

/* TEXT ANIMATE */
.textchange .textchange__alone {
  display: inline-block;
  font-weight: 600;
  font-size: 1.7rem;
  color: #fff;
}

.textchange .textchange__words .change {
  display: inline-block;
  position: absolute;
  top: 33%;
  left: 12rem;
  opacity: 0;
  animation: changeword 8s linear infinite;
}

.textchange .textchange__words h2 {
  color: #857f7f;
  font-weight: 400;
  font-size: 1.7rem;
}

.textchange .textchange__words .change:nth-child(1) {
  animation-delay: 0s;
}

.textchange .textchange__words .change:nth-child(2) {
  animation-delay: 2s;
}

.textchange .textchange__words .change:nth-child(3) {
  animation-delay: 4s;
}

.textchange .textchange__words .change:nth-child(4) {
  animation-delay: 6s;
}

@keyframes changeword {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }

  5% {
    opacity: 1;
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    transform: translateX(0);
  }

  30% {
    opacity: 0;
    transform: translateX(50px);
  }

  80% {
    opacity: 0;
    transform: translateX(50px);
  }
}

.insideproduct {
  background: #f0f4fd;
  padding-top: 17rem;
  padding-bottom: 5rem;
}

.insideproduct h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

.insideproduct p {
  color: #646263;
}

.insideproduct .btn-success {
  margin-top: 6rem;
}

.nav-pills .nav-link {
  border-bottom: 3px solid #fff;
  padding: 0;
  border-radius: 0;
  padding-bottom: 1.5rem;
  font-size: 1.6rem;
  margin-right: 3.5rem;
}

.nav-link {
  color: #676464;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background: transparent;
  color: #24dccc;
  border-bottom: 3px solid #24dccc;
  padding: 0;
  border-radius: 0;
  padding-bottom: 1.5rem;
  font-weight: 600;
}

.topspace1 {
  margin-top: 5rem;
}

.productcontent h2 {
  font-size: 4.2rem;
  font-weight: 600;
}

.productcontent p {
  color: #676464;
}

#pills-tab {
  margin-top: 5rem;
  border-bottom: 1px solid #d9d9d9;
}

.tab-content {
  margin-bottom: 5rem;
}

.tabbody {
  margin-top: 4.5rem;
}

.tabbody {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 5rem 3rem;
  min-height: 45.5rem;
}

.tabtxt {
  background: #fff;
  height: auto;
  position: relative;
  top: 0;
  width: 50rem;
  left: 0;
  border-radius: 1rem;
  padding: 5rem 3rem;
}

.tabtxt h4 {
  font-size: 3rem;
  font-weight: 600;
}

.tabtxt h4 span {
  color: #24dccc;
  line-height: 1.5;
}

.tabtxt p {
  color: #6e6768;
}

.master-operations {
  background: #f0f4fd;
  padding: 8rem 0;
  margin-bottom: 5rem;
  margin-top: 5rem;
}

.master-operations p {
  color: #78797d;
}

.accordion-button {
  font-size: 2rem;
  font-weight: 600;
  color: #10050b;
  background: #f0f4fd;
  padding: 2rem 0;
}

.accordion-item {
  --bs-accordion-border-color: #d9d9d9;
}

.accordion-body {
  background: #f0f4fd;
  color: #7f7c83;
}

.accordion-button:focus,
.accordion-button:not(.collapsed) {
  color: #10050b;
  background: #f0f4fd;
  box-shadow: none;
}

.accordion-button::after {
  background: url(../images/arrowup.webp) no-repeat;
}

.accordion-button:not(.collapsed)::after {
  background: url(../images/arrowdown.webp) no-repeat;
  transform: rotate(0deg);
}

.prevention-tool {
  margin-top: 10rem;
}

.prevention-tool h3 {
  font-size: 2.5rem;
  color: #24dccc;
  font-weight: 600;
}

.prevention-tool p {
  color: #6e6768;
  font-size: 1.7rem;
}

.prevention-tool h4 {
  font-size: 1.7rem;
  font-weight: 600;
}

.prevention-tool h5 {
  font-size: 1.7rem;
  font-weight: 600;
  margin: 5rem 0;
}

.contactus {
  margin-top: 8rem;
}

label {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.form-control {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #d8d8d8;
  color: #646263;
  font-size: 1.7rem;
  padding-bottom: 2rem;
  padding-left: 0;
  background: #f0f4fd;
  font-weight: 500;
}

.form-control:focus {
  background: #f0f4fd;
  outline: none;
  box-shadow: none;
  border-bottom: 1px solid #24dccc;
}

::placeholder {
  color: #646263;
  font-weight: 400;
  font-size: 1.5rem;
}

.input-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.input-icon i {
  color: #9b9da1;
  font-size: 2rem;
}

.formspace {
  margin-top: 5rem;
}

.experience12 {
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  display: block;
  line-height: 20rem;
  text-align: center;
  background: #24dccc;
  margin: 0 auto;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

.exptext {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.exptext h3 {
  font-size: 9rem;
  font-weight: 800;
}

.exptext h4 {
  font-size: 1.7rem;
  font-weight: 600;
}

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(36, 220, 204, 0.4);
    -webkit-box-shadow: 0 0 0 0 rgba(36, 220, 204, 0.4);
    box-shadow: 0 0 0 0 rgba(36, 220, 204, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 8rem rgba(197, 168, 128, 0);
    -webkit-box-shadow: 0 0 0 8rem rgba(197, 168, 128, 0);
    box-shadow: 0 0 0 8rem rgba(197, 168, 128, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(197, 168, 128, 0);
    -webkit-box-shadow: 0 0 0 0 rgba(197, 168, 128, 0);
    box-shadow: 0 0 0 0 rgba(197, 168, 128, 0);
  }
}

.whowe {
  margin-top: 10rem;
}

.whowe .swiper-slide {
  margin-bottom: 0;
}

.whowe .swiper p {
  color: #6e6768;
}

.whowe .swiper-pagination {
  text-align: left;
  top: 35rem;
}

.whowe .swiper-pagination-bullet {
  width: 1.6rem;
  height: 1.6rem;
  background: #e4e7ee;
  opacity: 1;
}

.whowe .swiper-pagination-bullet-active {
  background: #55c3be;
}

.slidebox {
  background: #fff;
  border-radius: 2rem;
  padding: 4rem;
  height: 90%;
}

.slidebox h4 {
  background: #24dccc;
  color: #000;
  border-radius: 2rem;
  width: max-content;
  padding: 0.6rem 2rem;
  font-weight: 700;
}

.slidebox h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-top: 7rem;
}

.slidebox h3 span {
  display: block;
}

.slidebox p {
  color: #7f7f7f;
}

.revolutionize {
  margin-top: 15rem;
}

.revolutionize .heading {
  margin-bottom: 7rem;
}

.revolutionize .swiper-slide {
  width: 80%;
}

.revolutionize .swiper-slide:nth-child(2n) {
  width: 60%;
}

.revolutionize .swiper-slide:nth-child(3n) {
  width: 40%;
}

.revolutionize .swiper-slide {
  height: auto;
}

.swiper-pagination-bullet {
  cursor: pointer;
}

.dropdown-item {
  font-size: 1.4rem;
  line-height: 3;
  font-weight: 500;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background: #24dccc;
  color: #fff;
  border-radius: 0.5rem;
}

.dropdown-menu[data-bs-popper] {
  margin-top: 1.1rem;
}

.dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-nav .dropdown-menu {
  border-radius: 0.5rem;
  border: 0;
  z-index: 1100;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 99;
  background: #241e1e;
  width: 4.5rem;
  height: 4.5rem;
  transition: all 0.4s;
  text-decoration: none;
  padding: 5px;
}

.back-to-top {
  font-size: 1.5rem;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #24dccc;
  color: #fff;
  transform: rotate(360deg);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.circlerotate {
  position: absolute;
  top: 45%;
  right: -16%;
  transform: translate(-50%, -50%);
}

.rotatearea {
  position: relative;
  z-index: 999;
}

.prevention-tool .btn-success {
  margin-bottom: 11rem;
}

.awardmove {
  position: absolute;
  width: 19%;
  right: 0;
  bottom: 0;
  z-index: 99;
  overflow: hidden;
  /* transform: translateY(-50%); */
}

.revoslider {
  width: 100%;
  padding-left: 5rem;
}

.revoslider .swiper-button-next {
  /* color: #130c0f;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: #fff;
    font-size: 2rem;
    box-shadow: 0px 1px 2px #6a6a6a;
    margin-bottom: 1rem; */
  top: inherit;
  bottom: -3rem;
  width: 5rem;
  height: 5rem;
}

.revoslider .swiper-button-prev {
  /* color: #130c0f;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: #fff;
    font-size: 2rem;
    box-shadow: 0px 1px 2px #6a6a6a;
    margin-bottom: 1rem; */
  top: inherit;
  bottom: -3rem;
  right: 9rem;
  left: inherit;
  width: 5rem;
  height: 5rem;
}

.revoslider .swiper-button-prev:after {
  content: "";
  background: url(../images/arrow-next.webp) no-repeat center center;
  background-size: contain;
  width: 5rem;
  height: 5rem;
}

.revoslider .swiper-button-next:after,
.revoslider .swiper-button-prev:after {
  font-size: 2.5rem;
  font-weight: 800;
}

.revoslider .swiper-container-2 {
  height: 100%;
}

.revoslider .swiper-wrapper {
  height: 100%;
}

.bottomimage {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bottomimage img {
  align-self: flex-end;
}

.revoslider .swiper-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 
.revoslider .slidebox {
    height: 100%;
    display: flex;
    justify-content: center;
} */

.mobaccordian {
  margin-top: 5rem;
}

#nextButton {
  background: url("../images/arrow-next.webp") no-repeat center center;
  background-size: contain;
  width: 5rem;
  /* Adjust size as needed */
  height: 5rem;
}

.about-arrow {
  right: 5rem;
}

#prevButton {
  background: url("../images/arrow-prev.webp") no-repeat center center;
  background-size: contain;
  width: 5rem;
  /* Adjust size as needed */
  height: 5rem;
  display: block;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: "";
  background: url(../images/arrow-next.webp) no-repeat center center;
  background-size: contain;
}

.textanimate .btn-danger {
  background: #24dccc;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 3rem;
  color: #000;
  font-weight: 600;
  border: 0;
  font-size: 1.7rem;
  padding: 0.8rem 2rem;
}

.textanimate .btn-danger:focus,
.textanimate .btn-danger:hover {
  background: #000;
  color: #24dccc;
}

.dropdown-toggle::after {
  display: none;
}

.select .selectBtn {
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 400;
  font-size: 1.5rem;
}

.select .selectBtn:after {
  content: "";
  position: absolute;
  top: 45%;
  right: 15px;
  width: 6px;
  height: 6px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  /* border-right: 2px solid #666;
    border-bottom: 2px solid #666; */
  transition: 0.2s ease;
}

.select .selectBtn.toggle {
  border-radius: 3px 3px 0 0;
}

.select .selectBtn.toggle:after {
  -webkit-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
}

.select .selectDropdown {
  position: absolute;
  top: 100%;
  width: 100%;
  overflow: hidden;
  z-index: 999 !important;
  background: #fff;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  visibility: hidden;
  transition: 0.2s ease;
}

.select .selectDropdown .option:hover {
  background: #24dccc;
}

.select .selectDropdown.toggle {
  visibility: visible;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.selectDropdown {
  display: none;
  position: absolute;
  background-color: #fff;
  z-index: 1000;
}

.selectDropdown span {
  color: #818181;
  font-size: small;
  font-style: italic;
}

.selectDropdown.toggle {
  display: block;
}

.option {
  padding: 10px;
  cursor: pointer;
}

.option:hover {
  background-color: #f0f0f0;
}

.separatebox {
  padding: 4rem;
  padding-left: 0;
  padding-top: 0;
}

.benefit {
  padding: 3rem 0;
}

.aboutinside .heading h5 {
  font-weight: 600;
}

#terms .modal-dialog {
  position: fixed;
  top: auto;
  bottom: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0;
  height: 40vh;
  overflow-x: hidden;
}

#terms .modal-header {
  display: none;
}

#terms .modal-content {
  border-radius: 3rem;
  border-top-left-radius: 3rem;
  border-top-right-radius: 3rem;
  padding: 3rem;
}

#terms .modal-content h4 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

#terms .modal-content p a {
  color: #000;
}

#terms .modal-content p a {
  color: red;
}

#terms .modal-content {
  font-weight: 500;
}

.modal-lg,
.modal-xl {
  --bs-modal-width: 90%;
}

.selectDropdown.toggle {
  display: block;
}

.selectDropdown {
  display: none;
}

.box-CAPTCHA #CAPTCHA {
  font-size: 3rem;
  padding: 0.2rem 2rem;
  border-radius: 0.5rem;
  color: #000;
  font-weight: 600;
  border: 1px dashed #ccc;
}

.reload {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  display: block;
  text-align: center;
}

.reload i {
  line-height: 4rem;
}

.box-CAPTCHA a {
  cursor: pointer;
  background: #333;
  color: #fff;
}

.buynow {
  background: #24dccc;
  color: #10050b !important;
  border-radius: 3rem;
  padding: 0.8rem 3rem;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
}

.buynow:hover {
  background: #ffff;
  color: #10050b !important;
}

/* TEXT ANIMATE */
.textchange1 .textchange__alone {
  display: inline-block;
  font-weight: 600;
  font-size: 1.7rem;
  color: #fff;
}

.textchange1 .textchange__words .change {
  display: inline-block;
  position: absolute;
  top: 7rem;
  left: 0;
  opacity: 0;
  animation: changeword1 8s linear infinite;
}

.textchange1 .textchange__words .change h3 span {
  color: #24dccc;
}

.textchange1 .textchange__words .change:nth-child(1) {
  animation-delay: 0s;
}

.textchange1 .textchange__words .change:nth-child(2) {
  animation-delay: 2s;
}

.textchange1 .textchange__words .change:nth-child(3) {
  animation-delay: 4s;
}

.textchange1 .textchange__words .change:nth-child(4) {
  animation-delay: 6s;
}

@keyframes changeword1 {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  5% {
    opacity: 1;
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    transform: translateY(0);
  }

  30% {
    opacity: 0;
    transform: translateY(50px);
  }

  80% {
    opacity: 0;
    transform: translateY(50px);
  }
}

#contact-form {
  margin-top: 12rem;
}

.speed {
  background: #fff;
  border-radius: 1rem;
  padding: 3rem;
  height: 100%;
}

.speed h5 {
  font-size: 1.9rem;
  font-weight: 700;
}

.speed p {
  color: #807c83;
}

.speedtxt {
  margin-top: 5rem;
}

.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  font-size: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 30px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.btn-whatsapp-pulse-border {
  bottom: 8rem;
  right: 1rem;
  animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 20px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  z-index: 9999;
}

@keyframes pulse-border {
  0% {
    padding: 20px;
    opacity: 0.75;
  }

  75% {
    padding: 50px;
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.speedbg {
  background: #f0f4fd;
  padding: 10rem 0 5rem 0;
}

.faqmain {
  padding: 10rem 0 5rem 0;
}

.faqmain .accordion-button {
  background: #fff;
}

.faqmain .accordion-body {
  background: #fff;
  font-size: 1.6rem;
}

.faqmain .accordion-body p {
  font-size: 1.6rem;
}

.lightcolor {
  color: #24dccc;
}

/* Responsive */
@media screen and (max-width: 1440px) {
  .heading h3 {
    font-size: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .banner-title {
    width: 90%;
  }

  html {
    font-size: 60%;
  }

  .btn-secondary {
    margin-bottom: 4rem;
  }

  .choose-txt {
    padding-left: 1.5rem;
    margin-top: 5rem;
  }

  .heading h1,
  .heading h3 {
    font-size: 3.5rem;
  }

  .heading h2,
  .heading h5 {
    font-size: 2.5rem;
  }

  .empower .heading {
    margin-bottom: 3rem;
  }

  .contop {
    margin-top: 5rem;
  }

  .prevention-tool h3 {
    margin-top: 5rem;
  }

  .prevention-tool .btn-success {
    margin: auto;
    display: block;
    margin-bottom: 8rem;
  }

  .productcontent h2 {
    font-size: 3.5rem;
  }

  .tabtxt {
    width: 100%;
  }

  .tabbody {
    min-height: auto;
  }

  .tabbody img {
    object-fit: cover;
    height: 100%;
  }

  .award {
    width: 50%;
    bottom: -18rem;
  }

  .master-operations .accordion {
    margin-top: 3rem;
  }

  .mobaccordian .accordion-button {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .mobaccordian .tabtxt h4 {
    color: #000;
  }

  .heading h2,
  .heading h1,
  .heading h3 {
    margin-bottom: 2rem;
  }

  .insideproduct h1 {
    font-size: 2.5rem;
  }

  .circlerotate {
    width: 70%;
  }

  .circle-bann {
    margin: 5rem 0;
  }

  .insideproduct .btn-success {
    margin: auto;
    margin-top: 6rem;
  }

  .prevention-tool {
    margin-top: 6rem;
  }

  .tabtxt h4 {
    font-size: 2.5rem;
  }

  .bg-dark {
    padding: 2rem 1rem;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .topicon {
    width: 100%;
  }

  .textanimate .btn-danger {
    font-size: 1.6rem;
  }

  .nav-pills .nav-link {
    margin-right: 2rem;
  }

  .empower .swiper-button-prev {
    right: 52%;
  }

  .empower .swiper-button-next {
    left: 52%;
  }

  .whowe {
    padding-bottom: 10rem;
  }

  .whowe .swiper-pagination {
    top: 43rem;
  }

  .textchange1 .textchange__words {
    position: relative;
  }
}

@media screen and (max-width: 600px) {
  .navbar-toggler {
    padding: 0;
    font-size: 3rem;
  }

  .bg-dark {
    padding: 1rem 1rem;
  }

  .rotatearea {
    width: 80%;
    margin: auto;
    display: block;
  }

  .navbar-toggler i {
    color: #fff;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    margin-bottom: 2rem;
    font-size: 1.6rem;
  }

  .navbar-nav {
    margin-top: 3rem;
  }

  .buynow {
    width: max-content;
  }

  .dropdown-menu[data-bs-popper] {
    margin-top: 0;
  }

  .banner-title {
    padding-top: 13rem;
    width: 95%;
    margin: auto;
  }

  .home-banner {
    height: 100%;
  }

  .banner-title {
    position: inherit;
    transform: none;
    left: inherit;
  }

  .heading h2,
  .heading h1,
  .heading h3 {
    font-size: 3rem;
  }

  .heading h2,
  .heading h5 {
    font-size: 2.2rem;
  }

  .mob-cont {
    width: 100%;
  }

  .mob-cont .col-md-12 {
    padding-right: 0;
    padding-left: 3rem;
  }

  footer h4 {
    margin-top: 4rem;
    margin-bottom: 1rem;
  }

  footer b {
    margin-top: 4rem;
    margin-bottom: 1rem;
    display: block;
  }

  #contact-form {
    margin-top: 6rem;
  }

  footer ul li a {
    line-height: 2.5;
  }

  .contop {
    margin-top: 0;
  }

  .insideproduct .btn-success {
    margin: auto;
    margin-top: 8rem;
  }

  .productcontent h2 {
    font-size: 3rem;
  }

  .nav-pills .nav-link {
    margin-right: 2.5rem;
    margin-bottom: 2rem;
  }

  .tabbody {
    margin-top: 0;
  }

  .tabtxt h4 {
    font-size: 2.3rem;
  }

  .master-operations p {
    margin-bottom: 3rem;
  }

  .accordion-button {
    font-size: 1.8rem;
  }

  .master-operations {
    padding: 6rem 0;
  }

  .prevention-tool h3 {
    margin-top: 0;
  }

  .advance {
    margin-top: 5rem;
  }

  .contactmain .heading {
    margin-bottom: 2rem;
  }

  .mob-space {
    margin-top: 5rem;
  }

  .formspace {
    margin-top: 0;
  }

  .experience12 {
    margin-top: 8rem;
  }

  .aboutinside .btn-success {
    margin-top: 2rem;
  }

  .award {
    width: 30%;
    bottom: -9rem;
  }

  .whowe {
    margin-top: 3rem;
  }

  .revoslider {
    padding-left: 1.5rem;
    width: 95%;
  }

  .slidebox h3 {
    margin-top: 3rem;
    font-size: 2.5rem;
  }

  .revoslider .swiper-button-prev {
    left: 37vw;
  }

  .revoslider .swiper-button-next {
    right: 37vw;
  }

  .about-arrow {
    right: 0;
  }

  .revoslider .slidebox {
    margin-bottom: 0rem;
  }

  .slidebox h3 span {
    display: inline;
  }

  .insideproduct {
    padding-top: 14rem;
    padding-bottom: 2rem;
  }

  .aboutinside {
    padding-bottom: 15rem;
  }

  .mob-img01 {
    margin-bottom: 5rem;
  }

  header .container-fluid {
    width: 98%;
  }

  .tophban {
    margin: 5rem 0;
  }

  .strategies {
    padding: 7rem 0 5rem 0;
  }

  .btn-secondary {
    margin-bottom: 6rem;
    margin-top: 3rem;
  }

  .empower {
    padding: 6rem 0 5rem 0;
  }

  .awardmove {
    width: 33%;
    bottom: -30%;
  }

  .whowe .swiper-pagination {
    top: inherit;
    bottom: 0;
    text-align: center;
  }

  .whowe {
    padding-bottom: 0;
  }

  #terms .btn-success {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .heading h2,
  .heading h1,
  .heading h3 {
    font-size: 2.5rem;
  }

  .heading h2,
  .heading h5 {
    font-size: 1.8rem;
  }

  #contact-form {
    margin-top: 5rem;
  }

  .heading h5 img {
    width: 5rem;
  }

  .bg-dark {
    padding: 1rem 1rem;
  }

  .textanimate {
    display: none;
  }

  .strategies {
    padding: 7rem 0 2rem 0;
  }

  header .container-fluid {
    width: 100%;
  }

  .btn-secondary {
    margin-bottom: 9rem;
  }

  .number {
    font-size: 9rem;
    top: -8.5rem;
    margin-bottom: 7rem;
  }

  .whyus {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .empower {
    padding: 6rem 0 0rem 0;
  }

  .empower p {
    margin-bottom: 4rem;
  }

  .mob-cont {
    margin-top: 0;
  }

  .prevention-tool .btn-success {
    width: 100%;
  }

  .insideproduct h1 {
    font-size: 2rem;
  }

  .productcontent h2 {
    font-size: 2.5rem;
  }

  .insideproduct {
    padding-top: 11rem;
  }

  .aboutinside .btn-success {
    margin: auto;
    margin-top: 3rem;
    display: block;
  }

  .copyright p {
    margin-left: 0;
    text-align: center;
  }

  .banner-title h1 {
    font-size: 3.5rem;
  }

  .mob-cont {
    padding-bottom: 5rem;
  }

  .awardmove {
    width: 40%;
    bottom: -50%;
  }

  .whowe .swiper-pagination-bullet {
    width: 1.4rem;
    height: 1.4rem;
  }

  .revoslider .swiper-button-prev {
    left: 35vw;
  }

  .revoslider .swiper-button-next {
    right: 35vw;
  }

  #terms .modal-content {
    padding: 2rem;
  }

  #terms .modal-dialog {
    width: 95%;
    left: 49%;
  }
}

@media screen and (max-width: 390px) {
  .empower .swiper-button-next {
    left: 52%;
  }
}

@media screen and (max-width: 360px) {
  .separatebox {
    padding-right: 0;
  }

  .revoslider .slidebox {
    padding: 2rem;
  }

  .revoslider .swiper-button-prev {
    left: 0vw;
  }

  .revoslider .swiper-button-next {
    right: 30vw;
  }
}

@media screen and (max-width: 320px) {
  html {
    font-size: 55%;
  }

  .banner-title {
    padding-top: 10rem;
  }

  .banner-title h2 {
    font-size: 1.8rem;
  }

  .number {
    font-size: 7rem;
    top: -6.5rem;
  }

  .tabbody {
    padding: 4rem 2rem;
  }

  .banner-title h1 {
    font-size: 3rem;
  }

  .flogo {
    width: 50%;
  }

  .whowe .swiper-pagination-bullet {
    width: 1.3rem;
    height: 1.3rem;
  }

  .separatebox {
    padding: 0;
  }

  .slidebox {
    padding: 2.5rem;
  }

  .slidebox h3 {
    font-size: 2rem;
  }

  .revoslider .swiper-button-next {
    right: 30%;
  }

  .revoslider .swiper-button-prev {
    left: 30%;
  }

  .heading h2,
  .heading h1,
  .heading h3 {
    font-size: 2.2rem;
  }

  .navbar-brand img {
    width: 80%;
  }

  .topicon {
    width: 100%;
  }

  .productcontent h2 {
    font-size: 2.2rem;
  }

  .tabtxt h4 {
    font-size: 2rem;
  }

  .accordion-button {
    font-size: 1.7rem;
  }

  .prevention-tool h3 {
    font-size: 2.3rem;
  }

  .prevention-tool p {
    font-size: 1.6rem;
  }

  .advance {
    margin-top: 3rem;
  }

  .back-to-top {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.4rem;
  }

  .whowe .swiper-pagination {
    bottom: 0;
  }
}

/* ---------- Restricted Countries Page ---------- */

/* Header section */
.restricted-page .rc-head {
  margin-bottom: 1rem;
}
.restricted-page .rc-head .rc-icon {
  width: 40px;
  height: auto;
}
.restricted-page .rc-head h1 {
  font-weight: 700;
  font-size: 2.2rem;
  color: #10050b;
}

/* Subtitle / note */
.restricted-page .rc-note {
  font-size: 1.4rem;
  color: #676464;
}
.restricted-page .rc-note .rc-updated {
  font-size: 1.2rem;
  color: #999;
}

/* Card container */
.rc-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Filter bar */
.search-wrapper {
  display: flex;
  height: auto;
}

.rc-filters {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
}
.rc-filters .search-wrapper input {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
}
.rc-filters .search-wrapper input:focus {
  border-color: #24dccc;
  box-shadow: 0 0 0 3px rgba(36, 220, 204, 0.25);
}
.rc-filters .custom-select {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
}
.rc-filters .custom-select:focus {
  border-color: #24dccc;
  box-shadow: 0 0 0 3px rgba(36, 220, 204, 0.25);
}
.rc-filters .form-text {
  font-size: 1.3rem;
  color: #666;
}

/* Table */
.rc-thead {
  background: #f0f4fd;
}
.rc-thead th {
  font-size: 1.4rem;
  font-weight: 600;
  color: #10050b;
}
#restrictedTable td {
  font-size: 1.4rem;
  color: #444;
}

/* Status badges */
.rc-badge {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 30px;
  background: #dc3545; /* red for prohibited */
  color: #fff;
}
.rc-badge--restricted {
  background: #ffc107; /* amber for restricted */
  color: #000;
}

/* Footnote */
.rc-footnote {
  font-size: 1.3rem;
  color: #6c757d;
  background: #f8f9fa;
  border-left: 4px solid #24dccc;
  padding: 1rem 1.5rem;
  border-radius: 8px;
}

/* Sidebar */
.rc-side {
  text-align: center;
}
.rc-side img {
  max-width: 80%;
}
.rc-side .small {
  font-size: 1.3rem;
  color: #555;
}
