/* products */
.products {
  padding: 30px 0;
  background: #F8F8F8;
}

.products .title {
  text-align: left;
  margin-bottom: 30px;
}

.products .sub-info {
  color: #333;
  line-height: calc(37 / 28);
}

.products .sub-info>*:not(:last-child) {
  margin-bottom: 30px;
}

.products .sub-info ul {
  padding-left: 0;
  list-style: none;
}

.products .btn {
  width: fit-content;
  color: #fff;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 7px 20px;
  border-radius: 24px;
  line-height: calc(28 / 22);
  font-family: 'Afacad-Bold';
  background: var(--style-color);
  display: block;
}

.products .sub-title {
  line-height: .75;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 30px;
}

.products .row {
  margin-bottom: -30px;
}

.products .row>div {
  margin-bottom: 30px;
}

.products .block {
  padding: 24px 18px;
  text-align: center;
  border-radius: 16px;
  background: #fff;
}

.products .lt {
  margin-bottom: 20px;
}

.products .lt img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 260 / 260;
}

.products .tit {
  margin-bottom: 8px;
}

.products .info {
  line-height: 1.7;
}

.products .page-wrap {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.products .page-prve i, .products .page-next i {
  font-size: 14px;
  color: var(--style-color);
}

.products .page-list li a, .products .page-list li span {
  width: 35px;
  height: 35px;
  font-size: 16px;
  line-height: calc(24 / 18);
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products .page-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.products .page-list li.active a, .products .page-list li.active span {
  color: #fff;
  background: var(--style-color);
}

@media (min-width: 640px) {
  .products .block {
    display: flex;
    align-items: center;
    text-align: left;
  }

  .products .lt {
    flex: 0 0 calc(260 / 642 * 100%);
    max-width: 260px;
    margin-bottom: 0;
  }

  .products .rt {
    flex: 1;
  }
}

@media (min-width: 1200px) {
  .products {
    padding: 60px 0;
  }

  .products .title {
    margin-bottom: 60px;
  }

  .products .sub-info>*:not(:last-child) {
    margin-bottom: 60px;
  }

  .products .btn {
    width: 350px;
    margin-top: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: background .3s;
  }

  .products .btn:hover {
    background: var(--sub-color);
  }

  .products .sub-title {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .products .page-wrap {
    margin-top: 60px;
  }

  .products .page-list li a, .products .page-list li span {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (min-width: 1440px) {
  .products {
    padding: 120px 0;
  }

  .products .sub-title {
    margin-top: 120px;
  }

  .products .row {
    margin-left: -22px;
    margin-right: -22px;
    margin-bottom: -40px;
  }

  .products .row>div {
    padding: 0 22px;
    margin-bottom: 40px;
  }
}