/*============================================================================================
	Offers Area
==============================================================================================*/
.offers-area {
  background: linear-gradient(0deg, #f7faff, #f7faff), #d9d9d9;
}
.offers-area.blog-page-area {
  padding: 16px 0px 120px;
}
.offers-card .theme-btn i{
  line-height: 0;
}
.offers-card .theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--white-color) !important;
  font-weight: 500;
  letter-spacing: -0.32px;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-right: 0px;
  padding: 12px 18px;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
}

.offers-card .theme-btn:hover{
  background: var(--secondary-color);
}


.offers-card {
  margin-top: 32px;
  background: var(--white-color);
  box-shadow: 0px 2px 4px rgba(8, 32, 50, 0.12);
  border-radius: 8px;
  transition: all 0.4s ease;
}
.offers-card:hover {
  box-shadow: 0px 24px 72px rgba(8, 32, 50, 0.12);
}
.offers-card-img {
  position: relative;
}
.offers-card-img img {
  width: 100%;
  height: 200px;
  border-radius: 8px 8px 0px 0px;
  object-fit: cover;
}
.offers-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-color);
  border-radius: 16px;
  color: var(--white-color);
  padding: 6px 12px;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
}
.offers-badge img {
  width: 16px !important;
  height: 16px !important;
  object-fit: contain;
  margin-right: 4px;
  position: relative;
  top: -1px;
}
.offers-card-content {
  padding: 20px 24px 24px;
}
.offers-card-cont-title {
  font-weight: 700;
  line-height: 150%;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
}
.offers-card-btn {
  margin-top: 20px;
}



@media only screen and (max-width: 767px) {
  .offers-card-cont-title {
    font-size: 18px;
  }
  .offers-card-img img {
    height: 180px;
  }
}

/*============================================================================================
	End Offers Area
==============================================================================================*/
