.chat-plus-promo {
  background: #F9F9F9;
  padding: 16px;
}

.chat-plus-promo__box {
  display: flex;
  align-items: center;
  padding: 16px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.chat-plus-promo__image {
  width: 99px;
  height: 68px;
  margin-right: 16px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1)
  }
  
  50% {
    transform: scale(1.2)
  }

  10% {
    transform: scale(1)
  }
}

.chat-plus-promo__content {
  flex: 1;
  margin-right: 16px;
}

.chat-plus-promo__title {
  font-family: 'Muli', sans-serif;
  font-size: 18px;
  color: #454545;
  font-weight: 600;
  margin-bottom: 8px;
}

.chat-plus-promo__description {
  font-family: 'Muli', sans-serif;
  font-size: 16px;
  color: #454545;
}

@media (max-width: 767px) {
  .chat-plus-promo__box {
    flex-direction: column;
    text-align: center;
  }

  .chat-plus-promo__image {
    margin-right: 0;
    margin-bottom: 16px;
  }
  
  .chat-plus-promo__content {
    margin-right: 0;
    margin-bottom: 16px;
  }
}