/*!*****************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/product-cards/style.scss ***!
  \*****************************************************************************************************************************************************************************************************************************************************/
.product-cards-section {
  padding: 60px 0;
  padding-top: 10px;
}
.product-cards-section .container {
  max-width: 1280px;
  margin: 0 auto;
}
.product-cards-section .product-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
.product-cards-section .product-card {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(229, 231, 235, 0.6);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
}
.product-cards-section .product-card.fade-up-item {
  transition: transform 700ms ease, opacity 700ms ease;
}
.product-cards-section .product-card.fade-up-item:nth-child(1) {
  transition-delay: 0ms;
}
.product-cards-section .product-card.fade-up-item:nth-child(2) {
  transition-delay: 150ms;
}
.product-cards-section .product-card.fade-up-item:nth-child(3) {
  transition-delay: 300ms;
}
.product-cards-section .product-card.fade-up-item:nth-child(4) {
  transition-delay: 450ms;
}
.product-cards-section .product-card.fade-up-item:nth-child(5) {
  transition-delay: 600ms;
}
.product-cards-section .product-card.fade-up-item:nth-child(6) {
  transition-delay: 750ms;
}
.product-cards-section .product-card.fade-up-item:nth-child(7) {
  transition-delay: 900ms;
}
.product-cards-section .product-card.fade-up-item:nth-child(8) {
  transition-delay: 1050ms;
}
.product-cards-section .product-card.fade-up-item:nth-child(9) {
  transition-delay: 1200ms;
}
.product-cards-section .product-card.fade-up-item:nth-child(10) {
  transition-delay: 1350ms;
}
.product-cards-section .product-card.fade-up-item:nth-child(11) {
  transition-delay: 1500ms;
}
.product-cards-section .product-card.fade-up-item:nth-child(12) {
  transition-delay: 1650ms;
}
.product-cards-section .card-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 66.67%;
  overflow: hidden;
}
.product-cards-section .card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.product-cards-section .card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 4px 14px;
  padding-top: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
  border-radius: 0;
  border-left: 2px solid #283680;
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
}
.product-cards-section .card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-cards-section .card-title {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #262626;
  margin: 0 0 15px 0;
}
.product-cards-section .card-subtitle {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #9CA3AF;
  margin: 0 0 20px 0;
  flex-grow: 1;
}
.product-cards-section .card-phone {
  margin: 0 0 20px 0;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.4;
}
.product-cards-section .card-phone a {
  color: #737373;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
.product-cards-section .card-phone a:hover {
  color: #283680;
}
.product-cards-section .card-phone a:focus {
  outline: 2px solid #283680;
  outline-offset: 2px;
}
.product-cards-section .card-phone .phone-label {
  font-weight: 600;
  color: #262626;
}
.product-cards-section .card-phone .phone-number {
  font-weight: 400;
}
.product-cards-section .card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #283680;
  text-decoration: none;
  align-self: stretch;
  padding: 16px 24px;
  border: 2px solid #E5E7EB;
  border-radius: 0;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.product-cards-section .card-button span {
  display: inline-block;
}
.product-cards-section .card-button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin: 0;
  transform: translateY(-1px);
}
.product-cards-section .card-button:hover {
  background-color: #283680;
  color: #FFFFFF;
  border-color: #283680;
}
.product-cards-section .main-button-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
.product-cards-section .main-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 12px 50px;
  padding-top: 14px;
  background-color: #283680;
  color: #FFFFFF;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.45px;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #FFF;
}
.product-cards-section .main-button svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  transform: translateY(-2px);
}
.product-cards-section .main-button:hover {
  opacity: 0.9;
}
.product-cards-section .main-button:hover svg {
  transform: translate(4px, -2px);
}

@media (max-width: 992px) {
  .product-cards-section .product-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .product-cards-section {
    padding: 40px 0;
  }
  .product-cards-section .product-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .product-cards-section .card-content {
    padding: 20px 15px;
  }
  .product-cards-section .card-title {
    font-size: 18px;
  }
  .product-cards-section .main-button {
    padding: 14px 32px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .product-cards-section {
    padding: 30px 15px;
  }
  .product-cards-section .product-cards-grid {
    margin-bottom: 30px;
  }
  .product-cards-section .card-category {
    font-size: 11px;
    padding: 5px 10px;
    top: 10px;
    left: 10px;
  }
  .product-cards-section .card-title {
    font-size: 20px;
  }
  .product-cards-section .card-subtitle {
    font-size: 16px;
  }
  .product-cards-section .card-button {
    font-size: 14px;
    font-weight: 500;
    padding: 9px 24px;
    padding-bottom: 7px;
  }
  .product-cards-section .card-button svg {
    width: 15px;
    height: 13px;
  }
  .product-cards-section .main-button {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
  }
}

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