.type {
  padding-top: 85px;
  padding-bottom: 85px;
  background-color: #fff
}
.type__container {
  display: flex;
  flex-direction: column;
  align-items: center
}
.type__title {
  margin-bottom: 50px;
  font-family: FuturaPT,Arial,sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 110%;
  text-align: center;
  color: #000
}
.type__list {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 20px;
  margin-bottom: 50px
}
.type__item {
  display: flex;
  flex-direction: column;
  background-color: #f8f8f8;
  border-radius: 16px
}
.type__img {
  line-height: 0;
  border-radius: 16px;
  overflow: hidden
}
.type__img img,
.type__img picture {
  width: 100%;
  height: auto
}
.type__text-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  padding: 12px 12px 20px;
  font-family: FuturaPT,Arial,sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: center
}
.type__link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px 13px;
  font-family: FuturaPT,Arial,sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #000;
  border: 1px solid #e1e1e1;
  border-radius: 12px
}
@media (max-width:1200px) {
  .type {
    padding-top: 60px;
    padding-bottom: 60px
  }
  .type__title {
    margin-bottom: 40px
  }
}
@media (max-width:1024px) {
  .type__list {
    grid-template-columns: repeat(3,1fr)
  }
}
@media (max-width:768px) {
  .type {
    padding-top: 38px;
    padding-bottom: 38px
  }
  .type__title {
    margin-bottom: 32px;
    font-size: 26px
  }
  .type__link {
    width: 100%
  }
}
@media (max-width:600px) {
  .type__list {
    width: 100%;
    grid-template-columns: repeat(1,1fr);
    margin-bottom: 32px
  }
}