@import url('../../assets-custom/root.css');

.heading-bottom-gaps-border {
  display: flex;
  gap: 10px;
}
.heading-bottom-gaps-border div {
  height: 5px;
  border-radius: 5px;
  background: var(--ea-third-color);
}
.heading-bottom-gaps-border div:nth-child(1),
.heading-bottom-gaps-border div:nth-child(3) {
  width: 4%;
}
.heading-bottom-gaps-border div:nth-child(2) {
  width: 6%;
}

/* <!-- Section-1: About Us START  --> */
.index-section-1 {
  background: var(--ea-primary-faded-color);
  padding-top: 45px;
  padding-bottom: 45px;
  margin-top: 47px;
}
.index-section-1-header {
  color: var(--ea-text-color-2);
}
.index-section-1-container-div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.index-section-1-left-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
.index-section-1-right-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.index-section-1-left-container {
  width: 50%;
}
.index-section-1-right-container {
  width: 50%;
}
.index-section-1-image img {
  width: 100%;
}
.index-section-1-header h1 {
  font-weight: 700;
}
.index-section-1-header p {
  font-weight: 400;
  /* font-size: 13px; */
  margin-top: 21px;
}

@media screen and (max-width: 650px) {
  .index-section-1-container-div {
    flex-direction: column;
  }
  .index-section-1-left-container {
    width: 100%;
  }
  .index-section-1-right-container {
    width: 100%;
  }
}

/* <!-- section-2: How It works START  --> */
.index-section-2-container {
  background: var(--ea-primary-color);
  color: var(--ea-text-color-3);
  padding-bottom: 77px;
  padding-top: 77px;
}
.index-section-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.index-section-2-header p {
  color: var(--ea-text-color-3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.index-section-2-cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 77px;
  gap: 67px;
}
.index-section-2-card-1,
.index-section-2-card-2,
.index-section-2-card-3 {
  display: flex;
  flex-direction: row-reverse;
  gap: 65px;
}
.index-section-2-card-2 {
  flex-direction: row;
}
.index-section-2-card-image {
  width: 50%;
}
.index-section-2-card-about {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.index-section-2-card-1 .index-section-2-card-about,
.index-section-2-card-3 .index-section-2-card-about {
  align-items: flex-end;
  text-align: right;
}
.index-section-2-cards {
  position: relative;
}
.index-section-2-card-about {
  position: relative;
}
.index-section-2-card-about::before {
  content: attr(data-step);
  position: absolute;
  top: 7px;
  right: -56px;
  /* left: -35px; */
  background: var(--btn-background-color);
  width: 37px;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-weight: bold;
  z-index: 1;
  font-size: 20px;
}
.index-section-2-card-2 .index-section-2-card-about::before {
  left: -47px;
  top: 63px;
}
.index-section-2-card-3 .index-section-2-card-about::before {
  top: auto;
  bottom: 0;
}
.index-section-2-card-2 .index-section-2-card-image {
  display: flex;
  justify-content: flex-end;
}
.index-section-2-card-image img {
  width: 220px;
}
.index-section-2-card-3 .index-section-2-card-about {
  display: flex;
  justify-content: flex-end;
}
.index-section-2-card-2 .index-section-2-card-about {
  display: flex;
  justify-content: center;
}
.index-section-2-card-3 .index-section-2-card-about p {
  margin-bottom: 1px;
}
.index-section-2-card-about p {
  max-width: 635px;
}
.index-section-2-cards::after {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(50% - -3px);
  width: 1px;
  height: calc(100% - 65px);
  border: 1px dashed;
  border-image: var(--btn-background-color);
  border-image-slice: 1;
  z-index: 0;
}

.index-section-2-cards > div:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100px;
  background-color: #f54b64;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .index-section-2-card-about::before {
    display: none;
  }
  .index-section-2-cards::after {
    display: none;
  }

  .index-section-2-card-1,
  .index-section-2-card-2,
  .index-section-2-card-3 {
    flex-direction: column-reverse;
  }
  .index-section-2-card-image {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
  }
  .index-section-2-card-about {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start !important;
    text-align: left !important;
  }
  .index-section-2-card-image img {
    width: 100%;
  }
}
.index-section-2 .heading-bottom-gaps-border {
  justify-content: center;
}
/* section-3 start  */
.index-section-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 82px;
  gap: 20px;
}
.index-section-3-header {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 57px;
  /* justify-content: center;
  align-items: center; */
}
.index-section-3 .heading-bottom-gaps-border {
  justify-content: center;
}
.index-section-3-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  text-align: center;
  gap: 22px;
}
.index-section-3-card-image {
  width: 50px;
  height: 50px;
  background: var(--btn-background-color);
  border-radius: 50%;
  padding: 10px;
}
.index-section-3-card-image img {
  width: 100%;
  border-radius: 10px;
}
.index-section-3-card-about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.index-section-3-card-1,
.index-section-3-card-2,
.index-section-3-card-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.index-section-3-card-1,
.index-section-3-card-2 {
  border-image-source: linear-gradient(0deg, rgba(226, 116, 71, 0) 9%, var(--ea-text-color-3) 50%, rgba(226, 116, 71, 0) 89%);
  border-image-slice: 1;
  border-right: 1px solid;
  padding-right: 22px;
}
.index-section-3-card-about h3 {
  font-weight: 700;
  font-size: 22px;
  color: var(--ea-text-color-2);
}
.index-section-3-card-about p {
  font-weight: 400;
  font-size: 13px;
  color: var(--ea-text-color-2);
}
.index-section-3-header h1 {
  font-weight: 700;
}
.index-section-3-header p {
  font-weight: 500;
  color: var(--ea-text-color-3);
}
@media screen and (max-width: 990px) {
  .index-section-3 {
    margin-top: 2px;
  }
}
@media screen and (max-width: 660px) {
  .index-section-3-cards {
    flex-direction: column;
  }
  .index-section-3-card-1,
  .index-section-3-card-2 {
    border: none;
  }
}

/* <!-- Section-4: Our Customer START  --> */
.index-section-4 {
  background-color: var(--ea-primary-color);
  padding-top: 48px;
  margin-top: 38px;
  padding-bottom: 23px;
}
.index-section-4-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  text-align: center;
}
.index-section-4-header span{
  color: var(--ea-text-color-3) !important;
}
.index-section-2-header span{
  color: var(--ea-text-color-3) !important;
}
.index-4-customer-card {
  display: flex;
  justify-content: center;
  align-items: center;
}
.index-section-4-customer-img {
  width: 100px;
}
.index-section-4-customer-img img {
  width: 100%;
  border-radius: 50%;
}
.index-section-4-about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 400px;
  gap: 32px;
  padding-bottom: 66px;
}
.index-section-4-about-customer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 60px;
  gap: 11px;
}
.index-section-4-about > p {
  font-weight: 400;
  font-size: 13px;
  color: var(--ea-text-color-1);
  text-align: center;
  padding-left: 10px;
  margin-top: 19px;
}
.index-section-4-header p {
  font-weight: 400;
  font-size: 13px;
  color: var(--ea-text-color-3);
}
.index-section-4-header h1 {
  font-weight: 700;
  margin-top: -14px;
}
.index-section-4 .heading-bottom-gaps-border {
  justify-content: center;
}
.index-section-4-about-customer h3 {
  font-weight: 700;
  font-size: 22px;
  color: var(--ea-text-color-3);
}
.index-section-4-about-customer p {
  font-weight: 400;
  font-size: 13px;
  color: var(--ea-text-color-3);
  text-align: center;
}
span {
  color: var(--ea-text-color-3);
}
.index-section-4-card-1,
.index-section-4-card-2,
.index-section-4-card-3 {
  display: flex;
  flex-direction: column;
}
.index-section-4 .carousel-indicators li {
  background-color: var(--ea-text-color-1);
}
.index-section-4 .carousel-indicators li.active {
  background-color: var(--ea-text-color-3);
}

.index-section-4 .carousel-control-next-icon,
.index-section-4 .carousel-control-prev-icon {
  display: none;
}

.index-section-4 .star-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
/* <!-- Section-5: FAQ START  --> */
.index-section-5 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  /* border: 1px solid red; */
  padding: 10px;
  padding-top: 43px;
  padding-bottom: 43px;
}
#accordionFlushExample {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60%;
  background: linear-gradient(90deg, rgba(253, 211, 32, 0.08) 0%, rgba(247, 43, 97, 0.08) 100%);
  padding: 25px;
}
.accordion-item {
  width: 100%;
}
.accordion-header {
  border: none;
  position: relative;
}
.accordion-header button {
  border: none;
  width: 100%;
  background: unset;
  /* border-bottom: 1px solid var(--ea-primary-color); */
  text-align: left;
  padding: 6px;
  font-weight: 700;
  font-size: 18px;
  color: var(--ea-text-color-2);
  padding-bottom: 17px;
  border-bottom: 1px solid transparent; /* Sets border width */
  border-image-source: var(--index-section-5-faq-button-border);
  border-image-slice: 1;
}
.accordion-header button:focus {
  outline: none;
}

.index-section-5 .accordion-body {
  padding: 6px;
  color: var(--ea-text-color-2);
  font-size: 14px;
}

.index-section-5-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  text-align: center;
  margin-bottom: 50px;
  text-align: center;
}
.index-section-5 .heading-bottom-gaps-border {
  justify-content: center;
}
.index-section-5-header p {
  color: var(--ea-text-color-3);
}
.index-section-5-header h1 {
  color: var(--ea-text-color-2);
}

@media screen and (max-width: 700px) {
  #accordionFlushExample {
    width: 100%;
  }
}

.index-section-5 .bi-chevron-down::before {
  content: '\f282';
  position: absolute;
  right: 6px;
  color: var(--ea-primary-color);
  font-size: 18px;
  top: 10px;
}
.index-section-5 .plus-minus-button {
  background: var(--ea-third-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  right: 3px;
  font-size: 33px;
  top: 1px;
  cursor: pointer;
  z-index: -3;
}
