.content-header {
  margin-top: 4rem !important;
}

@media (max-width: 375px) {
  .content-header {
    margin-top: 4rem !important;
  }
}

@media (max-width: 300px) {
  ul.digital-cards li {
    width: 100%;
  }
}

/* Digital gift card List  */

.gift-card__block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 215px));
  grid-row-gap: 0;
  grid-column-gap: 3em;
  justify-content: center;
  padding: 0 3em;
  padding-bottom: 3em;
  width: 1200px;
  margin: 0 auto;
}

.giftcards-list__item-div {
  position: relative;
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-gap: 1em;
  justify-items: center;
  background: white;
  border-radius: 5px;
  padding-bottom: 1em;
}

.giftcards-list__item_img {
  width: 200px;
  height: auto;
  user-select: none;
  border-radius: 5px;
  pointer-events: none;
  filter: drop-shadow(-1px 4px 3px rgba(50, 50, 0, 0.5));
}

.giftcards-list__item_description {
  display: grid;
  grid-template-rows: repeat(2, auto);
  text-align: center;
}

.giftcards-list__item_description p {
  color: #2d2d2d;
  font-size: 0.85rem;
}

.giftcards-list__item_description p.bold {
  font-family: var(--primary-bold-font), georgia, serif;
}

.giftcards-list__discount-tag-wrap {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
}

.giftcard-list__wrapper {
  margin: 0px auto;
}

@media (max-width: 1250px) {
  .gift-card__block {
    width: 100%;
  }
}
@media (max-width: 1100px) {
  .gift-card__block {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media (max-width: 535px) {
  .gift-card__block {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}
@media (max-width: 456px) {
  .gift-card__block {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
@media (max-width: 435px) {
  .gift-card__block {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}
@media (max-width: 416px) {
  .gift-card__block {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
}
@media (max-width: 395px) {
  .gift-card__block {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

@media (max-width: 768px) {
  .giftcards-list__item_img {
    width: 100%;
    height: auto;
  }
}

body {
  font-size: 0.95rem;
}

/* Discount Tag CSS start */
.discount-tag__wrapper {
  position: relative;
  z-index: 2;
}
.dicount-tag__div-wrap {
  filter: drop-shadow(-1px 4px 3px rgba(50, 50, 0, 0.5));
}

.discount-tag__div {
  display: none;
  position: absolute;
  top: 1em;
  right: 0;
  background-color: #e94d55;
  -webkit-clip-path: polygon(10% 0%, 100% 1%, 100% 100%, 10% 100%, 0% 50%);
  clip-path: polygon(10% 0%, 100% 1%, 100% 100%, 10% 100%, 0% 50%);
  text-align: center;
  padding: 0 1em;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.discount-tag__div:hover {
  padding-right: 2em;
}

.discount-tag__text {
  color: #fff;
  font-family: var(--secondary-bold-font), georgia, serif;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .discount-tag__text {
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  .discount-tag__text {
    font-size: 0.6rem;
  }
}
/* Discount Tag CSS end */
