.header {
  position: fixed;
  top: 30px;
  transition: 0.7s;
  max-width: calc(100% - 20px);
  width: calc(var(--container-width));
  margin: auto;
  border-radius: 100px;
  background-color: rgba(7, 8, 6, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid #20211f;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 2;
}
.header .header-logo img {
  scale: 1.4;
}
.header .menu-item {
  background-color: transparent;
  border: 0;
  color: var(--body-color);
  padding: 5px 10px;
  font-size: 18px;
}
.header .menu-item:hover {
  color: var(--main-color);
}
.btn-header {
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
  color: #000;
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 20px;
}
.btn-header:hover {
  background: transparent;
  color: var(--main-color);
}
.after-header {
  margin-top: calc(var(--header-height) + 30px);
}
section{
  position: relative;
}
.landing-section {
  /* height: 100vh; */
}
.landing-section .tt {
  font-size: 56px;
}
.btn {
  width: 242px;
  height: 46px;
  border-radius: 60px;
  background-color: var(--main-color);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--secondary-font);
  padding-top: 2px;
  transition: 0.4s;
  border: 0;
}
.btn:hover {
  background-color: #fff;
}
.section-badge {
  background-color: var(--soft-white);
  padding: 10px 30px;
  padding-top: 14px;
  border-radius: 60px;
  font-family: var(--secondary-font);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--main-color);
  margin-bottom: 30px;
}
.section-badge svg {
  width: 40px;
  height: 40px;
}
.clients-banner .slide {
  pointer-events: none;
  height: 58px;
  margin-right: 30px;
}
.title-grad {
  background-image: linear-gradient(0deg, rgb(217, 217, 217) 0%, var(--main-color) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title-56 {
  font-size: 56px;
  font-weight: bold;
  padding-bottom: 30px;
}
.our-feat-section .fig,
.for-whom-section .fig {
  width: 56px;
  height: 56px;
}
.our-feat-section .fig svg,
.for-whom-section .fig svg {
  max-width: 80%;
}
.faq-item {
  background-color: #131412;
  border: 1px solid #393938;
}
.faq-item.active .icn {
  transform: rotate(180deg);
}
.faq-item .acc-head {
  padding: 24px;
}
.faq-section .box {
  max-width: 800px;
}
.to-color:hover {
  color: var(--main-color);
}
.footer .box {
  border-bottom: 1px solid #393938;
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  top: 0;
  left: 0;
  opacity: 0.5;
  pointer-events: none;
}
#circle {
  position: fixed;
  border-radius: 100%;
  animation: rotate-animation 8s infinite linear;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -15%;
  /* z-index: 10; */
  direction: ltr;
  text-align: left;
  pointer-events: none;
}

#circle span {
  position: absolute;
  transform-origin: top left;
  font-size: 16px;
  color: var(--main-color);
  text-transform: uppercase;
}
@keyframes rotate-animation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(-360deg);
  }
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-size: 40px;
  margin-bottom: 20px;
  background: linear-gradient(to right, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-header p {
  font-size: 18px;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-card {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border-radius: 16px;
  padding: 40px 30px;
  width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  border-color: #4facfe;
}
.pricing-card.premium:hover {
  border-color: var(--main-color);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #4facfe, #00f2fe);
}

.pricing-card.premium::before {
  background: var(--main-color);
}

.plan-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: white;
}
.plan-name span {
  font-size: 14px;
}
.price {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 30px;
  color: white;
}

.price .sm {
  font-size: 30px;
  color: #aaa;
}

.features {
  margin-bottom: 30px;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #ddd;
}

.feature-icon {
  margin-inline-end: 10px;
  color: #4facfe;
  font-weight: bold;
}

.premium .feature-icon {
  color: var(--main-color);
}

.cta-button {
  display: inline-block;
  width: 100%;
  padding: 15px 0;
  background: linear-gradient(to right, #4facfe, #00f2fe);
  color: black;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.premium .cta-button {
  background: var(--main-color);
}

.cta-button:hover {
  transform: scale(1.05);
}

.pricing-card.premium {
  background: linear-gradient(145deg, #222, #333);
  transform: scale(1.03);
}

.popular-tag {
  position: absolute;
  top: 20px;
  left: -30px;
  background: red;
  /* background: linear-gradient(to right, #fd5e86, #ec38bc); */
  color: white;
  padding: 5px 30px;
  font-size: 12px;
  font-weight: bold;
  transform: rotate(-45deg);
}
.typed-text {
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
}
.typed-text {
  /* text-decoration: underline; */
}
span.cursor {
  display: inline-block;
  background-color: var(--main-color);
  margin-left: 0.1rem;
  width: 3px;
  animation: blink 1s infinite;
  height: 50px;
  position: relative;
  top: 9px;
}
span.cursor.typing {
  animation: none;
}
@keyframes blink {
  0% {
    background-color: var(--main-color);
  }
  49% {
    background-color: var(--main-color);
  }
  50% {
    background-color: transparent;
  }
  99% {
    background-color: transparent;
  }
  100% {
    background-color: #fff;
  }
}

@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 320px;
    margin-bottom: 30px;
  }

  .pricing-card.premium {
    transform: scale(1);
  }
}
[banner] {
  text-align: left;
  direction: ltr;
}
.serv-section {
  height: 167px;
  overflow: hidden;
}
[banner] .slick-arrow {
  display: none !important;
}
.serv-section .tt {
  font-size: 48px;
  color: var(--main-color);
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 11px;
}
.serv-section .tt:after {
  content: "";
  background-color: #fff;
  opacity: 0.3;
  display: inline-block;
  width: 13px;
  height: 13px;
  min-width: 13px;
  min-height: 13px;
  border-radius: 50%;
}
.serv-section .slide:nth-of-type(even) .tt span {
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  opacity: 0.5;
}

.beni-section .item  {
  background-color: #1b1b1b;
  border-radius: 12px 25px 12px 12px;
    transition: 0.4s;
    padding: 20px 26px;
}
.beni-section .item figure {
  border-radius: 6px;
  background: #fff;
  width: 42px;
  height: 42px;
}
.our-cookie-section {
  padding-top: 250px;
}
.our-cookie-section .hand-flash {
  position: absolute;
  bottom: 290px;
  right: 173px;
  width: 385px;
  height: 580px;
}
.our-cookie-section .fig .c1 {
  position: absolute;
  top: -152px;
  right: 180px;
  width: 292px;
}
.our-cookie-section .finger {
  position: absolute;
  top: 19px;
  z-index: 1;
  right: 233px;
}
.our-cookie-section .hand-flash {
  position: absolute;
  bottom: 260px;
  right: 120px;
  width: 385px;
  height: 580px;
}
.our-cookie-section .finger {
  position: absolute;
  top: 25px;
  z-index: 1;
  right: 233px;
}
.span-inside span {
  color: var(--main-color);
}

@media (max-width: 1100px) {
  .landing-section .tt {
    font-size: 44px;
}
.landing-section .desc {
  font-size: 20px;
}
#circle {
  left: -180px;
  bottom: auto;
}
#particles-js {
  position: fixed;
}
}
@media (max-width: 776px) {
    .landing-section .tt {
        font-size: 21px;
    }
    .landing-section .typed-text {
        font-size: 20px;
    }
    .our-cookie-section .hand-fig {
        zoom: 0.4;
    }
    .our-cookie-section .box2 {
        gap: 10px;
        padding-bottom: 0px;
    }
    .our-cookie-section .box2 img{
        width: 50px;
    }
    .section-title-56 {
        font-size: 30px;
    }
    .section-badge {
        font-size: 16px;
    }
    .for-whom-section .item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .header-logo img{
      width: 80px;
    }
    .header {
      position: absolute;
    }
    .btn-header {
      font-size: 14px;
  }
}