body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f9ff;
}
.white-bg {
  background-color: #fff;
}
.background {
  background-color: #f5f9ff;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 40px 80px;
  position: relative;
}
.custom_h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}
.custom_h2 span:first-child {
  color: rgb(0, 120, 200);
}

.owl-item.active {
  margin-right: 80px !important;
  max-width: 370px !important;
}

.card {
  border-radius: 12px;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 570px;
  position: relative;
  padding: 16px 24px;
  overflow: hidden;
  width: 100%;
  min-width: 280px;
}
.card .background {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
}
.bg-top {
  height: 71%;
  background-color: #d9ebf7;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.bg-mid {
  height: 1%;
  background-color: #fff;
}
.bg-bottom {
  height: 28%;
  background-color: #0078c8;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.brochure-label {
  background: #fff;
  color: rgb(0, 120, 200);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 400;
  padding: 4px 12px;
  align-self: center;
  margin-bottom: 10px;
  width: fit-content;
  user-select: none;
}
.custom_title {
  font-size: 20px;
  margin-bottom: 8px;
  color: #000;
  padding: 0 14px;
  line-height: 1.2;
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.custom_subtitle {
  font-size: 20px;
  margin-bottom: 8px;
  color: #000;
  padding: 0 14px;
  line-height: 1.2;
  min-height: 5rem;
  text-align: center;
}

.image-wrapper {
  display: flex;
  justify-content: center;
  border: 8px solid white;
}
.image-wrapper img {
  /* max-width: 200px; */
  max-height: 350px;
  object-fit: contain;
  display: block;
}

.download-btn {
  background: #ffd20d;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  user-select: none;
  text-decoration: none;
  margin: 10px 20px;
  font-weight: 500;
}
.download-btn svg {
  fill: currentColor;
  stroke: currentColor;
  width: 1em;
  height: 1em;
}

/* Responsive */
@media (min-width: 1024px) {
}
@media (min-width: 768px) and (max-width: 1023px) {
  .brochure-label {
    margin-bottom: 0px;
  }
  .custom_title {
    min-height: 1rem;
  }
  .image-wrapper {
    display: flex;
    justify-content: center;
    border: none;
    margin-bottom: 10px;
  }
  .image-wrapper img {
    max-width: 260px;
    max-height: 360px;
    border: 4px solid white;
  }
  .download-btn {
    margin: 0px 3rem;
  }
  .card {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 20px 10px;
  }
  .brochure-label {
    margin-bottom: 0px;
  }
  .custom_title {
    min-height: 1rem;
  }
  .image-wrapper {
    display: flex;
    justify-content: center;
    border: none;
    margin-bottom: 10px;
  }
  .image-wrapper img {
    max-width: 260px;
    max-height: 360px;
    border: 4px solid white;
  }
  .download-btn {
    margin: 0px 3rem;
  }
  .card {
    max-width: 100%;
  }
}

.error-message {
  color: red;
  font-size: 13px;
  margin-top: 5px;
}
