.language,
.manual {
  padding: 50px 0;
  background-color: #f4f6fd;

  .title {
    text-align: center;
  }
}

.language-list {
  display: grid;
  grid-template-columns: 1fr;
  list-style: none;

  .language-list__item {
    text-align: center;
  }
}

.language-list__item a {
  display: inline-block;
  padding: 6px 0;
  text-decoration: none;
  text-transform: capitalize;
  color: #252525;
  transition: color 0.3s;
}

.language-list__item a:hover {
  color: #0146fe;
}

.spread {
  font-size: 24px;
  text-align: center;
}

.btn-langs {
  display: block;
  margin: 0 auto;
}

.manual .title span {
  text-transform: uppercase;
  color: #0146fe;
}

.steps-container {
  display: flex;
  justify-content: space-between;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 250px;
  max-width: 290px;
  transition: all 0.5s;
}

.step-item__desc .step-item__desc-title {
  transition: all 0.5s;
}

/* .step-item:hover .step-item__desc-title {
  color: #0146fe;
}

.step-item:hover .step-item__desc-title {
  transform: scale(1.05);
} */

.step-item__desc {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.step-item__img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border: 1px solid #98a1b8;
  border-radius: 50%;
  transition: all 1s;
}

@media (width < 778px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .pricing,
  .manual {
    padding: 100px 0;
  }

  .language-list {
    grid-template-columns: 1fr 1fr;

    .language-list__item {
      text-align: left;
    }
  }
}

.other-formats {
  padding: 60px 0;
}

.other-formats .title {
  text-align: center;
}

.other-formats__wrapper {
  margin-top: 50px;
}

.formats-list {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 30px;
  column-gap: 20px;
  list-style: none;
}

.formats-list__link {
  color: #252525;
  text-decoration: none;
  border: 1px solid #e2e4ec;
  border-radius: 8px;
  background-color: #f4f6fd;
  padding: 6px 10px;
  transition: all 0.3s;
}

.formats-list__link:hover {
  border-color: #0146fe;
  color: #0146fe;
}

.features {
  padding: 80px 0;
}

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

.features-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.features-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.features-wrapper:dir(rtl)::after {
  left: 0;
  right: auto;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #fff);
}

.features-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: center;
  gap: 20px;
  transition: all 0.3s;
}

.features-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 20px;
  padding: 20px 24px;
  min-width: 300px;
  height: 300px;
  border: 1px solid #98a1b8;
  border-radius: 16px;
}

.features-item__image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
  background-color: #0146fe;
  border-radius: 100%;
}

.features-item__title {
  margin: 0;
  font-size: 24px;
  color: #252525;
  text-transform: uppercase;
}

.features-control {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.features-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid #252525;
  border-radius: 100%;
  background-color: #fff;
  transition: all 0.3s;
}

.features-btn:hover {
  background-color: #f4f6fd;
}

@media (width < 993px ) {
  .features {
    padding: 40px 0;
  }
}
