/* Discover Opportunities  */
.discover-opportunity-container {
  padding: 50px 100px;
  display: flex;
  gap: 50px;
  margin-top: 50px;
}

/* What is Ranger Dream Big Raffle */
.what-is-img-wrapper {
  width: 30%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
}

.what-is-img-wrapper img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

/* Description */
.what-is-abt-wrapper {
  width: 70%;
}

.why-invest-head {
  font-size: 2rem;
  font-family: var(--primary-font);
  font-weight: 500;
  margin-bottom: 10px;
}

/* Revenue Glance */
.revenue-glance-container {
  margin-top: 20px;
}

.what-is-abt-wrapper p {
  font-family: var(--secondary-font);
  font-size: 1rem;
}

.Revenue-text-heading {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: var(--primary-font);
  margin-bottom: 10px;
}

.revenue-chart-wrapper {
  display: flex;
  gap: 10px;
  /* background-color: aqua; */
}

#chart-container {
  width: 300px;
  height: 300px;
  margin-top: 20px;
  /* background-color: yellow; */
}

.chart-model-des-wrapper {
  display: flex;
  gap: 50px;
  margin-top: 50px;
  font-family: var(--secondary-font);
}

/* INVESTMENT OPPORTUNITIES */

.investment-full-container {
  /* background-color: tomato; */
  padding: 50px 100px;
}

#investment-container {
  /* background-color: tomato; */
  display: flex;
  gap: 20px;
}

.investment-card-wrapper {
  background-color: thistle;
  background-color: #338833;
  border-radius: 12px;
  color: #fff;
  width: 35%;
  padding: 20px;
  transition: 0.2s all linear;
}

.investment-card-wrapper:hover {
  background-color: #0b720b;
  transition: 0.2s all linear;
}

.invest-card-icon {
  font-size: 2rem;
}

.investment-card-wrapper h3 {
  font-family: var(--primary-font);
  font-size: 1.3rem;
  margin-top: 10px;
}

.investment-card-wrapper p {
  font-family: var(--secondary-font);
  font-size: 1rem;
}

/* Expected ROI  */
.expected-roi-container {
  /* background-color: aqua; */
  margin-top: 20px;
}

.expected-roi-heading {
  font-size: 1rem;
  font-family: var(--primary-font);
  font-weight: 600;
}

.expected-roi-container p {
  font-family: var(--secondary-font);
  font-size: 1rem;
}

.pitch-cto-wrapper {
  /* background-color: yellow; */
  margin-top: 20px;
}

.pitch-cto-wrapper a {
  /* width: 200px; */
  /* height: 50px; */
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 15px 20px;
  background-color: #338833;
  border-radius: 8px;
  font-family: var(--primary-font);
  /* text-transform: uppercase; */
  border: none;
  color: #fff;
  gap: 10px;
}

/* Watch Our Pitch */
/* .watch-pitch-container {
  background-image: url("../Media/images/dream-big.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
} */

.pitch-overlay-wrapper {
  padding: 50px 100px;
  /* background-color: rgba(0, 0, 0, 0.733);
  backdrop-filter: blur(5px); */
}

.pitch-head-wrapper {
  /* background-color: blue; */
  font-family: var(--secondary-font);
}

.pitch-head-wrapper h2 {
  font-size: 2rem;
  color: white;
  color: #000;
  margin-bottom: 10px;
}

.pitch-head-wrapper span {
  color: #fff;
  color: #000;
}

.our-pitch-content-wrapper {
  margin-top: 20px;
  color: #fff;
  font-family: var(--secondary-font);
  /* background-color: yellow; */
  width: 50%;
}

@media only screen and (max-width: 897px) {
  .discover-opportunity-container {
    padding: 50px 20px;
    flex-direction: column;
  }

  .what-is-img-wrapper {
    width: 100%;
  }

  .what-is-abt-wrapper {
    width: 100%;
    /* background-color: yellow; */
  }

  .revenue-chart-wrapper {
    flex-direction: column-reverse;
  }

  .chart-model-des-wrapper {
    margin-top: 0;
  }

  /* Investment Opportunities */

  .investment-full-container {
    padding: 50px 20px;
  }

  #investment-container {
    flex-direction: column;
  }
  .investment-card-wrapper {
    width: 100%;
  }

  /* Watch Our Pitch */
  .pitch-overlay-wrapper {
    padding: 20px;
  }

  .pitch-flex-wrapper {
    flex-direction: column;
  }

  .our-pitch-content-wrapper {
    width: 100%;
  }

  .pitch-des-container {
    width: 100%;
  }
}
