/*  ------------------ Green Header --------------------- */

.breadcrumb-section {
  position: relative;
  width: 100%;
  display: flex;
  height: 150px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 55px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.greenColor-wrapper {
  width: 100%;
  display: flex;
  position: absolute;
  height: 100%;
  z-index: 1;
  top: 0;
  inset-inline-end: 0;
  justify-content: flex-end;
}

.greenColor {
  width: 40%;
  height: 150px;
  position: relative;
  /* background-color: #4da05b; */
}

.active-title {
  font-weight: 400;
  color: #545454;
  font-size: 16px;
}

/* gray color */
.gray1,
.gray2,
.gray3 {
  position: absolute;
  height: 100%;
  background-color: #d8d8d8;
}

.gray1 {
  width: 8px;
  inset-inline-end: calc(39vw - 38px);
}

.gray2 {
  width: 16px;
  inset-inline-end: calc(39vw - 23px);
}

.gray3 {
  width: 22px;
  inset-inline-end: calc(39vw - 0px);
}

/* Green Header Title */
.greenTitle-wrapper{
  width: 100%;
  display: flex;
  height: 100%;
  z-index: 2;
  align-items: center;
}
.greenTitle {
  width: 100%;
  max-width: 1350px;
  margin: 20px auto;
}

.bread-crumb-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 156%;
  margin-bottom: 5px;
}

.greenTitle div p {
  color: #787878;
  font-weight: 400;
  font-size: 15px;
  line-height: 156%;
  text-align: start;
}

.greenTitle div p span {
  font-weight: 500;
  line-height: 156%;
  text-align: start;
  margin: auto 5px;
}

.breadcrumb {
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  font-weight: 400;
  font-size: 15px;
  color: #787878;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li a {
  color: #545454;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
}

.breadcrumb li a:hover {
  text-decoration: none;
}

.breadcrumb li span {
  margin: 0 5px;
  user-select: none;
}

.breadcrumb li.active-title {
  color: #545454;
  font-weight: 500;
  font-size: 15px;
  cursor: default;
  user-select: none;
}

/* Mobile screen */
@media (max-width: 767px) {

  .gray1,
  .gray2,
  .gray3 {
    display: none;
  }


  .greenColor {
    width: 40vw;
  }

  .greenTitle {
    margin: 20px auto;
  }

  .bread-crumb-title {
    font-weight: 600;
    font-size: 15px;
  }

  .greenTitle div p {
    font-size: 10px;
  }
}

/* Tablet Screen */
@media (min-width: 768px) and (max-width: 1024px) {

.gray1 {
  width: 8px;
  inset-inline-end: calc(38vw - 38px);
}

.gray2 {
  width: 16px;
  inset-inline-end: calc(38vw - 23px);
}

.gray3 {
  width: 22px;
  inset-inline-end: calc(38vw - 0px);
}

  .greenTitle {
    margin: 20px auto;
  }

  .bread-crumb-title {
    font-weight: 600;
    font-size: 20px;
  }

  .greenTitle div p {
    font-size: 15px;
  }
}

/* Small Laptop Screen */
@media (min-width: 1025px) and (max-width: 1280px) {
  .greenTitle div p {
    font-size: 20px;
    text-align: start;
  }
}

@media (min-width: 1281px) and (max-width: 1400px) {
  .greenTitle div p {
    font-size: 20px;
  }
}
@media (max-width:768px) {
      .gray1,
  .gray2,
  .gray3 {
    display: none;
  }
}

/* ------------------ Fill Form -----------------  */

.fill-form-section {
  margin-bottom: 100px;
}

.fill-form-section input {
  outline: none;
}

.investor-form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  font-family: sans-serif;
  direction: rtl;
}

.form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.form-pair {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}


.form-group label {
    display: block;
    text-align: start;
    font-size: 15px;
    font-family: inherit;
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
    margin-top: 12px;
}

.form-group input,
.form-group select {
  padding: 10px;
  border: 1px solid rgba(66, 73, 82, 0.106);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: #333;
}

.form-group input::placeholder,
.form-group select option[value=""] {
  font-family: inherit;
  color: #bababa;
}

.phone,
.mobile,
.fromDate,
.toDate,
.birthDate {
  text-align: right;
}

select {
  padding-right: 40px;
  padding-left: 14px;
  direction: rtl;
}

.double-group {
  flex-direction: row;
  align-items: flex-end;
  gap: 15px;
}

.date-input {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.to-text {
  align-self: center;
  font-weight: bold;
  color: #555;
  font-size: 16px;
}

.form-group-button {
  padding: 14px;
  background-color: #4da05b;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  width: 270px;
  margin: auto;
}

button:hover {
  background-color: #159827;
}

.recaptcha {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.form-group button {
  font-family: inherit;
}

@media (max-width: 768px) {
  .form-pair {
    grid-template-columns: repeat(1,1fr);
  }

  .double-group {
    flex-direction: column;
  }

  .to-text {
    display: none;
  }
}

.submit-btn-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  flex-shrink: 1;
  height: 78px;
}