.guarantee-block {
  display: flex;
  flex-direction: column;
}
.guarantee-block .content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.guarantee-block .desc-side {
  display: flex;
  flex-direction: column;
  width: 50%;
  max-width: 750px;
  height: 340px;
  padding: 40px 50px 50px 50px;
  overflow-y: auto;
  background: var(--background-secondary);
}
.guarantee-block .desc-side__text {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-right: 20px;
  gap: 15px;
  overflow-y: auto;
}
.guarantee-block .desc-side__text::-webkit-scrollbar,
.guarantee-block .desc-side__text::-webkit-scrollbar-thumb {
  width: 3px;
}

.guarantee-block .advantages {
  display: flex;
  width: 50%;
  max-width: 750px;
  height: 340px;
  gap: 30px;
}
.guarantee-block .advantage {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
}
.guarantee-block .advantage__text-holder {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  z-index: 1;
}
.guarantee-block .advantage__text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: fit-content;
  padding: 10px 20px;
  gap: 10px;
  background: var(--background);
  text-align: end;
}
.guarantee-block .advantage__text__title {
  color: var(--primary);
}
.guarantee-block .advantage__img {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
}
.guarantee-block .advantage__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guarantee-block .guarantee__btn-holder {
  display: flex;
  width: 100%;
  margin-top: 30px;
}

@media (max-width: 1480px) {
  .guarantee-block .content {
    gap: 20px;
  }
  .guarantee-block .advantages {
    width: 70%;
    gap: 20px;
  }
  .guarantee-block .desc-side {
    padding: 30px;
  }
  .guarantee-block .desc-side__text {
    padding-right: 10px;
  }
}
@media (max-width: 1220px) {
  .guarantee-block .content,
  .guarantee-block .advantages {
    gap: 10px;
  }
  .guarantee-block .desc-side {
    padding: 20px;
  }
}
@media (max-width: 992px) {
  .guarantee-block .content {
    flex-direction: column;
  }
  .guarantee-block .desc-side,
  .guarantee-block .advantages {
    width: 100%;
    height: 280px;
    max-width: none;
  }
  .guarantee-block .advantages,
  .guarantee-block .advantages.two {
    height: 40vw;
    max-height: 280px;
  }
  .guarantee-block .guarantee__btn-holder {
    margin-top: 20px;
  }
  .guarantee-block .desc-side__text {
    gap: 10px;
  }
}
@media (max-width: 680px) {
  .guarantee-block {
    height: auto;
    flex-direction: column;
  }
  .guarantee-block .advantage__text-holder,
  .guarantee-block .advantage__text {
    padding: 5px;
  }
}
@media (max-width: 576px) {
  .guarantee-block .desc-side {
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .guarantee-block .advantages {
    flex-direction: column;
    height: 90vw;
    max-height: 420px;
  }
}
