.banner-wb {
  background: #F9F9F9;
  padding: 30px;
  overflow: hidden;
  border-radius: 7px;
  position: relative;
}

.banner-wb__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.banner-wb__image {
  position: absolute;
  bottom: 0;
  right: 45px;
}

.banner-wb__title {
  font-weight: 900;
  font-size: 22px;
  color: #000;
  margin-bottom: 8px;
}

.banner-wb__descript {
  font-weight: 400;
  line-height: 1.2;
  font-size: 16px;
  color: #000;
  margin-bottom: 15px; 
}

.banner-wb__link {
  font-weight: 400;
  font-size: 16px;
  color: #e22c49;
  border-bottom: 1px dashed #e22c49;
  line-height: 1.2;
  margin-bottom: 10px;
}

.banner-wb-offset .banner-wb__image {
  right: 0;
}

.banner-wb__link:last-child {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .banner-wb-offset .banner-wb__image {
    right: -110px;
  }
}

@media (max-width: 1100px) {
  .banner-wb__image {
    right: 5px;
}
}

@media (max-width: 850px) {
  .banner-wb {
    display: flex;
    flex-direction: column;
  }
  .banner-wb__button {
    width: 100%;
  }
  .banner-wb__image {
    position: relative;
    text-align: center;
    right: 5px;
    bottom: -30px;
  }
  .banner-wb__button .btn {
    width: 100%;
  }

  .banner-wb-offset .banner-wb__image {
    right: 0;
    text-align: right;
  }
} 