.offer {
  position: relative;
  background-color: #5ab18f;
  display: flex;
  justify-content: center;
}

.offer-title{
  display: flex;
  flex-direction: column;
  /*line-height: 1.2;*/
  align-self: flex-start;
  color: #3d4042;
}

.offer-container {
  display: grid;
  grid-template-columns: 1fr; /* This sets one column with a flexible width */
  /* Additional styling if needed */
}

.offer-container > h2{
  display: flex;
  flex-direction: column;
}

.offer-container > p {
  padding-right: 50px;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  color: #3d4042;
}

.request-btn {
  color: #5ab18f;
  background-color: #3d4042;
  font-weight: 600;
  letter-spacing: 0.96px;
  transition: all 300ms ease-in;
  display: table;
  text-align: center;
}

.request-btn:hover, .request-btn:visited{
  text-decoration: none;
}

.badge {
  width: 122px;
  position: absolute;
  top: -60px;
}

@media (min-width: 992px) {
  .offer {
    padding: 5rem 50px;
  }
  .offer-title {
    font-size: clamp(1.75rem, -0.254rem + 3.233vw, 3.625rem);
    line-height: 1.3;
  }
  .offer-container {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    padding-top: 5rem;
  }
  .offer-r > p {
    font-size: clamp(1rem, 0.599rem + 0.647vw, 1.375rem);
    letter-spacing: 1.2px;
    line-height: 1.5;
  }
  .badge {
    width: 178px;
    top: -90px;
  }
  .request-btn {
    border-radius: 15px;
    padding: 20px 0px;
    width: 240px;
    margin-top: 60px;
    font-size: clamp(1rem, 0.866rem + 0.216vw, 1.125rem);
  }
  .offer-desc{
    margin-top: 30px;
  }
}

@media(max-width:991px){
  .offer {
    padding: 100px 20px;
  }
  .offer-title {
    font-size: 24px;
    line-height: 42px;
  }
  .offer-r {
    font-size: 16px;
    letter-spacing: 0.9px;
    line-height: 1.5;
  }
  .offer-container {
    width: 100%;
    gap: 50px;
  }
  .offer-desc{
    margin-top: 15px;
  }
  .request-btn {
    padding: 15px 0px;
    width: 200px;
    border-radius: 10px;
    margin-top: 40px;
    font-size: 14px;
  }
}