.process-section {
  padding: 90px 0;
  background: #f6efe5;
}

.process-section .section-title {
  padding-bottom: 38px;
}

.process-section .process-kicker,
.social-follow-section .social-kicker {
  display: block;
  margin-bottom: 9px;
  color: #d84b39;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.process-section .section-title h2 {
  color: #17313d;
  font-size: clamp(34px, 4vw, 48px);
}

.process-section .section-title p {
  max-width: 680px;
  margin: 12px auto 0;
  color: #60747d;
  font-size: 17px;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 29px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: rgba(13, 47, 69, .16);
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  color: #fffaf3;
  font-size: 16px;
  font-weight: 700;
  background: #d84b39;
  border-radius: 50%;
  box-shadow: 0 0 0 9px #f6efe5;
}

.process-step h3 {
  margin: 0 0 8px;
  color: #17313d;
  font-size: 19px;
  font-weight: 700;
}

.process-step p {
  max-width: 245px;
  margin: 0 auto;
  color: #60747d;
  line-height: 1.55;
}

.social-follow-section {
  padding: 72px 0;
  color: #fffaf3;
  background: #0d2f45;
}

.social-follow-section h2 {
  margin: 0;
  color: #fffaf3;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
}

.social-follow-section p {
  max-width: 680px;
  margin: 14px auto 25px;
  color: rgba(255, 250, 243, .76);
  font-size: 17px;
  line-height: 1.55;
}

.social-follow-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.social-follow-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 260px;
  padding: 14px 20px;
  color: #fffaf3;
  font-size: 16px;
  font-weight: 700;
  border-radius: 11px;
  transition: .25s ease;
}

.social-follow-links a i {
  font-size: 20px;
}

.social-follow-links a span {
  font-weight: 500;
  opacity: .8;
}

.social-follow-links .social-instagram {
  background: #d84b39;
}

.social-follow-links .social-tiktok {
  background: #082536;
  border: 1px solid rgba(255, 250, 243, .22);
}

.social-follow-links a:hover {
  color: #fffaf3;
  transform: translateY(-3px);
}

.social-follow-links .social-instagram:hover {
  background: #bc3829;
}

.social-follow-links .social-tiktok:hover {
  background: #061d2a;
}

@media (max-width: 991px) {
  .process-section {
    padding: 70px 0;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 40px;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 575px) {
  .process-section {
    padding: 54px 0;
  }

  .process-section .section-title {
    padding-bottom: 30px;
  }

  .process-section .section-title p,
  .social-follow-section p {
    font-size: 16px;
  }

  .process-steps {
    display: block;
  }

  .process-steps::before {
    display: block;
    top: 9px;
    bottom: 9px;
    left: 27px;
    width: 2px;
    height: auto;
  }

  .process-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 16px;
    margin-bottom: 28px;
    text-align: left;
  }

  .process-step:last-child {
    margin-bottom: 0;
  }

  .process-number {
    grid-row: 1 / 3;
    width: 54px;
    height: 54px;
    margin: 0;
    box-shadow: 0 0 0 7px #f6efe5;
  }

  .process-step h3 {
    align-self: end;
    font-size: 18px;
  }

  .process-step p {
    max-width: none;
    margin: 0;
  }

  .social-follow-section {
    padding: 55px 0;
  }

  .social-follow-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .social-follow-links a {
    width: 100%;
    min-width: 0;
  }
}
