@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #222639;
  --white-color: #ffffff;
  --blue-color: #9ddafd;
  --light-blue-color: #63b3ed;
  --gray-color: #565a7c;
  --font-family: "Poppins", sans-serif;
  --bg-purple: #f8fafd;
  --black-color: #000000;
}

.thank_section {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 7.5em 0;
  font-size: 16px;
  & img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 1em;
  }
  & h1 {
    font-size: 3.625em;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto 0.9em;
    font-weight: 700;
  }
  & p {
    margin-bottom: 0;
    font-size: 1.33em;
    font-weight: 600;
    color: var(--blue-color);
    text-transform: uppercase;
  }
}

.bg-purple {
  background-color: var(--bg-purple);
}

/* Our Commitment Section */
.commitment_section {
  padding: 5em 8em;
  & h3 {
    font-size: 1.125em;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-blue-color);
    font-family: var(--font-family);
  }
  & h2 {
    font-size: 3em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.4em;
    font-family: var(--font-family);
  }
  & .commitment_box {
    text-align: center;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    & img {
      width: 75px;
      height: 75px;
      margin-bottom: 1.6em;
    }
    & h4 {
      font-size: 1.5em;
      font-weight: 700;
      color: var(--primary-color);
      font-family: var(--font-family);
      margin-bottom: 0.7em;
      line-height: 32px;
    }
    & p {
      font-size: 1em;
      font-weight: 400;
      color: var(--grey-color);
      opacity: 0.5;
      font-family: var(--font-family);
    }
  }
}

/* Funding Marketplace Section */
.funding_marketplace_section {
  padding: 5em 8em;
  & h2 {
    font-size: 3em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.4em;
    font-family: var(--font-family);
  }
  & h3 {
    font-size: 1.3em;
    font-weight: 400;
    color: var(--black-color);
    font-family: var(--font-family);
    margin-bottom: 1.7em;
    line-height: 30px;
  }
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
    & li {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 4em;
      margin-bottom: 2.2em;
      & img {
        width: 65px;
        height: 65px;
        object-fit: contain;
        margin-right: 1em;
      }
      & .title {
        font-size: 1.813em;
        font-weight: 700;
        color: var(--black-color);
        font-family: var(--font-family);
        margin-bottom: 0;
      }
      & .description {
        font-size: 1em;
        font-weight: 300;
        color: var(--black-color);
        font-family: var(--font-family);
        margin-bottom: 0;
      }
    }
  }
}

/* Rating Section Section */
.rating_section {
  padding: 3em 8em;
  background-color: #9ddafd;
  .rating_box {
    padding: 40px 5px;
    background-color: var(--primary-color);
    margin: 0 20px 0 0;
    text-align: center;
    color: var(--white-color);
    border-radius: 5px;
    & h2 {
      font-size: 3.25em;
      font-weight: 700;
      font-family: var(--font-family);
    }
    & h3 {
      font-size: 1.438em;
      font-weight: 300;
      font-family: var(--font-family);
      margin-bottom: 0;
    }
  }
}

/* CopyRight Section */
.copy_right_section {
  padding: 2em 0;
  text-align: center;
  p {
    margin-bottom: 0;
    font-size: 1em;
    font-weight: 400;
    font-family: var(--font-family);
  }
}

/* Media Queries */
@media (max-width: 1199px) {
  .commitment_section {
    padding: 3em 2em;
  }
  .funding_marketplace_section {
    padding: 3em 2em;
  }
  .rating_section {
    padding: 3em 2em;
  }
  .copy_right_section {
    padding: 2em 0;
  }
}

@media (max-width: 991px) {
  .commitment_section {
    .col-sm-6 {
      margin-bottom: 1.5em;
    }
    & .commitment_box {
      max-width: 100%;
    }
  }
  .rating_section {
    padding: 3em 0;
    & .rating_box {
      margin-bottom: 1em;
    }
  }
}
@media (max-width: 767px) {
  .thank_section {
    padding: 3em 0;
    & h1 {
      font-size: 2em;
    }
    & p {
      font-size: 1em;
    }
  }
  .commitment_section {
    padding: 3em 0;
    & h2 {
      font-size: 2em;
    }
  }
  .funding_marketplace_section {
    padding: 3em 0;
    & h2 {
      font-size: 2em;
    }
    & ul {
      & li {
        flex-direction: column;
        gap: 1em;
        justify-content: flex-end;
        align-items: flex-start;
        & .title {
          font-size: 1.5em;
        }
        & .description {
          font-size: 0.8em;
        }
      }
    }
  }
  .rating_section {
    padding: 3em 0;
    & .rating_box {
      margin-bottom: 1em;
    }
  }
  .copy_right_section {
    padding: 2em 0;
  }
}
