body {
  background-color: white !important;
}
body h2.title {
  font-size: 20px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  padding: 0 !important;
  margin: 0 !important;
}
body section.container-fluid .custom-container {
  margin: 0px !important;
  margin: auto !important;
  padding: 0px !important;
}
body section.container-fluid .custom-container ul.features-benefits {
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  align-content: stretch;
  justify-content: space-evenly;
}
body section.container-fluid .custom-container ul.features-benefits li {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-content: center;
}
body section.container-fluid .custom-container ul.features-benefits li img {
  height: 50px;
}
body section.container-fluid .custom-container h2.title {
  padding-left: 8px !important;
}
body section.container-fluid .custom-container .row {
  padding: 0;
  margin: 0;
}
body section.container-fluid .custom-container .row.product-list {
  padding: 5px;
}
body section.container-fluid .custom-container .row.product-list .col-5 {
  flex: 0 0 20%;
  max-width: 20%;
}
body section.container-fluid .custom-container .item {
  margin: 0px;
  padding: 5px;
  list-style: none;
  height: -webkit-fill-available !important;
  height: max-content !important;
}
body section.container-fluid .custom-container .item a {
  color: black;
  font-weight: 500;
  font-size: 14px;
}
body section.container-fluid .custom-container .item a h3.title {
  margin: 0;
  padding: 0;
  font-size: 16px !important;
  font-weight: 600;
}
body section.container-fluid .custom-container .item a:hover span {
  font-weight: 700;
}
body section.container-fluid .custom-container .item a .img-wrapper {
  position: relative;
  overflow: hidden;
}
body section.container-fluid .custom-container .item a .img-wrapper .banner {
  display: block;
  width: 100% !important;
  height: 320px !important;
  background-position: center;
  background-size: cover;
  transition: transform 0.65s ease;
}
body section.container-fluid .custom-container .item a .img-wrapper:hover .banner {
  transform: scale(1.15);
}
body section.container-fluid .custom-container .item a .img-wrapper img {
  display: block;
  width: 100%;
  aspect-ratio: 0/1;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s ease;
}
body section.container-fluid .custom-container .item a .img-wrapper:hover img {
  transform: scale(1.15);
}
body section.container-fluid .custom-container .item a .img-wrapper .zoom {
  opacity: 0;
  position: absolute;
  inset: 0;
  font-size: 2rem;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: end;
}
body section.container-fluid .custom-container .item a .img-wrapper .zoom button {
  background: #300B45;
  border: none;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 1rem;
  font-family: "Outfit", serif;
}
body section.container-fluid .custom-container .item a .img-wrapper:hover > .zoom {
  opacity: 1;
  transition: 200ms ease-in-out;
}
body section.container-fluid .custom-container .item a .title {
  font-size: 1.5rem;
  margin-top: 5px;
  font-weight: normal;
}
body section.container-fluid .custom-container .item a .title.fs-5 {
  font-size: 13px !important;
}
body section.container-fluid .custom-container .item .description {
  font-size: 16px;
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  justify-content: start !important;
  align-items: start !important;
  align-content: start !important;
  height: 100% !important;
  /* Start: Read More | Read Less */
  /* Hide checkbox */
  /* Accordion button / label */
  /* Label text change using ::after */
  /* Arrow optional */
  /* Accordion content above the button */
  /* Show content when checked */
  /* Move content above the button visually */
  /* End: Read More | Read Less */
}
body section.container-fluid .custom-container .item .description h3 {
  margin: 0;
  padding: 0;
  margin-top: 10px;
  font-weight: 500;
}
body section.container-fluid .custom-container .item .description h3.title {
  font-size: 16px;
  font-weight: 400;
  font-family: "Outfit", serif;
}
body section.container-fluid .custom-container .item .description p a.read-more {
  color: #EB008B;
  font-weight: normal;
}
body section.container-fluid .custom-container .item .description p a.read-more:hover {
  text-decoration: underline !important;
}
body section.container-fluid .custom-container .item .description ul {
  margin: 0;
  padding: 0;
  margin-top: 10px;
}
body section.container-fluid .custom-container .item .description ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 0px;
  list-style: none;
}
body section.container-fluid .custom-container .item .description ul li::before {
  content: "\f633"; /* bi-check */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
}
body section.container-fluid .custom-container .item .description .accordion-wrapper {
  width: 100% !important;
}
body section.container-fluid .custom-container .item .description .accordion-toggle {
  display: none;
}
body section.container-fluid .custom-container .item .description .accordion-label {
  /*
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #222;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  position: relative;
  width: 200px;
  */
  color: #EB008B;
  font-size: 15px;
  cursor: pointer;
  width: 80px !important;
}
body section.container-fluid .custom-container .item .description .accordion-label:hover {
  text-decoration: underline;
}
body section.container-fluid .custom-container .item .description .accordion-label::after {
  content: "Read More";
  margin-left: 0px;
}
body section.container-fluid .custom-container .item .description .accordion-toggle:checked + .accordion-label::after {
  content: "Read Less";
}
body section.container-fluid .custom-container .item .description .accordion-label .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
body section.container-fluid .custom-container .item .description .accordion-toggle:checked + .accordion-label .arrow {
  transform: rotate(180deg);
}
body section.container-fluid .custom-container .item .description .accordion-content {
  width: auto;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: none !important;
  border-radius: 6px;
  margin-bottom: 10px;
  padding: 0 !important;
  padding-right: 10px !important;
}
body section.container-fluid .custom-container .item .description .accordion-toggle:checked + .accordion-label + .accordion-content {
  max-height: 500px;
  padding: 16px 20px;
  margin-bottom: 10px;
}
body section.container-fluid .custom-container .item .description .accordion-wrapper {
  display: flex;
  flex-direction: column-reverse; /* button at bottom, content above */
  margin-bottom: 20px;
}
body section.container-fluid .custom-container .item .description .read-more {
  margin-top: 1rem;
  color: #EB008B;
  font-size: 14px;
}

@media (max-width: 991.98px) {
  .row.product-list .col-5 {
    flex: 0 0 33.33% !important;
    max-width: 33.33% !important;
  }
}
@media (max-width: 767.98px) {
  .row.product-list .col-5 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}
@media (max-width: 575.98px) {
  .row.product-list .col-5 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
@media (min-width: 320px) and (max-width: 991px) {
  ul.features-benefits {
    /*
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: stretch;
    justify-content: space-evenly;
    */
  }
  ul.features-benefits li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    /*
    list-style: none;
    display: flex;
    flex-direction: column;
    align-content: center;
    */
  }
}
@media (min-width: 992px) and (max-width: 1167px) {
  .custom-container {
    max-width: 776px !important;
    border: solid 0px red;
  }
  .zoom button {
    font-size: 12px !important;
    padding: 8px 12px !important;
  }
}
@media (min-width: 1168px) and (max-width: 1312px) {
  .custom-container {
    max-width: 952px !important;
  }
  .zoom button {
    font-size: 12px !important;
    padding: 8px 12px !important;
  }
}
@media (min-width: 1311px) and (max-width: 1494px) {
  .custom-container {
    max-width: 1096px !important;
  }
  .zoom button {
    font-size: 12px !important;
    padding: 8px 12px !important;
  }
}
@media (min-width: 1495px) and (max-width: 1727px) {
  .custom-container {
    max-width: 1280px !important;
  }
}
@media (min-width: 1728px) {
  .custom-container {
    max-width: 1450px !important;
  }
}

/*# sourceMappingURL=uiux-home-page.css.map */
