#perks .title {
  font-size: 40px;
  line-height: 45px;
}

#perks .title span {
  font-size: 35px;
}

#perks .title span::after {
  content: '';
  position: absolute;
  background-image: url('../../images/how-it-works/title-decor.png');
  background-image: image-set(url('../../images/how-it-works/title-decor.png') 1x,
  url('../../images/how-it-works/title-decor@2x.png') 2x);
  width: 272px;
  height: 48px;
  left: 54%;
  transform: translateX(-50%);
  bottom: -13px;
  z-index: -1;
}

#perks p {
  font-size: 20px;
  line-height: 23px;
}

#perks .container {
  gap: 68px;
}

#perks .inner {
  gap: 68px;
}

@media screen and (max-width: 992px ) {
  #perks {
    padding: 50px 0;
  }
  #perks .container {
    flex-direction: column;
    gap: 30px;
  }

  #perks .inner {
    justify-content: center;
  }
}

@media screen and (max-width: 768px ) {
  #perks .inner {
    flex-direction: column;
    align-items: start;
    width: fit-content;
    margin: 0 auto;
  }
}

@media screen and (max-width: 567px ) {
  #perks {
    margin-top: 28px;
    padding: 24px 0 29px 0;
  }
  #perks .container {
    gap: 20px;
  }
  #perks .title {
    font-size: 32px;
    line-height: 35px;
    padding-bottom: 0;
  }
  #perks .title span {
    font-size: 28px;
  }
  #perks .title span::after {
    left: 50%;
    width: 182px;
    height: 35px;
    bottom: 0px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  #perks .inner {
    gap: 20px;
  }
  #perks p {
    font-size: 16px;
    line-height: 18px;
  }
  #perks img {
    max-width: 72px;
  }
}