.effects {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 0 4px transparent;
}

.overlay {
  position: absolute;
  padding: 0px !important;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.effects:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.learn_more_hover {
  background-color: white;
  color: #333;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 3;
}

.learn_more_hover:hover {
  background-color: #f8f9fa;
}

.equal-height-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.equal-height-row > div {
  flex: 1 1 calc(33.333% - 20px);
  display: flex;
}

.section_header {
  font-weight: 700 !important;
}

.gift .carousel-inner {
  height: 150px;
}

@media (min-width: 768px) {
  .immediate_access {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .equal-height-row {
    display: block !important;
  }

  .immediate_access {
    min-height: 290px;
  }

  .equal-height-row > div {
    width: 100% !important;
    flex: none !important;
    margin-bottom: 20px;
  }
}
