* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Arial", sans-serif;
}

a {
  text-decoration: none;
  display: block;
}

body {
  background-color: #000;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

header {
  color: #1a1a1a;
}

.header-top {
  background-color: #eee;
  padding-block: 14px;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top-btns {
  display: flex;
  gap: 20px;
  max-width: 500px;
  width: 100%;
}

.header-top-btns button:first-of-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  flex: 1;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.header-top-btns button:nth-of-type(2) {
  /* Existing styles */
  color: #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  text-transform: capitalize;
  padding: 16px 20px;
  background-color: #76b900;
  background-image: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border: none;
  cursor: pointer;
  transition: background-color 0.4s ease, background-image 0.4s ease;
}

.header-top-btns button:nth-of-type(2):hover {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='163' height='125' viewBox='0 0 163 125' fill='none'%3E%3Cg filter='url(%23filter0_f_71_913)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M81.0801 84.3914C69.0846 84.4306 54.4595 84.0051 50.741 73.0397C46.9803 61.9495 58.2648 52.9679 68.1189 46.1697C78.0125 39.3443 90.1473 32.3612 100.281 38.8627C111.497 46.0583 114.766 60.8396 109.702 72.8474C105.404 83.038 92.5207 84.3541 81.0801 84.3914Z' fill='%2376B900'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_f_71_913' x='0' y='-13.7266' width='162.021' height='148.12' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='BackgroundImageFix' result='shape'/%3E%3CfeGaussianBlur stdDeviation='25' result='effect1_foregroundBlur_71_913'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
}

.header-top-btns button:nth-of-type(2)::before,
.header-top-btns button:nth-of-type(2)::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease, border-color 0.4s ease;
}

.header-top-btns button:nth-of-type(2)::before {
  border-style: solid;
  border-width: 2px;
  border-color: transparent;
  background-image: linear-gradient(to right, #76b900 20px, transparent 20px),
    linear-gradient(to bottom, #76b900 20px, transparent 20px),
    linear-gradient(to left, #76b900 20px, transparent 20px),
    linear-gradient(to top, #76b900 20px, transparent 20px);
  background-repeat: no-repeat;
  background-size: 20px 2px, 2px 20px, 20px 2px, 2px 20px;
  background-position: 0 0, 0 0, 100% 100%, 100% 100%;
}

.header-top-btns button:nth-of-type(2)::after {
  border-style: solid;
  border-width: 2px;
  border-color: transparent;

  background-image: linear-gradient(to left, #76b900 20px, transparent 20px),
    linear-gradient(to bottom, #76b900 20px, transparent 20px),
    linear-gradient(to right, #76b900 20px, transparent 20px),
    linear-gradient(to top, #76b900 20px, transparent 20px);

  background-repeat: no-repeat;

  background-size: 20px 2px, 2px 20px, 20px 2px, 2px 20px;
  background-position: 100% 0, 100% 0, 0 100%, 0 100%;
}

.header-top-btns button:nth-of-type(2):hover::before,
.header-top-btns button:nth-of-type(2):hover::after {
  opacity: 1;
}

.header-top-btns button:nth-of-type(3) {
  border: none;
  cursor: pointer;
}

.header-nav {
  background-color: #f7f7f7;
  padding-block: 10px;
}

.header-nav .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
  display: inline-block;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link,
.dropdown a {
  color: #1a1a1a;
  font-size: 22px;
  text-transform: capitalize;
}

.nav-link.active {
  font-weight: 700;
  border-bottom: 1px solid #76b900;
}

.nav-item .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 16px;
  left: 0;
  background: #f7f7f7;
  min-width: 330px;
  width: 100%;
  z-index: 1;
}

.nav-link img {
  transform: rotate(0deg);
  transition: transform 0.4s ease;
}

.nav-link:hover img {
  transform: rotate(180deg);
}

.nav-item:hover .dropdown {
  display: block;
}

.nav-item .dropdown a {
  display: block;
  padding: 8px;
  color: #1a1a1a;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.nav-item .dropdown a::after {
  content: "";
  background-color: #666;
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  transition: background-color 0.4s ease;
}

.nav-item .dropdown a:hover {
  background: #f3f3f3;
  font-weight: 700;
}

.nav-item .dropdown a:hover::after {
  background-color: #76b900;
}

.header-nav-btns {
  display: flex;
  gap: 40px;
  align-items: center;
}

.header-nav-btns div:first-of-type {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav-btns div:first-of-type a {
  color: #1a1a1a;
  font-size: 16px;
  text-transform: capitalize;
}

.header-nav-btns div:last-of-type {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-nav-btns div:last-of-type button {
  color: #666;
  font-size: 16px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
}

.header-nav-btns div:last-of-type button {
  background: transparent;
}

.dt-only {
  display: block;
}

#close-btn,
#burger-btn {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
}

.bottom-form {
  min-height: 100vh;
  background: radial-gradient(
      121.02% 50% at 50% 50%,
      rgba(0, 0, 0, 0.8) 27.96%,
      rgba(0, 0, 0, 0) 76.25%
    ),
    url("/img/bottom-form-bg.webp") no-repeat center / cover;
}

.article-title {
  color: #000;
  text-align: center;
  font-size: 56px;
  font-weight: 700;
}

.white {
  color: #fff;
}

.bottom-form .container {
  padding-block: 90px;
  max-width: 960px;
}

.bottom-subtitle {
  margin-top: 16px;
  margin-bottom: 74px;
  color: #ccc;
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  line-height: 169%;
}

.bottom-form-title {
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
}

.bottom-form-subtitle {
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  max-width: 300px;
  margin: 0 auto 32px auto;
}

.bottom-form-secured {
  display: flex;
  max-width: 360px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #f7f7f7;
  text-align: center;
  font-size: 14px;
  margin: 0 auto;
}

.bottom-form-overlay {
  max-width: 460px;
  margin: 0 auto;
  padding: 32px 20px;
  width: 100%;
  height: 100%;
  background: url(/img/corner-left-top.svg) left top no-repeat,
    url(/img/corner-right-bottom.svg) right bottom no-repeat,
    url(/img/corner-left-bottom.svg) left bottom no-repeat,
    url(/img/corner-right-top.svg) right top no-repeat;
  backdrop-filter: blur(18px);
}

.bottom-block {
  padding: 16px 0;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bottom-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.avatars-bottom {
  display: flex;
  align-items: center;
}
.avatars-bottom img:nth-child(2) {
  z-index: 2;
  margin-left: -4px;
}
.avatars-bottom img:nth-child(3) {
  z-index: 3;
  margin-left: -4px;
}

.footer-top {
  background-color: #000;
  padding-block: 64px;
}

.footer-top .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.footer-top-list {
  display: flex;
  flex-direction: column;
  max-width: 452px;
  width: 100%;
  gap: 32px;
}

.footer-top-list-item {
  color: #76b900;
  text-align: left;
  font-size: 26px;
  font-weight: 700;
}

.footer-top-list-title {
  padding-block: 10px;
  border-bottom: 2px solid #666;
  color: #fff;
  text-align: left;
  font-size: 42px;
  font-weight: 700;
}

.underline {
  text-decoration: underline;
  text-decoration-color: #76b900;
}

.footer-top-list-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.footer-top-list-links a {
  color: #666;
  text-align: left;
  font-size: 24px;
}

.footer-top-list-links div {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-top-list-links div a {
  max-width: 40px;
  width: 100%;
}

.footer-top-list-links div a svg {
  width: 100%;
  height: 40px;
}

.footer-top-list-links div a svg path {
  transition: fill 0.4s ease;
}

.footer-top-list-links div a svg:hover path {
  fill: #cccccc;
}

.footer {
  padding-block: 32px;
  background-color: #f7f7f7;
}

.logo-footer {
  margin-bottom: 16px;
}

.footer-text {
  color: #000;
  font-size: 10px;
}

.footer-text:not(:last-of-type) {
  margin-bottom: 16px;
}

.hero {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000 100%),
    url("/img/main-hero-bg.webp") center no-repeat;
  min-height: calc(100vh - 55px);
}

.hero .container {
  padding-top: 100px;
  padding-bottom: 40px;
}

.hero-text {
  max-width: 830px;
  width: 100%;
}

.hero-text h4 {
  color: #f7f7f7;
  font-size: 32px;
  font-weight: 700;
  line-height: 170%;
  margin-bottom: 10px;
}

.hero-text .article-title {
  text-align: left;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.hero-text-text {
  color: #f7f7f7;
  font-size: 32px;
  line-height: 170%;
  margin-bottom: 32px;
}
.hero-text-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 140px;
}
.common-btn {
  display: block;
  text-align: center;
  max-width: 170px;
  width: 100%;
  padding: 16px 20px;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  text-transform: capitalize;
  background-color: #76b900;
  border: 1px solid transparent;
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

.common-btn:hover {
  background-color: #fff;
  border-color: #76b900;
}

.hero-slider {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(7px);
  margin-bottom: 40px;
}

.hero-page-line {
  position: relative;
  border-radius: 4px;
  height: 6px;
  width: 100%;
  background: #666;
  margin-bottom: 16px;
}

.page-active {
  position: relative;
}

.page-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #76b900;
  border-radius: 4px;
  animation: fillLine 2s ease forwards;
}

.hero-slider-card-title,
.hero-slider-card-text {
  transition: color 0.4s ease;
}

.hero-slider-card:hover .hero-slider-card-title {
  color: #fff;
}

.hero-slider-card:hover .hero-slider-card-text {
  color: #fff;
}

.hero-slider-card:first-of-type {
  background: url(/img/corner-left-top.svg) left 4px no-repeat,
    url(/img/corner-left-bottom.svg) left calc(100% - 4px) no-repeat;
}

.hero-slider-card:last-of-type {
  background: url(/img/corner-right-bottom.svg) right calc(100% - 4px) no-repeat,
    url(/img/corner-right-top.svg) right 4px no-repeat;
}

.hero-slider-card:hover .hero-page-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #76b900;
  border-radius: 4px;
  animation: fillLine 2s ease forwards;
}

@keyframes fillLine {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.main-img-wrapper {
  position: relative;
  max-width: 450px;
  width: 100%;
  min-height: 400px;
}

.main-form {
  position: absolute;
  top: -2000%;
  transition: top 0.4s ease, right 0.4s ease, transform 0.4s ease;
  background: rgba(0, 0, 0, 0.1);
  max-width: 420px;
  width: 100%;
}

.bottom-block {
  padding: 0;
  gap: 40px;
}

.bottom-form-overlay {
  padding: 20px;
}

.bottom-header {
  margin-bottom: 0px;
}

.swiper-slide {
  max-width: 266px;
  display: flex !important;
  flex-direction: column;
  height: auto !important;
  width: 100%;
  min-height: 90px;
  cursor: pointer;
}

.hero-slider-card-title {
  color: #ccc;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.hero-slider-card {
  padding: 20px;
  max-width: 270px;
  width: 100% !important;
}

.hero-slider-card-text {
  color: #ccc;
  font-size: 16px;
  text-transform: capitalize;
}

.link-active h2,
.link-active p {
  color: #f7f7f7;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.trusted {
  background-color: #f7f7f7;
  padding-top: 64px;
  padding-bottom: 64px;
}

.article-subtitle {
  color: #000;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 170%;
  margin-bottom: 16px;
}

.trusted .article-title {
  margin-bottom: 64px;
}

.trusted-card {
  max-width: 180px;
  min-height: 90px;
  padding: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(/img/corner-left-top.svg) left 4px no-repeat,
    url(/img/corner-right-bottom.svg) right calc(100% - 4px) no-repeat,
    url(/img/corner-left-bottom.svg) left calc(100% - 4px) no-repeat,
    url(/img/corner-right-top.svg) right 4px no-repeat;
}

.trusted-card-logo {
  max-width: 140px;
  width: 100%;
}

.image-parts {
  display: flex;
  align-items: center;
  gap: 2px;
}

.trusted-card-logo-sm {
  max-width: 100px;
}

.trusted-card-logo-sm-2 {
  max-width: 70px;
}

.trusted-dekstop-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px 20px;
}

#custom-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  pointer-events: none;
  background-image: url("/img/spot.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease;
}
#custom-cursor-huge {
  position: fixed;
  left: 0;
  top: 0;
  width: 400px;
  height: 400px;
  pointer-events: none;
  background-image: url("/img/spot.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease;
}
#custom-cursor-huge {
  position: fixed;
  left: 0;
  top: 0;
  width: 400px;
  height: 400px;
  pointer-events: none;
  background-image: url("/img/spot.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.trusted-card:hover {
  cursor: none;
}

.trusted-mobile-grid {
  display: none;
}

body.cursor-active #custom-cursor {
  opacity: 1;
}
body.cursor-huge-active #custom-cursor-huge {
  opacity: 1;
}
.watch {
  padding: 8px 0px;
  background: #76b900;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.watch .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.watch .container div {
  display: flex;
  align-items: center;
  gap: 32px;
}

.watch .container div h2 {
  color: #000;
  font-size: 22px;
  font-weight: 700;
}

.watch .container div a {
  padding: 10px;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.gs-swipers {
  display: none;
}
.watch .container button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transform: rotate(0deg);
  border: none;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.watch .container button:hover {
  transform: rotate(90deg);
}

.recomended-title-wrapper {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}

.recomended-title {
  color: #f7f7f7;
  font-size: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-transform: capitalize;
}

.recomended {
  padding-block: 64px;
  position: relative;
  background-color: #1a1a1a;
}

.rec-wrapper {
  padding-left: clamp(16px, calc((100vw - 1462px) * 0.489086 + 16px), 240px);
}

.rec-card {
  max-width: 430px !important;
  gap: 0 !important;
  width: 100% !important;
  background-color: #f7f7f7;
  overflow: hidden;
}

.rec-card-img {
  width: 100%;
  margin-bottom: 16px;
  transition: transform 0.4s ease;
}

.rec-card:hover .rec-card-img {
  transform: scale(1.1);
}

.rec-card-category {
  padding-inline: 16px;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.rec-card-title {
  padding-inline: 16px;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 22px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.mob-only {
  display: none !important;
}

.trusted .bottom-text {
  color: #1a1a1a;
  text-align: center;

  font-size: 26px;

  font-weight: 400;
  line-height: 169%;
  max-width: 910px;
  width: 100%;
  margin-top: 64px;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
}
.trust-link {
  display: block;
  color: #000;

  font-size: 22px;

  font-weight: 700;
  line-height: 100%;
  text-align: center;
  text-transform: capitalize;
  padding: 16px 20px;
  background: #76b900;
  margin: 0 auto;
  max-width: 292px;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}
.trust-link:hover {
  background: #f7f7f7;
  box-shadow: inset 0 0 0 1px #76b900;
}
.trusted .article-subtitle {
  color: black;
}

.ready {
  background-color: #1a1a1a;
  padding-block: 64px;
  overflow: hidden;
  display: flex;
  position: relative;
  gap: 100px;
  align-items: flex-end;
}

.ready-text {
  max-width: 960px;
  padding-left: clamp(16px, calc((100vw - 1462px) * 0.489086 + 16px), 240px);
  width: 100%;
  z-index: 2;
  background-color: #1a1a1a;
}

.ready-title {
  color: #f7f7f7;
  text-align: left;
  font-size: 22px;
  font-weight: 700;
  line-height: 170%;
  margin-bottom: 32px;
}

.ready .article-title {
  text-align: left;
  margin-bottom: 16px;
}

.ready-text p {
  color: #ccc;
  font-size: 26px;
  line-height: 170%;
  margin-bottom: 32px;
}

.ready-slider-card-text {
  color: #ccc;
  font-size: 20px;
  line-height: 170%;
}

.ready-slider-card-link {
  color: #f7f7f7;
  font-size: 22px;
  font-weight: 700;
  line-height: 170%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ready-slider-card-link svg {
  transform: rotate(180deg);
  transition: width 0.4s ease, height 0.4s ease;
}

.ready-slider-card-link:hover svg {
  width: 32px;
  height: 32px;
}

.ready-slider-card-link svg path {
  transition: fill 0.4s ease;
}

.ready-slider-card-link:hover svg path {
  fill: #f7f7f7;
}

.ready-slider-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.swiper-button-next-2,
.swiper-button-prev-2 {
  position: absolute;
  top: 28px;
  right: 100px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: url("/img/icon-arrow-slider-2.svg") no-repeat center / cover,
    #76b900;
  transform: rotate(180deg);
  background-size: 20px;
}

.swiper-button-next-2 {
  right: 18px;
  transform: rotate(0deg);
  background-size: 20px;
}

.swiper-button-next-3,
.swiper-button-prev-3 {
  top: 0;
}

.swiper-slide {
  width: 100%;
}

.ready-slider.swiper {
  padding-top: 32px;
  max-width: 700px !important;
  width: 100%;
  overflow: hidden;
}

.ready-slider-card {
  max-width: 420px !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 32px;
  height: auto !important;
}

.ready-swiper-pagination,
.rec-swiper-pagination {
  display: none !important;
  height: 6px !important;
  position: absolute;
  bottom: 0 !important;
}

.ready-slider-card .swiper-slide {
  width: 100%;
}

.ready-slider-card-title {
  color: #f7f7f7;
  font-size: 32px;
  font-weight: 700;
  text-transform: capitalize;
}

.accent {
  color: #76b900;
}

.ready .common-btn {
  padding: 16px 20px;
}

.core-chip-block .article-title {
  color: #f7f7f7;
}
.core-chip-block {
  padding-block: 64px;
}
.chip-block {
  display: flex;
  gap: 64px;
  margin-bottom: 64px;
}
.chip-cards-list {
  display: flex;
  gap: 20px;
  align-items: center;
}

.chip-card {
  padding: 32px 20px;
  background: #1a1a1a;
  max-width: 344px;
  flex: 1;
}
.chip-card img {
  margin-bottom: 20px;
}
.chip-card h4 {
  color: #f7f7f7;

  font-size: 32px;

  font-weight: 700;

  text-transform: capitalize;
  margin-bottom: 8px;
}
.chip-card p {
  color: #ccc;

  font-size: 18px;

  font-weight: 400;
  line-height: 169%;
}
.chip-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.chip-cards-lists {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content-item h3 {
  color: #f7f7f7;

  font-size: 28px;

  font-weight: 700;

  text-transform: capitalize;
}
.content-item p {
  color: #ccc;

  font-size: 18px;

  font-weight: 400;
  line-height: 169%;
}
.chip-content a {
  color: #f7f7f7;

  font-size: 22px;

  font-weight: 700;
  line-height: 169%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.chip-content a svg {
  fill: #76b900;
  transition: fill 0.5s ease, width 0.5s ease, height 0.5s ease;
}
.chip-content a:hover svg {
  fill: #f7f7f7;
  width: 36px;
  height: 36px;
}
.chip-picture img {
  z-index: 4;
}
.chip-picture {
  max-width: 788px;
  width: 100%;
  max-height: 502px;
  height: 100%;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  background: url(/img/corner-left-top.svg) left top no-repeat,
    url(/img/corner-right-bottom.svg) right bottom no-repeat,
    url(/img/corner-left-bottom.svg) left bottom no-repeat,
    url(/img/corner-right-top.svg) right top no-repeat;
}
.chip-picture::before,
.chip-picture::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  z-index: 3;
  @media (max-width: 1472px) {
    z-index: -1;
  }
}

.chip-picture::before {
  background-image: url("/img/hor-lines.svg");
  background-position: center center;
}

.chip-picture::after {
  background-image: url("/img/ver-lines.svg");
  background-position: center center;
}
.chip-swipers {
  display: none;
}
.get-started {
  position: relative;
  background: url(/img/gs-bg-spot-right-top.svg) right top no-repeat,
    url(/img/gs-bg-spot-left-bottom.svg) left bottom no-repeat;
  background-color: white;
  padding-block: 64px;
}
.get-started .article-subtitle {
  color: black;
}
.get-started::before {
  content: "";
  background-image: url("/img/hor-lines.svg");
  background-position: center center;
  opacity: 0.05;
  position: absolute;
  inset: 0;
}

.get-started::after {
  content: "";
  background-image: url("/img/ver-lines.svg");
  background-position: center center;
  position: absolute;
  opacity: 0.05;
  inset: 0;
}
.gs-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  align-items: flex-start;
  gap: 20px;
  min-height: 298px;
  background: #f7f7f7;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  grid-column: span 4;
  max-width: 452px;
  z-index: 2;
  transition: box-shadow 1s ease, scale 1s ease;

  &:hover {
    scale: 1.008;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.4);
  }
}
.gs-card a {
  height: 100%;
}
.gs-card h4 {
  color: #000;
  font-size: 38px;
  font-weight: 700;
  text-transform: capitalize;
}
.gs-card p {
  color: #1a1a1a;

  font-size: 18px;

  font-weight: 400;
  line-height: 169%;
}
.gs-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  width: 100%;
}
.core-technology-stack {
  background-image: url("/img/cts-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: black;
  padding-block: 64px;
}
.cts-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.cts-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.cts-card img {
  flex: 1;
  max-width: 694px;
}
.cts-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: start;
}
.cts-card-content h3 {
  color: #f7f7f7;

  font-size: 38px;

  font-weight: 700;

  text-transform: capitalize;
}
.cts-card-content p:nth-child(1) {
  color: #f7f7f7;

  font-size: 22px;

  font-weight: 700;
  line-height: 169%;
}
.cts-card-content p:nth-child(3) {
  color: #ccc;

  font-size: 18px;

  font-weight: 400;
  line-height: 169%;
}
.cts-card-content a {
  color: #f7f7f7;

  font-size: 22px;

  font-weight: 700;
  line-height: 169%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.cts-card-content a svg {
  fill: #76b900;
  transition: fill 0.5s ease, width 0.5s ease, height 0.5s ease;
}
.cts-card-content a:hover svg {
  fill: #f7f7f7;
  width: 36px;
  height: 36px;
}
.article-subtitle {
  color: #f7f7f7;
  text-align: center;

  font-size: 22px;

  font-weight: 700;

  margin-bottom: 16px;
}
.article-title {
  margin-bottom: 64px;
}
.form-and-img {
  position: relative;
}

.cts-form1,
.cts-form2,
.cts-form3,
.cts-form4 {
  position: absolute;
  height: auto !important;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  display: none;
}
.cts-form1,
.cts-form3 {
  top: 0;
  right: 0;
}

.cts-form2,
.cts-form4 {
  left: 0;
  top: 0;
}
@keyframes slideFromLeft {
  0% {
    transform: translateX(-70px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideFromRight {
  0% {
    transform: translateX(70px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.cts-form1,
.cts-form3 {
  animation-name: slideFromLeft;
}

.cts-form2,
.cts-form4 {
  animation-name: slideFromRight;
}

.bottom-header img {
  max-width: 192px !important;
}
@media (max-width: 1472px) {
  .container {
    padding-inline: 16px;
  }
  .hero-text-top {
    flex-direction: column;
  }
  .hero-text {
    bottom: 100px;
  }
  .main-img-wrapper {
    min-height: 200px;
  }
  .main-form {
    max-width: 100%;
  }
  .swiper-slide {
    max-width: 100%;
  }

  .hero-slider .swiper-button-next::after,
  .hero-slider .swiper-button-prev::after {
    content: "" !important;
    font-family: none !important;
    width: 22px !important;
    height: 22px !important;
    background: url("/img/icon-arrow-slider.svg") no-repeat center/contain !important;
    display: block;
  }

  .hero-slider .swiper-button-prev::after {
    transform: rotate(180deg);
  }

  .hero-slider .swiper-button-next:hover::after,
  .hero-slider .swiper-button-prev:hover::after {
    box-shadow: 0 4px 8px rgba(118, 185, 0, 0.5);
  }

  .hero-slider-card:first-of-type {
    position: relative;
  }

  .hero-slider-card {
    max-width: 100% !important;
    padding: 16px 50px;
  }

  .hero-slider-card-title {
    text-align: center;
  }

  .hero-slider-card-text {
    text-align: center;
  }

  .hero-slider-card,
  .hero-slider-card:first-of-type,
  .hero-slider-card:last-of-type {
    min-height: 162px;
    background: url(/img/corner-left-top.svg) left 4px no-repeat,
      url(/img/corner-right-bottom.svg) right calc(100% - 4px) no-repeat,
      url(/img/corner-left-bottom.svg) left calc(100% - 4px) no-repeat,
      url(/img/corner-right-top.svg) right 4px no-repeat;
  }

  #custom-cursor {
    display: none !important;
  }
  #custom-cursor-huge {
    display: none !important;
  }

  .trusted-card:hover {
    cursor: unset;
  }

  .trusted-dekstop-grid {
    display: none;
  }

  .trusted-mobile-grid {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .article-subtitle {
    margin-bottom: 8px;
  }

  .trusted .article-title {
    margin-bottom: 16px;
  }

  .marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
  }

  .marquee-left,
  .marquee-right {
    margin-bottom: 32px;
  }

  .marquee-content {
    display: flex;
    gap: 20px;
    white-space: nowrap;
    animation-duration: 25s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }

  .marquee-content .trusted-card {
    min-width: 240px;
    width: 100%;
  }

  .marquee-content .trusted-card::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    background: url("/img/spot.svg") no-repeat center/contain;
    width: 120px;
    height: 120px;
  }

  .marquee-left .marquee-content {
    animation-name: marquee-left;
  }

  .marquee-right .marquee-content {
    animation-name: marquee-right;
  }

  @keyframes marquee-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes marquee-right {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }
  .chip-block {
    flex-direction: column;
  }
  .content-item {
    text-align: center;
  }
  .chip-picture img {
    display: none;
  }
  .chip-content a {
    justify-content: center;
    margin-top: 16px;
  }
  .chip-picture {
    display: block;
    background-image: url("/img/chip-mobile.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    height: 200px;
    margin: 0 auto;
  }
  .chip-content {
    gap: 16px;
  }
  .chip-block {
    gap: 30px;
  }
  .chip-cards-lists {
    display: none;
  }
  .chip-swiper-pagination {
    top: 88% !important;
    height: 6px !important;
    border-radius: 6px !important;
    background: #666 !important;
    z-index: 2 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .chip-swipers {
    display: block;
  }
  .chip-card {
    margin: 0 auto;
    width: 100% !important;
    margin-bottom: 70px;
    max-width: 100%;
  }
  .gs-swiper,
  .chip-swiper {
    overflow-x: hidden !important;
    overflow-y: visible !important;
    height: auto !important;
  }
  .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    border-radius: 6px !important;
    background: #76b900 !important;
  }
  .gs-list {
    display: none;
  }
  .gs-swipers {
    display: block;
  }
  .gs-card {
    min-height: auto;
    max-height: 218px;
    height: 100%;
    margin-bottom: 60px;
    grid-column: span 12;
    max-width: 100%;
  }
  .gs-card h4 {
    font-size: 20px;
  }
  .gs-card p {
    font-size: 14px;
  }
  .gs-swiper-pagination {
    top: 88% !important;
    height: 6px !important;
    border-radius: 6px !important;
    background: #666 !important;
    z-index: 2 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .cts-card {
    flex-direction: column;
  }
  .cts-card:nth-child(2),
  .cts-card:nth-child(4) {
    flex-direction: column-reverse;
  }
  .cts-card img {
    flex: auto;
    max-width: 100%;
  }
  .cts-card-content {
    max-width: 700px;
  }
  .cts-list {
    gap: 34px;
  }
  .article-title {
    margin-bottom: 32px;
  }
  .article-subtitle {
    margin-bottom: 8px;
  }

  .cts-card-content p:nth-child(1) {
    font-size: 16px;
  }
  .cts-card-content p:nth-child(3) {
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  .cts-card-content a {
    margin-top: 4px;
    font-size: 18px;
  }
  .cts-card-content h3 {
    font-size: 20px;
  }
  .cts-form1,
  .cts-form2,
  .cts-form3 {
    max-width: 100%;
  }

  .ready {
    flex-direction: column;
    align-items: center;
    padding-inline: 16px;
    gap: 32px;
  }

  .ready-slider.swiper {
    max-width: calc(100% - 32px) !important;
    width: 100% !important;
  }

  .ready-slider-card-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .ready-slider-card-text {
    margin-bottom: 16px;
  }

  .ready-swiper-pagination {
    max-width: calc(720px - 32px);
    margin: 0 auto;
    left: 50% !important;
    display: block !important;
    position: absolute;
    top: calc(100% - 32px) !important;
    transform: translate(-50%, -50%);
    bottom: 0 !important;
  }

  .ready-slider-card {
    width: 100% !important;
    text-align: center;
    gap: 0;
  }

  .ready-slider-card-link {
    margin: 0 auto;
  }

  .ready-text {
    padding-left: 0;
    flex-basis: unset;
    text-align: center;
  }

  .ready-title {
    text-align: center;
  }

  .ready .article-title {
    text-align: center;
  }

  .swiper-button-next-2,
  .swiper-button-prev-2 {
    display: none !important;
  }

  .ready .common-btn {
    margin: 0 auto;
  }

  .ready-slider-card {
    max-width: 100% !important;
    margin: 0 auto;
  }

  .ready-wrapper {
    max-width: 720px;
    width: 100%;
    padding-inline: 16px;
    padding-bottom: 32px;
  }
  .hero-text-top {
    gap: 40px;
    margin-bottom: 40px;
  }
}

@media (max-width: 800px) {
  .trusted .article-title {
    margin-bottom: 32px;
  }
  .trusted-mobile-grid {
    gap: 0px;
  }
  .trust-link {
    padding: 8px 20px;
    font-size: 18px;
  }
  .trusted .bottom-text {
    font-size: 16px;
    max-width: 342px;
    margin-top: 0px;
  }
  .header-top {
    display: none;
  }

  .mob-only {
    display: flex !important;
    flex-direction: column;
  }

  .watch .container div {
    margin-bottom: 10px;
  }

  .watch .container a {
    padding: 10px;
    background-color: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    text-align: center;
  }

  .dt-only {
    display: none !important;
  }

  .rendered {
    display: block !important;
  }

  .header-nav .container {
    flex-wrap: nowrap;
  }

  .nav-list {
    position: absolute;
    height: calc(100vh - 60px);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 32px;
    top: 54px;
    right: 0;
    left: -300%;
    bottom: 0;
    background-color: #fff;
    z-index: 4;
    max-width: 800px;
    transition: left 0.4s ease;
    text-align: left;
  }

  .nav-menu-active {
    left: 0;
  }

  .hero {
    min-height: 768px;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000 100%),
      url(/img/main-hero-bg.webp) no-repeat center / cover;
    height: 100%;
  }

  .header-logo {
    position: absolute;
    transform: translate(-50%, 0);
    left: 50%;
  }

  .header-logo img {
    max-width: 130px;
  }

  .nav-link.active {
    border-bottom: none;
    position: relative;
  }

  .nav-link.active::before {
    content: "";
    position: absolute;
    left: -16px;
    top: -16px;
    bottom: 0;
    width: 4px;
    height: calc(100% + 32px);
    background-color: #76b900;
  }

  .nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .article-title {
    font-size: 28px;
  }

  .bottom-subtitle {
    font-size: 20px;
  }

  .bottom-form-subtitle {
    font-size: 16px;
  }

  .bottom-form-secured {
    font-size: 8px;
  }

  .footer-top .container {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-top-list {
    max-width: 100%;
  }

  .recomended-title {
    font-size: 28px;
  }

  .recomended-title .mob-only {
    display: inline !important;
  }

  .rec-swiper-pagination {
    background: #666 !important;
    top: calc(100% - 32px) !important;
    max-width: calc(720px - 32px);
    margin: 0 auto;
    left: 50% !important;
    display: block !important;
    position: absolute;
    transform: translate(-50%, -50%);
  }

  .recomended {
    padding-top: 32px;
    padding-bottom: 64px;
  }

  .rec-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .rec-card {
    max-width: 600px !important;
    margin: 0 auto;
  }

  .footer-top-list-item {
    color: #76b900;
    text-align: left;
    font-size: 26px;
    font-weight: 700;
  }

  .footer-top-list-title {
    padding-block: 10px;
    border-bottom: 2px solid #666;
    color: #fff;
    text-align: left;
    font-size: 42px;
    font-weight: 700;
  }

  .underline {
    text-decoration: underline;
    text-decoration-color: #76b900;
  }

  .footer-top-list-links {
    align-items: flex-end;
    flex-direction: column;
    gap: 12px;
  }

  .footer-top-list-links a {
    font-size: 16px;
  }

  .footer-top-list-title {
    font-size: 28px;
  }

  .footer-top-list-item a {
    font-size: 18px;
  }

  .footer-top-list-links {
    gap: 8px;
  }

  .footer-top-list-links div {
    gap: 16px;
  }

  .footer-top-list-links div a {
    max-width: 22px;
  }

  .footer-top-list-links div a svg {
    height: 22px;
  }

  .hero .container {
    padding-top: 32px;
    padding-bottom: 16px;
  }

  .hero-text-top {
    margin-bottom: 40px;
  }
  .hero-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .hero-text .article-title {
    text-align: left;
    font-size: 32px;
    margin-bottom: 8px;
  }

  .hero-text-text {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .hero-slider {
    margin-bottom: 16px;
  }

  .common-btn {
    padding: 8px 20px;
    font-size: 18px;
  }
}
