.guarantee-section{
  padding-top:20px;
  padding-bottom:20px;
}
.guarantee-card{
  display:grid;
  grid-template-columns:-webkit-max-content 1fr;
  grid-template-columns:max-content 1fr;
  gap:30px 60px;
  align-items:center;
  padding:50px 60px;
  border-radius:24px;
  background:#c7e5db;
}
.guarantee-card__badge{
  width:230px;
  max-width:100%;
  height:auto;
  color:#212428;
}
.guarantee-card__content h2{
  margin-bottom:16px;
}
.guarantee-card__content p:not(:last-child){
  margin-bottom:16px;
}
.guarantee-card__content em{
  font-style:normal;
  font-weight:600;
}
@media screen and (max-width:991px){
  .guarantee-card{
    gap:24px 40px;
    padding:40px;
  }
  .guarantee-card__badge{
    width:190px;
  }
}
@media screen and (max-width:767px){
  .guarantee-card{
    grid-template-columns:auto;
    justify-items:center;
    gap:24px;
    padding:32px 20px;
    text-align:center;
  }
  .guarantee-card__badge{
    width:170px;
  }
}
