#home {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}
.light-theme-bg {
  background-color: #ffe7d1;
}
.light-theme-bg-sec {
  background-color: #ffb775;
}

.home-content {
  flex-grow: 1;
}
.see-more:hover {
  text-decoration: underline;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.info_card .info_icon {
  width: 3.5rem;
  aspect-ratio: 1;
  color: #ffb775;
  background: #ffe7d1;
  font-size: 2rem;
  display: grid;
  place-items: center;
  border-radius: 0.8rem;
}
.info_card .info_content p {
  margin: 0;
}

.home-content > div {
  display: flex;
  flex-direction: column;
  /* min-height: 100dvh; */
  justify-content: center;
}

#home .position-relative > .relative-img {
  position: absolute;
  top: 50%;
  right: -2.5rem;
  transform: translateY(-50%);
}
.progress_bar.audio_progress {
  width: 90%;
  margin-bottom: 0;
}
.heart_family {
  /* background-image: url("../../assets/images/heart_famil_bg.png"); */
  background-image: url("../images/heart_famil_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.steps .col-4 {
  border-right: 2px solid #d6d6d6;
  /* text-align: center; */
  padding: 30px 1.5rem;
}
.steps .col-8 {
  padding: 30px 3rem 0px;
}

/* ------------------- Collapse/Accordian------------------- */
.ant-collapse-header {
  padding: 0 0 0 1rem !important;
  display: flex !important;
  align-items: center !important;
}
.ant-collapse-header-text h4 {
  padding: 10px 0px;
}

.ant-collapse-expand-icon {
  height: 100% !important;
  align-self: stretch;
}
.ant-collapse-content-box {
  font-size: 1.25rem;
  padding: 1rem 4rem !important;
}

/* ======================================= Testimonial Section =========================== */

.testimonial_section {
  /* background-image: url("../images/testimonial_bg.png"); */
  background-size: contain;
  display: flex;
  align-items: center;
  min-height: 100vh;
}
.testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  flex-grow: 1;
}
.carousel-wrapper {
  position: relative;
}
.carosel-div-wrap {
  /* min-height: 100% !important;
  height: 100% !important; */
  align-items: center;
  background-color: #ffffffd7;
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: background-color 1s ease !important;
}
.carosel-item {
  /* align-items: center;
  padding: 4rem; */
  /* background-color: #ffffffd7; */
  /* padding-bottom: 100px; */
  flex-grow: 1;
  min-height: 40vh;
  max-height: 50%;
  font-family: "DM Sans";
  color: #535353 !important;
}
.carosel-item .bg_FFB775.btn {
  flex-grow: 0;
}
.carosel-item .bg_FFB775.btn:hover {
  /* background-color: #fff; */
  color: #ffb775 !important;
}
.customer-name img {
  flex-shrink: 0;
  object-fit: contain;
}
.testimonial-profile-pic {
  position: relative;
}
.testimonial-profile-pic img {
  width: 100% !important;
  max-width: 300px !important;
  height: 100%;
}
.testimonial-profile-pic::after {
  content: "";
  position: absolute;
  top: -7.5%;
  right: -7.5%;
  width: 75%;
  height: 115%;
  /* background-color: red; */
  border: 1rem solid #ffb775;
  border-left: 1px solid transparent;
}

.testimonial_section .carosel-frame {
  position: absolute;
  left: -4%;
  top: -10%;
  border: 0.8rem solid #ffb775;
  border-radius: 1rem;
  width: 40%;
  height: 120%;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  position: absolute;
  left: 50%;
  z-index: 9;
  border-radius: 50%;
  width: 3rem !important;
  height: 3rem !important ;
  border: 3px solid #ffb775 !important;
  background-color: #ffe7d1 !important;
  transition: 0.3s ease !important;
  font-size: 0.5rem !important;
  background-image: none !important;
  position: relative;
}
.carousel-control-prev-icon {
  left: -50%;
}
.carousel-control-next-icon:hover,
.carousel-control-prev-icon:hover {
  background-color: #ffb775 !important;
  border: 3px solid #646464 !important;
}

.slick-prev {
  /* left: 6% !important;
  top: 80% !important; */
  transform: translateX(100%);
}
.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  content: "<" !important;
  font-size: 2rem;
  /* height: 100% !important; */
  font-family: "DM Sans" !important;
  color: #000 !important;
}
.carousel-control-prev-icon:hover:before,
.carousel-control-prev-icon:hover::before {
  color: #fff !important;
}
.carousel-control-next-icon::before {
  content: ">" !important;
}

.cust-review-content {
  /*  Customer review Paragraph */
  flex-grow: 1;
  max-height: 20vh !important;
  overflow-y: scroll;
}

/* =================== Customer Review Modal =================== */
.review_modal {
  left: 0;
  right: 0;
  padding: 3vh 10vw;
  z-index: 9990;
  background: #00000073;
  overflow-y: scroll;
  /* pointer-events: none; */
  user-select: none;
  /* transition: all 1s ease; */
  animation: modal-fade 0.5s ease;
  animation-iteration-count: 1;
}
@keyframes modal-fade {
  from {
    transform: translateY(100vh);
  }
  to {
    transform: translateY(0);
  }
}
.review_modal .modal-content > .container {
  padding: 0 !important;
  margin: 0 auto !important;
  width: max-content !important;
}
.text-container {
  position: relative;
  overflow: hidden;
  max-height: calc(1.2em * 3); /* Adjust this value based on the line-height */
}

.text-container.expanded {
  max-height: none;
}

#textContent {
  margin: 0;
  line-height: 1.2em; /* Adjust this value based on your desired line height */
}
/* .text-container.expanded #textContent{
  margin-bottom: 30px;
} */
#toggleButton {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-orange),
    var(--primary-orange) 70%,
    var(--bg-orange)
  );
  border-radius: 1em;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  display: block;
  z-index: 49;
  scale: 0.8;
}

.text-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 5em;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 20%,
    var(--bg-orange)
  );
  display: block;
  transition: opacity 0.5s ease;
}

.text-container.expanded::after {
  opacity: 0;
}

#toggleButton {
  display: block;
  margin-top: 10px;
  cursor: pointer;
}

/* .text-container:hover #toggleButton {
  display: block;
} */

.review_modal .modal-close button {
  position: absolute;
  right: -5%;
  /* transform: translate(110%); */
  top: 0;
  /* z-index: 9999999999; */
}

.testimonial-audio .pause-icon::before,
.testimonial-audio .play-icon::before {
  color: #fff;
  line-height: 100%;
  display: grid;
  place-items: center;
  background-color: #ffb775;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0px 3px 5px #000;
}
@media screen and (min-width: 320px) and (max-width: 465px) {
  .carousel-control-next-icon {
    top: -10%;
    left: 0;
  }
  .carousel-control-prev-icon {
    top: -10%;

    left: 0;
  }
  .ant-collapse-header {
    padding: 0 0 0 10px !important;
  }
}

@media screen and (min-width: 320px) and (max-width: 768px) {
  .steps .col-8 {
    padding-right: 10px;
  }
  .ant-collapse-header-text .h4 {
    font-size: 14px;
  }
  .ant-collapse-content-box {
    font-size: 12px;
    padding: 1rem !important;
  }
  .carosel-div-wrap {
    height: 100% !important;
    padding: 2rem;
  }
  .carosel-item {
    max-height: 90vh;
    background-color: #ffffffd7;
    padding: 1rem;
  }
  .cust-review-content {
    min-height: 15vh;
    max-height: 15vh !important;
  }
  .cust-occ.h6 {
    font-size: 14px;
  }
  .review_modal {
    padding: 3vh 2vw;
  }
  .modal-close {
    transform: translateX(0%);
  }
  .fs-18 {
    font-size: 14px;
  }
}
.review_modal .reviewer-img,
.reviewer-img > img {
  z-index: 999999999999999;
}
/* .reviewer-img::after{
  content: "";
  position: absolute;
  width: 70%;
  right: -0%;
  top: -10%;
  bottom: -10%;
  background-color: #ffb775;
} */
.review_modal .reviewer-img-frame {
  position: absolute;
  right: -25px;
  top: -5%;
  width: 80%;
  bottom: -5%;
  background-color: #ffb775;
  z-index: 0 !important;
}
.text-container {
  min-height: 5em;
  max-height: 8em;
  overflow: hidden;
}
.gallery-collection {
  max-height: 50vh;
  overflow-y: scroll;
}
.bg-trans {
  background-color: transparent !important;
}

.ant-modal-footer {
  text-align: center !important;
}
.skip_btn {
  background-color: #ffb775;
  color: #000;
  /* font-size: 16px; */
  font-weight: 600;
}
.skip_btn:hover {
  background-color: #ffb775 !important;
  color: #000 !important;
}
.pop_video {
  display: inline-block;
  display: grid;
  place-items: center;
  font-size: 20px;
  width: 40%;
  aspect-ratio: 1;
  background: linear-gradient(#2e2e2ed3, #2e2e2ed3),
    url("../../assets/images/martin-song-3.png");
  background-size: cover;
  border-radius: 20px;
}
.ant-modal .ant-modal-content {
  background-color: transparent !important;
  box-shadow: none;
  padding: 0;
  .cursor {
    z-index: 10000000000;
    transition: 0.3s ease;
    margin-right: 2px;
  }
  .bi.cursor:hover {
    color: red;
    background: #c7626263;
  }
}
.custom-modal {
  width: 78% !important;
}
.custom-modal {
  width: 78%;
}

@media (max-width: 768px) {
  .custom-modal {
    width: 100% !important;
  }
}

.walkthrough_video {
  border-radius: 10px;
}
.people_reaction {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 24px;
  color: #ffb775;
  font-weight: 500;
  margin-bottom: 5px;
  /* padding-top: 10px; */
}
.zindex {
  z-index: 9 !important;
  background: #fff4ea;
}
.margin {
  margin-top: 7px;
  /* margin-left: 7px; */
  /* margin-right: 7px; */
}
.cursor {
  cursor: pointer;
}
/* .post-items-wrapper {
  background-color: #000;
} */
.post-items {
  /* border: 2px double #000;
  box-shadow: 0px 5px 30px #444;
  border-radius: 8px; */
}
.post-items-wrapper > div:nth-child(even) > .even:nth-child(odd) {
  padding: 0px 3rem 10px 3rem;
  background-color: #000;
}
.post-items-wrapper > div:nth-child(odd) > div:nth-child(even) {
  padding: 0px 0px;
}
.post-items-wrapper > div > div {
  margin: 3px;
}
@media screen and (min-width: 320px) and (max-width: 768px) {
  .fixed {
    position: fixed !important;
    top: 75px !important;
    left: 0px;
    right: 0;
    padding: 5px !important;
    z-index: 20;
    border-radius: 0px !important;
  }
  .ant-collapse-header-text .fs-22 {
    font-size: 16px;
  }
  .post-items-wrapper > div:nth-child(even) > .even:nth-child(odd) {
    padding: 0px;
  }
}
/* .even {
  padding-top: 2rem;
  background: #000;
}
.even .post-item {
  padding-top: 2rem;
}
.odd {
  padding-bottom: 2rem;
  background: #000;
}
.odd .post-item {
  padding-bottom: 2rem;
} */

/* .my-masonry-grid {
  display: flex;
  width: 100%;
}

.my-masonry-grid_column {
  background-clip: padding-box;
}

.my-masonry-grid_column > div {
  margin-bottom: 16px;
}

.margin {
  margin: 8px;
} */
