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

:root {
  --bg: #05070c;
  --green: #00ff38;
  --gray: #9a9a9a;
  --purple: #7A47DA;

  --line-w: 8px;
  --circle-size: 60px;
  --diamond-size: 85px;

}
html, body {
  margin: 0;
  padding: 0;
  background: #0d0d0f;
  overflow-x: hidden;
  font-family: "Bricolage Grotesque", sans-serif;
}

body {
  min-height: 100vh;
  cursor: none !important;
}

.demo-link {.normal-cursor-zone {
  padding: 40px;
  background: #eee;
  cursor: auto; 
}
  color: white;
  font-size: 32px;
  text-decoration: none;
  font-family: sans-serif;
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;

  width: 100px;
  height: 100px;

  pointer-events: none;
  z-index: 9999;

  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.12s ease;
}

.cursor.click {
  transform: translate(-50%, -50%) scale(0.9);
}

.cursor svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cursor-shape {
  fill: #00ff38;
  transition: fill 0.1s ease;
}

.cursor.link-hover .cursor-shape {
  fill: #7a47da;
}


.wrap {
  width: 90%;
  margin: auto;
}
header {
  position: relative;
  z-index: 102;
}

header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
h1 {
  font-size: 56px;
  font-weight: 600;
  color: #171717;
  border-radius: 9999px;
  border: 1px solid var(--Colors-Gray-black, #000);
  background: var(--Colors-Gray-white, #FFF);
  padding: 0 32px;
  width: max-content;
  margin: auto;
  transform: rotate(-7deg);
  z-index: 2;
  position: relative;
  margin-top: 20px;
  animation: tilt 2s infinite ease-in-out;
  transform-origin: center;
  }

@keyframes tilt {
  0% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}


nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.20);
  width: 400px;
}

.menu-item {
  position: relative;
  z-index: 2;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 20px;
}

/* сам “пузырь” */
.menu-highlight {
  position: absolute;
  top: 10px;
  left: 0;
  height: calc(100% - 20px);
  border-radius: 50px;
  background: var(--purple);
  transition: all 0.4s ease;
  z-index: 1;
}
header {
  background: var(--purple);
  padding: 20px;
}
.first {
  background: var(--purple);
}
.first-wrap {
  position: relative;
  height: 160px;
}
.first-wrap img {
  position: absolute;
}
.first-line {
  position: absolute;
  right: 200px;
  top: 50px;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 3s ease forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.first-hero {
  top: -33px;
  right: 65px;
}
.first-text {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  width: 80%;
  margin: auto;
  padding-bottom: 60px;
  color: #FFF;
}
.flex {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-bottom: 100px;
}
.star1 {
  top: 20px;
  left: 50px;
  animation: starPulse 1s ease-in-out infinite;
  transform-origin: center;
}

@keyframes starPulse {
  0%, 100% {
   transform: scale(1);
    opacity: 0.8;
  }
  50% {
     transform: scale(1.4);
    opacity: 1;
  }
}

.star2 {
  width: 30px;
  top: 100px;
  left: 350px;
   display: inline-block;
  animation: starPulse 1.4s ease-in-out infinite;
}

@keyframes starPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
  }
}
.howItWorks {
  background: url('img/grid-grey.svg');
  background-repeat: repeat;
}
.howItWorks-block {
  position: relative;
  width: 60%;
  margin: auto;
  padding-top: 100px;
}
.howItWorks-block h2 {
  font-size: 96px;
  color: #FFF;
}
.howItWorks-block img {
  position: absolute;
  top: 40px;
  left: 175px;
}

.block {
  width: 60%;
  margin: auto;
  padding-top: 80px;
}
.first h2 {
  font-size: 110px;
  font-weight: 800;
  color: #FFF;
  letter-spacing: 3px;
}
.button-green {
  font-size: 32px;
  font-weight: 800;
  padding: 20px 40px;
  text-decoration: none;
  color: #FFF;
  border-radius: 100px;
  border: 2px solid var(--green);
}
.button-green.active {
  color: #212529;
  background: var(--green);
}
.button-hire {
  font-size: 32px;
  font-weight: 800;
  padding: 20px 40px;
  text-decoration: none;
  color: #212529;
  background: var(--green);
  border-radius: 100px;
  border: none;
}
form .button-hire {
  width: 90%;
  margin: auto;
}
.button-white {
  font-size: 32px;
  font-weight: 800;
  padding: 20px 40px;
  text-decoration: none;
  color: #FFF;
  border: 2px solid #FFF;
  border-radius: 100px;
}
.button-white:hover {
  background: #00ff88;
}

.field {
  position: relative;
  width: 90%;
  margin: auto;
  margin-bottom: 20px;
}
.field-upload {
  width: 90%;
  margin: auto;
  font-size: 16px;
  color: #aaa;
  background: #2a2f36;
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 5px 15px;
}

.file-upload {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  width: 100%;    
  cursor: pointer;
}

.field input, textarea {
  width: 100%;
  padding: 20px 16px;
  font-size: 18px;
  color: #fff;
  background: #2a2f36;
  border: 2px solid transparent;
  border-radius: 16px;
  outline: none;
  transition: 0.3s ease;
}
.file-upload {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fileInput {
  width: 100%;
  height: 50px;
}
textarea {
  font-family: "Bricolage Grotesque", sans-serif;
  color: #aaa;
  height: 150px;
}

.field input:focus {
  border-color: var(--green);

}

.field label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 16px;
  pointer-events: none;
  transition: 0.3s ease;
  background: transparent;
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label {
  top: 12px;
  font-size: 12px;
  color: #aaa;
}
.custom-select {
  width: 90%;
  position: relative;
  margin-bottom: 20px;
}

.select-header {
  padding: 10px 16px;
  font-size: 18px;
  color: #aaa;
  background: #2a2f36;
  border-radius: 16px;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow {
  transition: 0.3s;
  padding-top: 5px;
}

.select-options {
  position: absolute;
  padding: 20px 16px;
  font-size: 18px;
  color: #aaa;
  background: #2a2f36;
  border-radius: 0 0 16px 16px;
  width: 100%;
  display: none;
  overflow: hidden;
  z-index: 10;
  margin-top: -10px;
}

.option {
  padding: 10px 14px;
  cursor: pointer;
  transition: 0.2s;
}

.option:hover {
  background: #f2f2f2;
}

.custom-select.open .select-options {
  display: block;
}

.custom-select.open .arrow {
  transform: rotate(180deg);
}

.green {
  color: var(--green);
}

.paint-point {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  z-index: 20;
}

.form .button-green {
  width: 90%;
  border: none;
}

.timeline-scene {
  position: relative;
  width: 100%;
  height: 1400px;
  margin-top: -160px;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
}

.line-horizontal {
  position: absolute;
  left: 0;
  top: 0;
  width: 150px;
  height: 5px;
  background: var(--gray);
}

.line-vertical {
  position: absolute;
  left: 150px;
  top: 0;
  width: 5px;
  height: calc(1090px + var(--diamond-size) / 2);
  background: var(--gray);
}

.node {
  position: absolute;
  left: 49.89%;;
  transform: translateX(-50%);
  z-index: 5;
}

.node-circle {
  top: 0;
}

.circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gray);
  transition: background-color 0.15s linear;
}

.timeline-item {
  position: relative;
  left: 154px;
  top: var(--y);
  width: 100%;
}

.node-diamond {
  top: -120px;
}

.diamond {
  width: 60px;
  height: 60px;
  background: var(--gray);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s linear;
}

.diamond span {
  transform: rotate(-45deg);
  font-size: 40px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.timeline-item .content {
  position: absolute;
  left: 54%;
  top: -36px;
  transform: translateY(-50%);
}

.timeline-item img {
  position: absolute;
  top: -120px;
  right: 57%;
}

.timeline-item h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.content-title-grey {
  font-size: 40px;
  color: #5f5d63;
}
.content-title {
  font-size: 32px;
  color: #FFF;
  padding: 18px 0 10px;
}
.content-text {
  font-size: 18px;
  color: #5f5d63;
  max-width: 400px;
}

.node.active .circle {
  background: var(--green);
}

.node.active .diamond {
  background: var(--green);
}

.container {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  visibility: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  perspective: 1200px;
  transform-style: preserve-3d;
}

.tube {
  position: relative;
  width: 100%;
  height: 100%;
}

.line {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  will-change: transform, opacity;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.line__index {
  position: absolute;
  top: 200px;
  right: 10%;

  font-size: 40px;
  font-weight: 500;
  line-height: 1;

  color: rgba(255, 255, 255, 0.28);
  letter-spacing: -0.03em;
}

.line__title {
  margin: 0;
  font-size: 96px;
  line-height: 0.9;
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.0em;

  color: #8b5cf6;
  text-wrap: balance;
}

.line__subtitle {
  margin: 18px 0 0;
  max-width: 900px;

  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  font-style: normal;

  color: rgba(255, 255, 255, 0.75);
  text-wrap: balance;
}
.offer-title {
  color: #FFF;
  font-size: 96px;
  text-align: center;
  position: relative;
  width: 700px;
  margin: auto;
}
.offer-title::before {
  content: "";
  background: url("img/Green.svg") no-repeat;
  background-size: contain;
  width: 120px;
  height: 120px;
  position: absolute;
  top: -30px;
   left: -70px;
}
.offer-text {
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.focus {
  text-align: center;
}
.focus-title {
  font-size: 150px;
  color: #FFF;
}

.focus-blur {
  font-size: 150px;
  color: #FFF;
  animation: blurCycle 3s infinite ease-in-out;
}

@keyframes blurCycle {
  0% {
    filter: blur(6px);
    opacity: 0.7;
  }
  50% {
    filter: blur(0);
    opacity: 1;
  }
  100% {
    filter: blur(6px);
    opacity: 0.7;
  }
}
.focus-block {
  height: 500px;
}

.focus-flex {
  display: flex;
  justify-content: center;
  position: relative;
}
.eye {
  margin: 0 -30px 0;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.line1-text,
.line2-text,
.line3-text,
.line4-text,
.line5-text,
.line6-text
 {
  color: #FFF;
  font-size: 40px;
}
.line1 {
  position: absolute;
  top: -100px;
  left: 34%;
}
.line1-text {
  position: absolute;
  top: -145px;
  left: 30%;
}
.line2 {
  position: absolute;
  top: -180px;
  left: 48%;
}
.line2-text {
  position: absolute;
  top: -230px;
  left: 44%;

}
.line3 {
  position: absolute;
  top: -130px;
  left: 55%;
}
.line3-text {
  position: absolute;
  top: -180px;
  left: 67%;
}
.line4 {
  position: absolute;
  top: 176px;
  left: 30%;
}
.line4-text {
  position: absolute;
  top: 240px;
  left: 17%;
}
.line5 {
  position: absolute;
  top: 185px;
  left: 48%;
}
.line5-text {
  position: absolute;
  top: 395px;
  left: 42%;
}
.line6 {
  position: absolute;
  top: 160px;
  left: 57%;
}
.line6-text {
  position: absolute;
  top: 235px;
  left: 74%;
}
.discuss {
  padding-top: 200px;
  position: relative;
  background: url('img/grid-green.svg');
}
.discuss::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  clip-path: polygon(
    0 16%, 
    100% 0,  
    100% 100%,
    0 94%
  );
  top: 0;
  height: 90%;
}
.discuss-title {
  font-size: 110px;
  font-weight: 800;
  color: #000;
  text-align: center;
  line-height: 0.9;
  max-width: 55%;
  margin: auto;
  display: block;
  position: relative;
  padding-bottom: 30px;
}
.discuss-title::before {
  content: "";
  background: url("img/man.svg") no-repeat;
  position: absolute;
  top: -75px;
  right: -45px;
  width: 250px;
  height: 250px;
  animation: tilt 2s infinite ease-in-out;
  transform-origin: center;
  }

  @keyframes tilt {
    0% {
      transform: rotate(-5deg);
    }
    50% {
      transform: rotate(5deg);
    }
    100% {
      transform: rotate(-5deg);
    }
  }

.discuss-title::after {
  content: "";
  background: url("img/Purple.svg") no-repeat;
  position: absolute;
  top: 150px;
  left: -90px;
  width: 250px;
  height: 250px;
}
.discuss-text {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  text-align: center;
  padding-bottom: 40px;
  z-index: 2;
  position: relative;
}
.purple {
  color: var(--purple);
}
.cards-block {
  display: flex;
  width: 85%;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  padding-top: 120px;
}
.cards-block::before {
  content: '';
  background: url("img/deliver-lines.svg") no-repeat;
  position: absolute;
  top: 0;
  left: 27%;
  width: 600px;
  height: 60px;
}
.card {
  background: #171717;
  border-radius: 32px;
  max-width: 370px;
}
.card-inner {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 16px;
  gap: 20px;
}
.card-title {
  font-size: 24px;
  font-weight: 700;
  color: #FFF;
  padding: 20px 20px 0;
}
.card-grey{
  font-size: 16px;
  font-weight: 600;
  color: #FFF;
  background: #43464A;
  border-radius: 0 0 32px 32px;
  padding: 10px 20px 20px;
}
.small-text {
  color: var(--green);
  font-size: 14px;
  font-weight: 300;
}
.number {
  font-size: 96px;
  font-weight: 800;
  color: var(--green);
  margin-left: 40px;
}
.number::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 20px;
  background: url('img/Green-small.svg') no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
}
.start-hire {
  background: url('img/grid-green.svg');
  background-repeat: repeat;
  padding-top: 80px;

}
.start-hire h2 {
  font-size: 96px;
  color: #FFF;
  text-align: center;
  padding-bottom: 60px;
}


.button-trans {
  border-radius: 50px;
  border: 2px solid  #7A47DA;
  font-size: 32px;
  color: #FFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 20px 40px;
}
.button-trans.active {
  background: var(--purple);
  color: #FFF;
}

.form {
  display: none;
  max-width: 640px;
  width: 80%;
  margin: auto;
  background: #212529;
  border-radius: 50px;
  border: 1px solid #43464A;
  
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}


.form.active {
  display: flex;
}
.linked {
  margin-bottom: 10px;
}
.last-text {
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 200px;
}

.start-hire .form-text {
  font-size: 32px;
  font-weight: 400;
  color: #FFF;
  max-width: 70%;
  margin: auto;
  text-align: center;
  padding: 30px 0;
  margin-bottom: 20px;
}

.button-submit {
  border-radius: 50px;
  background: var(--purple);
  font-size: 32px;
  font-weight: 800;
  color: #FFF;
  width: 90%;
  margin: auto;
  border: none;
  padding: 20px 0;
  margin-top: 40px;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
footer p {
  font-size: 18px;
  font-weight: 600;
  color: #aaa;
}
footer::after {
  content: '';
  background: url("img/footer.svg");
  height: 70px;
  width: 100%;
  position: absolute;
  bottom: 0;
}
.footer-block {
  margin-top: 100px;
}
.footer-block .star1 {
  position: absolute;
  top: 20px;
  right: -50px;
  left: auto;
}
.footer-block .star2 {
  position: absolute;
  top: auto;
  bottom: 50px;
  left: -70px;
}

.mobile-menu {
  display: none;
  
}
.burger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 101;
}

.burger span {
  height: 3px;
  background: #FFF;
  border-radius: 2px;
  transition: 0.3s;
  z-index: 10;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);

  opacity: 0;
  visibility: hidden;
  transition: 0.3s;

  z-index: 100;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu {
  position: absolute;
  top: 90px;
  left: 0;
  display: none;
  flex-direction: column;
  gap: 30px;
  background: var(--purple);
  padding: 15px 15px 40px;
  border-radius: 0 0 32px 32px;
  z-index: 101;
  width: 100%;
}

.menu.active {
  display: flex;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {

 .focus-flex {
    flex-direction: column;
    align-items: center;
  }
   .eye {
    width: 200px;
    margin-top: -50px;
  }
  .howItWorks-block {
    width: 80%;
  }
  .content-text {
    max-width: 300px;
  }
  .line__title {
    max-width: 90%;
  }
}

@media (max-width: 820px) {
  .content-text {
    max-width: 400px;
  }
  .cursor {
    display: none;
  }
  .desk-nav {
    display: none;
  }
  .mobile-menu {
    display: block
  }
  .line {
    padding: 8vw;
  }
  .line__index {
    top: 20px;
    right: 20px;
    font-size: 20px;
  }

  .line__title {
    font-size: clamp(42px, 12vw, 78px);
    line-height: 0.92;
  }

  .line__subtitle {
    margin-top: 14px;
    font-size: 18px;
  }
  .first h2 {
    font-size: 80px;
    text-align: center;
    line-height: 0.8;
  }
  h1 { 
    font-size: 40px;
    padding: 10px 30px;
  }
  .first-hero {
    width: 120px;
    right: 0;
  }
  .first-line {
    top: 30px;
    right: 85px;
  }
  .star1 {
    top: 0;
    left: 0;
  }
  .first-text {
    width: 100%;
  }
  .timeline-line {
    left: -35px;
  }
  .howItWorks-block h2 { 
    font-size: 60px;
    margin-left: 150px;
  }
  .howItWorks-block img {
    width: 160px;
    left: 0;
  }
  .line-horizontal {
    display: none;
  }
  .howItWorks-block {
    width: 90%;
  }
  .timeline-item {
    left: 0;
  }
  .timeline-scene {
    margin-top: -45px;
  }
  .node {
    left: 118px;
  }
  .timeline-item img {
    width: 80px;
    right: 60%;
  }
  .content-title-grey, .content-title {
    font-size: 30px;
  }
  .content-title {
    padding: 5px 0 10px;
  }
  .content-text {
    font-size: 16px;
  }
  .timeline-item .content {
    left: 27%;
    top: 40px;
  }
  .offer-title {
    font-size: 60px;
  }
  .offer-title::before {
    top: 0;
    left: 14%;
    width: 60px;
    height: 60px;
  }
  .line__title {
    font-size: 57px;
  }
 
  .line1 {
    left: 16%;
  }
  .line2 {
    left: 44%;
  }
  .line1-text {
    left: 10%;
  }
  .line3-text {
    left: 74%;
  }
  .line4 {
    left: 10%;
    top: 240px;
  }
  .line5 {
    top: 245px;
    left: 45%;
  }
  .line6 {
    top: 240px;
    left: 60%;
  }
  .focus-title  {
    font-size: 100px;
  }
  .focus-blur {
    font-size: 100px;
    margin-top: -50px;
  }
  .line1-text, .line2-text, .line3-text, .line4-text, .line5-text, .line6-text {
    font-size: 30px;
  }
  .line4-text {
    top: 355px;
    left: 5%;
  }
  .line5-text {
    top: 445px;
  }
  .line6-text {
    top: 355px;
  }
  .discuss-title {
    font-size: 90px;
    max-width: 90%;
  }
  .discuss::before {
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 94%);
  }
  .cards-block {
    width: 100%;
    justify-content: center;
  }
  .card {
    max-width: none;
  }
  .start-hire h2 {
    font-size: 90px;
  }
  .button-green {
    font-size: 20px;
  }
  .button-trans {
    font-size: 20px;
  }
  footer::after {
    bottom: -4px;
    background-size: contain;
    height: 40px;
  }
  .menu a {
    color: #FFF;
    text-decoration: none;
    font-size: 30px;
  }
  .discuss-title::before {
    width: 180px;
    top: 30px;
    right: 0;
    background-size: contain;
  }
  .discuss-title::after {
    width: 100px;
    height: 100px;
    left: 0;
    top: 210px;
    background-size: contain;
  }
  .number {
    font-size: 70px;
  }
  .card-inner {
    padding: 20px 16px;
  }
}

@media (max-width: 500px) {

  .first h2 {
    font-size: 48px;
    letter-spacing: normal;
  }
  header img {
    width: 60px;
  }
  .block {
    padding-top: 60px;
    width: 80%;
  }
    h1 {
      font-size: 32px;
      margin-left: -5px;
    }
    .first-hero {
      top: 25px;
      right: 0;
    }
    .first-line {
      top: 40px;
      right: 65px;
      width: 200px;
    }
    .star1 {
      top: -35px;
      left: 0;
      width: 30px;
    }
    .first-text {
      font-size: 20px;
    }
    .star2 {
      width: 20px;
      top: 100px;
    }
    .flex {
        flex-direction: column;
        width: 90%;
        margin: auto;
    }
    .button-hire, .button-white {
        font-size: 24px;
        text-align: center;
    }
    .howItWorks-block h2 {
      font-size: 44px;
    }
    .howItWorks-block img {
      width: 120px;
      top: 85px;
    }
    .line-vertical {
        width: 3px;
    }
    .circle {
      width: 16px;
      height: 16px;
    }
      .timeline-scene {
        margin-top: 0;
    }
      .timeline-line {
        left: -85px;
    }
      .node {
        left: 67px;
    }
    .diamond {
      width: 30px;
      height: 30px;
    }
    .diamond span {
      font-size: 16px;
    }
    .node-diamond {
      top: -180px;
    }
    .timeline-item img {
      top: -190px;
      width: 60px;
    }
    .content-title-grey, .content-title {
      font-size: 24px;
    }
    .timeline-item .content {
      top: -50px;
    }
    .offer-title {
      font-size: 44px;
      width: 100%;
    }
    .offer-title::before {
      width: 40px;
      left: 3%;
    }
    .line__title {
      font-size: 44px;
    }
    .line__index {
        top: 80px;
        right: 40px;
    }
    .line1-text, .line2-text, .line3-text, .line4-text, .line5-text, .line6-text {
        font-size: 20px;
    }
    .line1, .line2, .line3, .line4, .line5,.line6 {
      width: 90px;
    }
    .line1 {
    top: -60px;
    left: 10%;
    }
    .line2 {
      width: 25px;
      top: -105px;
    }
    .line3 {
    left: 62%;
    top: -66px;
    }
  .line1-text {
      top: -96px;
      left: 6%;
  }
  .line2-text {
      top: -140px;
      left: 37%;
  }
  .line3-text {
      top: -100px;
  }
      .line4-text {
          top: 300px; 
        }
  .line5 {
    width: 25px;
  }
  .line5-text {
    top: 360px;
    left: 37%;
  }
  .line6-text {
          top: 300px;
  }
  .discuss::before {
      clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 94%);
  }
  .discuss {
    padding-top: 70px;
  }
  .discuss-title { 
    font-size: 48px;
  }
  .discuss-text {
  padding-bottom: 10px;
}
  .discuss-title::before {
      width: 100px;
      top: -26px;
      right: -13px;
  }
  .discuss-title::after {
    width: 50px;
    top: 130px;
  }
  .cards-block {
        width: 90%;
        padding-top: 45px;
  }
  .card-title {
    font-size: 20px;
  }
  .number {
    font-size: 44px;
  }
  .card-inner {
    padding: 15px;
    gap: 10px;
  }
  .number::before {
    top: 24px;
  }
  .card-grey {
    font-size: 14px;
  }
  .start-hire h2 {
    font-size: 44px;
  }
  .button-green, .button-trans {
    text-align: center;
    font-size: 12px;
    height: max-content;
    padding: 10px;
  }
  .start-hire .flex {
    flex-direction: row;
    padding-bottom: 30px;
  }
.start-hire .form-text {
    font-size: 24px;
    max-width: 90%;
    margin-bottom: 0;
  }
  .form {
    width: 90%;
  }
  .cat {
    width: 200px;
    margin-bottom: 20px;
  }
  .footer-block {
    margin-top: 50px;
  }
  .last-text {
      margin-bottom: 100px;
  }
  footer::after {
    height: 20px
  }
}