.accordion-with-image-wrapper .accordion-with-image-header {
  text-align: center;
  padding: 40px 0 20px;
}
.accordion-with-image-header-text-wrapper {
  display: inline-block;
}
#accordionWithImagePc {
  width: 90%;
  margin: 0 auto;
}
#accordionWithImagePc .accordion-tabs {
  display: flex;
  flex-direction: row;
  margin: 0 35px;
}
#accordionWithImagePc .accordion-tab-item {
  cursor: pointer;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
#accordionWithImagePc .accordion-tab-item .accordion-tab-item-img img {
  width: 100%;
}
#accordionWithImagePc .accordion-tab-item:hover,
#accordionWithImagePc .accordion-tab-item[aria-expanded="true"] {
  background: linear-gradient(to bottom, transparent, transparent, #9ECFD9);
}
#accordionWithImagePc .accordion-tab-item[aria-expanded="true"] .triangle-bg {
  display: block;
}
#accordionWithImagePc .accordion-tab-item[aria-expanded="false"] .accordion-tab-item-img img {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
#accordionWithImagePc .accordion-tab-item:hover .accordion-tab-item-img img {
  -webkit-filter: grayscale(0); /* Safari 6.0 - 9.0 */
  filter: grayscale(0);
}

#accordionWithImagePc .accordion-contents{
  background: #fff;
  padding: 30px;
  border-radius: 32px;
  min-height: 160px;
  box-shadow: -4px 4px 8px rgba(0, 0, 0, 0.08), 4px 4px 8px rgba(0, 0, 0, 0.08);
}
#accordionWithImagePc .accordion-tab-item .accordion-tab-item-text {
  position: absolute;
  left: 50%;
  top: 4%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 22px;
  width: 100%;
  justify-content: center;
  opacity: 0.6;
  color: #184354;
  font-weight: 700;
}
#accordionWithImagePc .accordion-tab-item:hover .accordion-tab-item-text,
#accordionWithImagePc .accordion-tab-item[aria-expanded="true"] .accordion-tab-item-text {
  opacity: 1;
}
#accordionWithImagePc .accordion-tab-item .plus-icon {
  width: 20px;
}
.triangle-bg {
  width: 25px;
  height: 15px;
  background: #fff;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  display: none;
}
.accordion-with-image-highlight-style-wrapper {
  padding: 0 15px;
}
.accordion-with-image-highlight-style-wrapper .accordion-with-image-header {
  text-align: center;
  padding: 40px 0 20px;
}

.accordion-with-image-highlight-style-wrapper .custom-card {
  transition: all 0.3s ease;
  cursor: pointer;
  transform: scale(1);
  margin-top: 60px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  border: 0;
}

.accordion-with-image-highlight-style-wrapper .custom-card .description {
  display: none;
}
.accordion-with-image-highlight-style-wrapper .custom-card.active {
  transform: scale(1.1);
  z-index: 2;
  opacity: 1;
  background: linear-gradient(to bottom, #E0FAFF, #ADE6F2);
  margin-top: 0;
  margin-bottom: 25px;
}

.accordion-with-image-highlight-style-wrapper .custom-card.active .description {
  display: block;
}
.accordion-with-image-highlight-style-wrapper .card-body {
  margin: 10px 20px 20px;
  padding: 10px 15px;
  background: linear-gradient(to bottom, #4CA1C2, #7BB5C9);
  text-align: center;
  font-weight: 700;
  border-radius: 20px;
}
.accordion-with-image-highlight-style-wrapper .card-body .card-title {
  margin-bottom: 0;
  font-size: 25px;
}
.accordion-with-image-highlight-style-wrapper .card-body .card-title p {
  color: #fff;
  margin-bottom: 0;
}
.accordion-with-image-highlight-style-wrapper .custom-card.active .card-body {
  background: linear-gradient(to bottom, #FFFFFF, #F8F8F8);
}
.accordion-with-image-highlight-style-wrapper .custom-card.active .card-body .card-title {
  background: linear-gradient(to bottom, #8AD1E0, #49ADC1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.accordion-with-image-highlight-style-wrapper .custom-card.active .card-body .description p {
  color: #184354;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .accordion-with-image-wrapper .accordion-with-image-header {
    padding: 40px 0 0px;
  }
  .accordion-with-image-highlight-style-wrapper .custom-card {
    margin-top: 0;
  }
  .accordion-with-image-highlight-style-wrapper .custom-card.active {
    margin-top: 25px;
  }
  .accordion-with-image-highlight-style-wrapper {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .accordion-with-image-highlight-style-wrapper .accordion-with-image-header p,
  .accordion-with-image-wrapper .accordion-with-image-header p {
    font-size: 1rem !important;
  }

   .accordion-with-image-highlight-style-wrapper .card-body .card-title p {
        color: #fff;
        margin-bottom: 0;
        font-size: 1rem;
    }
}
@media (min-width: 375px) and (max-width: 430px)  {
  #accordionWithImagePc .accordion-tab-item .accordion-tab-item-text {
     font-size: 10px;
     text-align: center;
  }
}

