/* homepage */

.titlePaddingR {
  padding-right: 5vw;
}
.titlePaddingL {
  padding-left: 5vw;
}

.blog-nav-cont a{
  background: #0967d2 !important;
  border-color: #0967d2 !important;
}

.blog-nav-cont span{
  background: #0967d2 !important;
  opacity: 65% !important;
  color: #ffffff !important;
  border-color: #0967d2 !important;
}

.blog-nav-cont a:hover{
color: white !important;
opacity: 90% !important;
}

.no-scrollbar {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer and Edge */
}

.no-scrollbar::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

.form-hidden{
  display: none;
}

/*
.cto-list li::marker {
    color: #09D220;
    font-size: 30px;
    line-height: 12px;
    margin-right: 16px !important;
} */

/* .cto-list {
  margin-left: 16px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
} */

.cto-list li::marker {
  color: #09D220;
  /* font-size: 1.6em; */
}

@media screen and (min-width: 1200px) {
  .hero-height {
      height: calc(100vh);
  }
}
/* @media screen and (min-width: 700px) {
  .cto-list li::marker {
    font-size: 1.6em;
  }
} */

.link {
    transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
    font-weight: 400;
}

.link.active {
    color: #0967d2;
    font-weight: 500;
    /* font-weight: bold; */
}

.laptop-h {
    height: fit-content;
}

.swiper {
  width: 100%;
  height: fit-content;
  max-width: 1280px;
}

.goodList li,
.badList li {
  display: flex;
  align-items: flex-start;
}

.goodList li::before {
  content: url("../images/statusCheck.png");
  margin-right: 0.5rem; /* Adjust as needed */
  /* margin-top: 0.2rem;  */
}

.pricingList li {
  display: flex;
  align-items: flex-start;
}

.pricingList li::before {
  content: url("../images/pricing-li.png");
  margin-right: 0.5rem;
  /* margin-top: 0.2rem;  */
}

.badList li::before {
  content: url("../images/statusFail.png");
  margin-right: 0.5rem; /* Adjust as needed */
  /* margin-top: 0.2rem;  */
}

html {
  scroll-behavior: smooth;
}

.link {
  transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
  font-weight: 400;
}

.link.active {
  color: #0967d2;
  font-weight: 700;
  /* font-weight: bold; */

}


/* .swiper-slide {
  text-align: center;
  font-size: 20px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
} */

.swiper-pagination-bullet {
  width: 20px !important; /* Width of inactive dots */
  height: 5px !important;
  background: rgba(0, 0, 0, 0.205) !important; /* Color of inactive dots */
  margin: 0 2px !important;
  opacity: 1 !important;
  border-radius: 25px !important;
  transform-origin: right;
  transition: all 0.4s ease-in-out;
}

.swiper-pagination-bullet-active {
  width: 45px !important; /* Width of active dot */
  background: #0967d2 !important; /* Color of active dot */
  height: 5px !important;
  margin: 0 2px !important;

}

#dynamic-role {
  display: inline-block;
  border-right: 2px solid #555; /* Optional: To mimic a cursor */
  font-weight: bold;
}

  /* width */
.ebook-modal::-webkit-scrollbar {
  width: 8px;
}

/* Track */
.ebook-modal::-webkit-scrollbar-track {
  box-shadow: none;
  border-radius: 19px;
  overflow: hidden;
  background: #fff;
  margin: 12px 0;
}

/* Handle */
.ebook-modal::-webkit-scrollbar-thumb {
  background: #acadad;
  border-radius: 19px;

}


.ebook__modal__inputs__cont label {
font-size: 16px;
font-weight: 400;
line-height: 20px;
text-align: left;
color: #373D43;
}
.ebook__modal__inputs__cont .input__cont{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ebook__modal__inputs__cont .textInput {
font-size: 16px;
font-weight: 400;
padding: 0 12px ;
border-radius: 8px;
width: 100%;
height: 54px;
border: 0.5px solid #67737E;
line-height: 20px;
text-align: left;
color: #373D43;
}
.ebook__modal__inputs__cont .textInput:focus {
border: 1px solid #67737E;
outline: none;
}
.ebook__modal__inputs__cont .textInput::placeholder {
color: #67737E;
}

.marquee {
  max-width: 100%;
  overflow: hidden;
  --speed: 60s;
  --item-width: 255px;
  --num-items: 3;
  --item-gap: 16px;

  --single-slide-speed: calc(var(--speed) / var(--num-items));
  --item-width-plus-gap: calc(var(--item-width) + var(--item-gap));
  --track-width: calc(var(--item-width-plus-gap) * calc(var(--num-items) - 1));

  --direction: forwards;
}
.marquee2 {
  max-width: 100%;
  overflow: hidden;
  --speed: 60s;
  --item-width: 255px;
  --num-items: 3;
  --item-gap: 16px;

  --single-slide-speed: calc(var(--speed) / var(--num-items));
  --item-width-plus-gap: calc(var(--item-width) + var(--item-gap));
  --track-width: calc(var(--item-width-plus-gap) * calc(var(--num-items) - 1));

  --direction: reverse;
}

.marquee-track {
  container-type: inline-size;
  display: grid;
  grid-template-columns: var(--track-width) [track] 0px [resting];
  width: max-content;
}

.marquee-item {
  width: var(--item-width) !important;

  grid-area: resting;
  animation: marquee-move var(--speed) linear infinite var(--direction);
  animation-delay: calc(var(--single-slide-speed) * var(--item-position) * -1);
}



@keyframes marquee-move {
  to {
    transform: translateX(calc(-100cqw - 100%));
  }
}


@media screen and (min-width: 1200px) {
    .laptop-h {
        height: calc(100vh - 130px);
    }

}
@media screen and (min-width: 1024px) {

    .marquee, .marquee2 {
      --speed: 65s;
      --item-width: 394px;
      --num-items: 3;
      --item-gap: 20px;
    }
}


@media screen and (min-width: 1360px) {
  .titlePaddingR {
    padding-right: calc((100vw - 1280px) / 2 - 0vw);
  }

  .titlePaddingL {
    padding-left: calc((100vw - 1280px) / 2 - 0.1vw);
  }
}

@media (min-width: 700px) {
    .tablet\:text-xl {
        font-size: 18px !important;
        line-height: 1.75rem;
    }
}
