/*============= FUNCTIONS ===============*/
/*============= MIXINS ===============*/
.terms-block {
  padding: 50px 0;
}


.page-id-15 .terms-block {
  background: #fff;
}

.page-id-15 .terms-block .product-category {
  background: var(--bgLight);
}


.terms-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.terms-header .title {
  margin-bottom: 0;
}

.terms-holder-wrapper {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
}

.terms-holder-wrapper .last-item {
  background: transparent;
  border: 1px solid var(--primary);
  position: relative;
  overflow: hidden;
  min-height: 140px;
  border-radius: 3px;
  transition: background 0.4s ease-out;
}

.terms-holder-wrapper .last-item-image {
  position: absolute;
  top: 50%;
  right: 0;
  height: 100%;
  width: 140px;
  transform: translate(0, -50%) scale(1.12);
  transition: transform 0.4s ease-out;
}

.terms-holder-wrapper .last-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

.terms-holder-wrapper .last-item-content {
  padding: 25px 140px 25px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 17px;
  height: 100%;
}

.terms-holder-wrapper .last-item-name {
  font-weight: 700;
  font-size: clamp(16px, 0.00625 * 100vw + 14px, 26px);
  line-height: 100%;

  font-family: var(--second-font);
  color: var(--text);
  transition: color 0.4s ease;
}

.terms-holder-wrapper .last-item-more {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--first-font);
  font-weight: 700;
  font-size: clamp(12px, 0.0025 * 100vw + 11.2px, 16px);
  line-height: 130%;
  color: var(--primary);
  transition: color 0.4s ease-out;
}

.terms-holder-wrapper .last-item-more svg {
  transition: transform 0.4s ease-out;
}

.terms-holder-wrapper .last-item-more svg path {
  fill: var(--primary);
  transition: fill 0.4s ease-out;
}

.terms-holder-wrapper .last-item:hover {
  background: var(--primary);
}

.terms-holder-wrapper .last-item:hover .last-item-name {
  color: var(--card);
}

.terms-holder-wrapper .last-item:hover .last-item-more {
  color: var(--card);
}

.terms-holder-wrapper .last-item:hover .last-item-more svg {
  transform: rotate(45deg);
}

.terms-holder-wrapper .last-item:hover .last-item-more svg path {
  fill: var(--card);
}

.terms-holder-wrapper .last-item:hover .last-item-image {
  transform: translate(0, -50%) scale(1);
}

.terms-holder-wrapper.active {
  display: grid;
}

@media (max-width: 1100px) {
  .terms-holder-wrapper {
    gap: 15px;
  }

  .terms-holder-wrapper .last-item {
    min-height: 110px;
  }

  .terms-holder-wrapper .last-item-content {
    padding: 20px 120px 20px 20px;
  }

  .terms-holder-wrapper .last-item-image {
    width: 120px;
  }
}

@media (max-width: 992px) {
  .terms-block {
    padding: 20px 0;
  }

  .terms-header {
    margin-bottom: 20px;
  }
}

@media (max-width: 769px) {
  .terms-holder-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .terms-holder-wrapper .last-item-link {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .terms-holder-wrapper .last-item-image {
    position: relative;
    top: unset;
    right: unset;
    transform: unset;
    width: 100%;
    height: 80px;
  }

  .terms-holder-wrapper .last-item-content {
    gap: 5px;
    padding: 0;
  }

  .terms-holder-wrapper .last-item-name {
    text-align: center;
  }

  .terms-holder-wrapper .last-item-more {
    justify-content: center;
  }

  .terms-holder-wrapper .last-item:hover .last-item-image {
    transform: unset;
  }
}

/*# sourceMappingURL=block.css.map */