/*!**************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/standout-benefit-cards/style.scss ***!
  \**************************************************************************************************************************************************************************************************************************************************************/
.standout-benefit-cards-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  padding: 20px 20px 120px;
  max-width: 1240px;
  box-sizing: border-box;
  gap: 40px;
}

.benefit-cards-title {
  text-align: center;
}

.standout-benefit-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 42px;
  flex-wrap: wrap;
}

.benefit-card {
  border: 1px solid #C0C0C0;
  flex: 1 1 calc(33.333% - 42px);
  max-width: 400px;
  min-width: 320px;
  transition: transform 0.3s;
  cursor: pointer;
  position: relative;
}

.benefit-card:hover {
  transform: scale(1.03);
  border: 1px solid #121212;
}

.benefit-card-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.benefit-card-logo {
  padding: 24px 24px 14px;
  width: 100%;
  box-sizing: border-box;
}

.benefit-card-logo img {
  width: 90%;
}

.benefit-card-image {
  width: 100%;
}

.benefit-card-image img {
  width: 100%;
}

.benefit-content-wrapper {
  padding: 16px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.card-description p {
  line-height: 26px;
}

.card-event-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 18px;
  line-height: 26px;
}

.card-event-details .date {
  font-weight: 700;
}

.card-event-details .location {
  /* Each location detail item */
}

.card-benefit-checklist-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-benefit-title-dropdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 12px;
  pointer-events: none;
}

.card-benefit-title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  font-family: var(--primary-font);
}

.card-benefit-title-dropdown-wrapper svg {
  display: none;
}

.card-benefits-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-benefit {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}

.card-benefit svg {
  padding-top: 6px;
}

.card-benefit div {
  font-size: 18px;
  line-height: 26px;
}

.benefit-card-cta-wrapper {
  width: 100%;
}

.benefit-card-cta-wrapper a {
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  display: inline-block;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: var(--global-border-radius);
}

@media only screen and (max-width: 1280px) {
  .standout-benefit-cards {
    align-items: stretch;
  }
  .benefit-content-wrapper {
    padding: 16px 24px 100px;
  }
  .benefit-card-cta-wrapper {
    width: calc(100% - 48px);
    position: absolute;
    bottom: 24px;
  }
}
@media only screen and (max-width: 1080px) {
  .standout-benefit-cards {
    flex-direction: column;
  }
  .benefit-card {
    cursor: default;
    max-width: 500px;
  }
  .benefit-card-link-overlay {
    display: none;
    cursor: default;
  }
  .benefit-card:hover {
    transform: unset;
    border: 1px solid #c0c0c0;
  }
  .card-benefit-title-dropdown-wrapper {
    pointer-events: all;
  }
  .card-benefit-title-dropdown-wrapper svg {
    display: inline-block;
    transition: all 0.3s ease-in-out;
  }
  .card-benefits-wrapper {
    width: 100%;
    overflow: hidden;
    max-height: 0;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    box-sizing: border-box;
  }
  .slide-in {
    max-height: 800px !important;
  }
  .rotate {
    transform: rotate(180deg);
  }
}

/*# sourceMappingURL=style-index.css.map*/