#guarantee-block .guarantee__inner {
  display: flex;
  gap: 30px;
}
#guarantee-block .guarantee__left {
  padding: 35px 40px;
  background: var(--bgSecondary);
  border-radius: 10px;
  max-width: 750px;
  flex-basis: 100%;
}
#guarantee-block .guarantee__descr {
  max-width: 660px;
  box-sizing: border-box;
  max-height: 260px;
  overflow-y: auto;
  padding-right: 40px;
}
#guarantee-block .guarantee__descr::-webkit-scrollbar {
  width: 2px;
}
#guarantee-block .guarantee__descr::-webkit-scrollbar-track {
  background: var(--stroke);
}
#guarantee-block .guarantee__descr::-webkit-scrollbar-thumb {
  background-color: var(--primary);
}
#guarantee-block .guarantee__right {
  max-width: 750px;
  flex-basis: 100%;
}
#guarantee-block .benefits__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
#guarantee-block .benefits__item {
  padding: 15px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  background: var(--bgSecondary);
  border-radius: 10px;
}
#guarantee-block .benefits__item:first-child, #guarantee-block .benefits__item:nth-child(2) {
  grid-column: 2 span;
}
#guarantee-block .benefits__item:first-child .benefits__item-gallery {
  transform: translatex(-40px);
}
#guarantee-block .benefits__item:first-child .benefits__item-img {
  margin-right: -40px;
}
#guarantee-block .benefits__item:nth-child(2) {
  flex-direction: row-reverse;
}
#guarantee-block .benefits__item:nth-child(2) .benefits__item-gallery {
  transform: translatex(40px);
}
#guarantee-block .benefits__item:nth-child(2) .benefits__item-img {
  margin-left: -40px;
}
#guarantee-block .benefits__item-text {
  display: flex;
  flex-direction: column;
  max-width: 460px;
}
#guarantee-block .benefits__item-title {
  margin-bottom: 5px;
  color: var(--primary);
}
#guarantee-block .benefits__item-descr {
  color: var(--mainTextPrimary);
}
#guarantee-block .benefits__item-gallery {
  display: flex;
}
#guarantee-block .benefits__item-img {
  max-width: 120px;
  max-height: 120px;
  min-width: 120px;
  border: 5px solid var(--bgSecondary);
  border-radius: 10px;
}
#guarantee-block .benefits__item-img img {
  border-radius: 10px;
}

@media screen and (max-width: 1540px) {
  #guarantee-block .benefits__item .benefits__item-img {
    margin: 0 !important;
  }
  #guarantee-block .benefits__item .benefits__item-gallery {
    transform: unset !important;
  }
}
@media screen and (max-width: 1240px) {
  #guarantee-block .guarantee__descr {
    max-height: 300px;
  }
}
@media screen and (max-width: 1180px) {
  #guarantee-block .guarantee__inner {
    flex-direction: column;
  }
  #guarantee-block .guarantee__left,
  #guarantee-block .guarantee__right {
    max-width: 100%;
  }
}
@media screen and (max-width: 600px) {
  #guarantee-block .benefits__item-img {
    max-width: 100px;
    max-height: 100px;
    min-width: 100px;
  }
  #guarantee-block .guarantee__left, #guarantee-block .guarantee__right {
    padding: 20px;
  }
}
@media screen and (max-width: 530px) {
  #guarantee-block .benefits__item {
    flex-direction: column !important;
  }
  #guarantee-block .benefits__item-title,
  #guarantee-block .benefits__item-descr {
    text-align: center;
  }
}/*# sourceMappingURL=block.css.map */