.deal {
  padding: 11rem 0;
  background-color: #f1f8fd;
  border-radius: 5rem
}
.deal__title {
  margin-bottom: 3.5rem
}
.deal__title span {
  color: #1e5d9d
}
.deal__content {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 2.7rem
}
.deal__item {
  width: 100%;
  min-height: 18.2rem;
  display: flex;
  flex-direction: column;
  padding: 1.9rem;
  background-color: #fff;
  border-radius: 1.6rem;
  border: 1px solid #eaeaeb
}
.deal__item-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.7rem
}
.deal__item-title {
  width: 70%
}
.deal__item-logo {
  margin-top: .5rem;
  margin-right: 1rem;
  width: 4rem;
  height: 4rem;
  position: relative;
  z-index: 1
}
.deal__item-logo::before {
  content: '';
  position: absolute;
  top: -.5rem;
  right: -1rem;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  background-color: #f1f8fd;
  z-index: -1
}
.deal__item__description {
  font-size: 1.2rem;
  line-height: 1.25;
  margin-top: auto
}
.deal__text {
  margin-top: 2.7rem;
  padding: 1.9rem;
  background-color: #fff;
  border-radius: 1.6rem;
  border: 1px solid #eaeaeb
}
@media (max-width:48em) {
  .deal {
    padding: 8rem 0 2.6rem;
    border-radius: 3.4rem
  }
  .deal__title {
    margin-bottom: 4rem
  }
  .deal__content {
    grid-template-columns: repeat(1,1fr);
    grid-gap: 3rem
  }
  .deal__item {
    min-height: 24.4rem;
    padding: 2.8rem;
    border-radius: 3.2rem
  }
  .deal__item-heading {
    margin-bottom: 2.2rem
  }
  .deal__item-title {
    width: 80%
  }
  .deal__item-logo {
    margin-right: 2.2rem;
    width: 4.4rem;
    height: 4.4rem
  }
  .deal__item-logo::before {
    top: -.6rem;
    right: -1.1rem;
    width: 4.2rem;
    height: 4.2rem
  }
  .deal__item__description {
    font-size: 2rem;
    line-height: 1.2
  }
}