.our_story_container {
  width: 80%;
  margin: 10rem auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7rem;
  align-items: center;
}

.story_txt_content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.story_txt_content > p {
  width: 90%;
  line-height: 2;
  color: #120c2b;
  font-weight: 400;
  font-size: 15px;
}

.story_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: none;
  outline: none;

  margin-top: 2rem;

  padding: 12px 24px;
  background-color: #1a1240;
  color: white;
  border-radius: 32px;
}

.story_img_wrapper img {
  width: 90%;
  /* height: 90%; */
}

@media (max-width: 1250px) {
  .story_img_wrapper img {
    width: 100%;
  }
  .story_txt_content > p {
    width: 100%;
  }
}

@media (max-width: 1130px) {
  .our_story_container {
    width: 90%;
    gap: 4rem;
  }
}

@media (max-width: 970px) {
  .our_story_container {
    width: 60%;
    gap: 6rem;

    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 810px) {
  .our_story_container {
    width: 70%;
  }
}

@media (max-width: 650px) {
  .our_story_container {
    width: 80%;
  }
}

@media (max-width: 570px) {
  .our_story_container {
    width: 90%;
  }
}

/* steps */
.work_flow {
  padding: 8rem 0;
}

.workflow_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}

.workflow_header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.workflow_header h1 {
  color: #0c081d;
  font-weight: 500;
  font-size: 34px;
}

.workflow_cards_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;

  width: 85%;
  margin: auto;
}
.workflow_card {
  display: flex;
  flex-direction: column;
  gap: 5rem;

  padding: 30px;
  border-radius: 30px;
  padding-bottom: 0;
}

.workflow_card > div > button {
  border: none;
  outline: none;
  padding: 8px 12px;
  border-radius: 10px;
}
.workflow_card > div > h2 {
  font-size: 28px;
  font-weight: 500;
  color: #120c2b;
}

.workflow_img_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;

  flex: 1;
}
.workflow_img_wrapper svg {
  width: 100%;
  height: 100%;
  /* align-self: flex-end; */

  /* position: absolute;
  bottom: 0; */
}

.flow_one {
  border: 1px solid #6bc1ec;
  background-color: #f0f9fd;
}
.flow_one button {
  color: #120c2b;
  background-color: #84ccef;
  margin-bottom: 1rem;
}

.flow_three {
  border: 1px solid #e2f8e4;
  background-color: #e2f8e4;
}
.flow_three button {
  color: #120c2b;
  background-color: #6fcf97;
  margin-bottom: 1rem;
}

.flow_two {
  border: 1px solid #fcd1a4;
  background-color: #fef4e9;
}
.flow_two button {
  color: white;
  background-color: #fcd1a4;
  margin-bottom: 1rem;
}

@media (max-width: 1250px) {
  .workflow_card > div > h2 {
    font-size: 20px;
  }
}

@media (max-width: 1030px) {
  .workflow_card > div > h2 {
    font-size: 17px;
  }
}

@media (max-width: 910px) {
  .workflow_card > div > h2 {
    font-size: 15px;
  }
}

@media (max-width: 850px) {
  .workflow_cards_wrapper {
    grid-template-columns: repeat(1, 1fr);
    width: 55%;
  }
}

@media (max-width: 650px) {
  .workflow_header h1 {
    font-size: 25px;
  }
  .workflow_container {
    gap: 3rem;
  }
}

@media (max-width: 550px) {
  .workflow_cards_wrapper {
    width: 65%;
  }
}

@media (max-width: 460px) {
  .workflow_cards_wrapper {
    width: 80%;
  }

  .workflow_header h1 {
    font-size: 20px;
  }

  .workflow_header p {
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  .workflow_cards_wrapper {
    width: 90%;
  }
}

/* mission_and_vission */
.mission_and_vission {
  background-color: #f0f9fd;
  padding: 8rem 0;
}
.mission_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 80%;
  margin: auto;
}
.mission_header {
  text-align: center;

  display: flex;
  flex-direction: column;
  gap: 0.7rem;

  margin-bottom: 4rem;
}
.mission_header p {
  font-weight: 400;
  color: #170d45;
  font-size: 15px;
}
.mission_header h1 {
  color: #111827;
  font-weight: 500;
  font-size: 4rem;
}

.mission_cards_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  width: 90%;

  margin: auto;
}
.mission_card {
  background-color: #6bc1ec;
  border-radius: 30px;

  position: relative;
  overflow: hidden;
}
.mission_card > img {
  width: 25rem;
  position: absolute;
  z-index: 2;
  margin: 2rem;
}
.vision_bg {
  right: 2rem;
  width: 30rem !important;
}

.mission_card_content_wrapper {
  position: inherit;
  z-index: 100;
  backdrop-filter: blur(5px);

  padding: 50px 30px;

  width: 100%;
  height: 100%;
}
.mission_card h1 {
  color: #120c2b;
  font-weight: 500;
  margin-bottom: 1rem;
}
.mission_card p {
  line-height: 2;
  color: #120c2b;
  font-weight: 400;
}

@media (max-width: 1250px) {
  .mission_cards_wrapper {
    width: 100%;
  }
}

@media (max-width: 1120px) {
  .mission_container {
    width: 90%;
  }
}

@media (max-width: 1050px) {
  .mission_cards_wrapper {
    gap: 2rem;
  }
}

@media (max-width: 980px) {
  .mission_cards_wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
    width: 70%;
  }
  .mission_header {
    margin-bottom: 2rem;
  }
}

@media (max-width: 850px) {
  .mission_cards_wrapper {
    width: 80%;
  }
}

@media (max-width: 750px) {
  .mission_cards_wrapper {
    width: 90%;
  }

  .mission_header h1 {
    font-size: 25px;
  }
}

@media (max-width: 620px) {
  .mission_cards_wrapper {
    width: 100%;
    gap: 3rem;
  }
}

@media (max-width: 470px) {
  .mission_container {
    width: 95%;
  }

  .mission_header h1 {
    font-size: 20px;
  }
  .mission_header p {
    font-size: 13px;
  }
}

/* stats_box_wrapper */
.stats_box_wrapper {
  width: 70%;

  margin: auto;
  margin-top: 8rem;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.stats_box {
  padding: 8rem;
  background-color: #f0f9fd;
  border-radius: 25px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;

  text-align: center;
}
.colored_stats_box {
  background-color: #6bc1ec;
}

@media (max-width: 1250px) {
  .stats_box_wrapper {
    width: 80%;
  }
}

@media (max-width: 1170px) {
  .stats_box_wrapper {
    width: 90%;
  }
}

@media (max-width: 1040px) {
  .stats_box {
    padding: 5rem;
  }
}

@media (max-width: 850px) {
  .stats_box_wrapper {
    grid-template-columns: repeat(1, 1fr);
    width: 40%;
  }
}

@media (max-width: 720px) {
  .stats_box_wrapper {
    width: 50%;
  }
  .stats_box {
    padding: 8rem 5rem;
  }
}

@media (max-width: 620px) {
  .stats_box_wrapper {
    width: 60%;
  }
}

@media (max-width: 510px) {
  .stats_box_wrapper {
    width: 70%;
  }
}

@media (max-width: 430px) {
  .stats_box_wrapper {
    width: 80%;
  }
}

@media (max-width: 370px) {
  .stats_box_wrapper {
    width: 90%;
  }
}

/* core_values */
.core_values {
  margin-top: 10rem;
  padding: 8rem 0;

  color: white;
  background-color: #170d45;
}

.core_values_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
.core_values_header {
  text-align: center;

  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.core_values_header h1 {
  font-weight: 500;
  color: #ffffff;
  font-size: 40px;
}
.core_value_cards_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 75%;
  gap: 3.5rem;
}
.core_value_card {
  background-color: #f5fcff;

  padding: 3rem;
  border-radius: 25px;
  text-align: center;
}
.core_value_img_wrapper svg {
  width: 100%;
}
.core_value_card h3 {
  color: #170d45;
}
.core_value_card p {
  color: #25272c;
  font-size: 14px;
  line-height: 2;
}

@media (max-width: 1300px) {
  .core_value_cards_wrapper {
    width: 85%;
  }
}

@media (max-width: 1200px) {
  .core_value_cards_wrapper {
    gap: 2rem;
  }
}

@media (max-width: 1130px) {
  .core_value_cards_wrapper {
    width: 90%;
  }
}

@media (max-width: 1050px) {
  .core_value_cards_wrapper {
    width: 50%;
    grid-template-columns: repeat(1, 1fr);
  }
  .core_values_header h1 {
    font-size: 30px;
  }
}

@media (max-width: 780px) {
  .core_value_cards_wrapper {
    width: 60%;
  }
}

@media (max-width: 630px) {
  .core_value_cards_wrapper {
    width: 70%;
  }
}

@media (max-width: 550px) {
  .core_values_header h1 {
    font-size: 25px;
  }

  .core_values_container {
    gap: 3rem;
  }
  .core_value_cards_wrapper {
    width: 80%;
  }
}

@media (max-width: 440px) {
  .core_values_header h1 {
    font-size: 20px;
  }
  .core_values_header p {
    font-size: 13px;
  }

  .core_value_cards_wrapper {
    width: 90%;
  }
}

/* our_customers */
.our_customers_container {
  width: 80%;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
  align-items: center;
  margin: auto;
  margin-top: 10rem;
}

.map_img_wrapper img {
  width: 90%;
}
.custmers_txt_content {
  /* width: 90%; */
}
.custmers_txt_content h1 {
  font-size: 40px;
}
.customer_list {
  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
  margin-left: 2rem;
}
.customer_list_item {
  display: flex;
  align-items: center;
  gap: 1rem;

  width: 80%;

  padding: 1.5rem 2rem;
  border: 1px solid #eae5ff;
  border-radius: 10px;
}
.customer_list_item small {
  line-height: 2;
  font-size: 14px;
}
.custmers_txt_content > p {
  width: 80%;
  font-size: 15px;
  line-height: 2;
}
.special_list svg {
  width: 7rem;
}

@media (max-width: 1250px) {
  .map_img_wrapper img {
    width: 100%;
  }
  .customer_list_item {
    width: 100%;
  }
  .custmers_txt_content > p {
    width: 100%;
  }
}

@media (max-width: 1130px) {
  .our_customers_container {
    width: 90%;
    gap: 4rem;
  }
}

@media (max-width: 970px) {
  .our_customers_container {
    width: 60%;
    gap: 6rem;

    display: flex;
    flex-direction: column-reverse;
  }
}

@media (max-width: 810px) {
  .our_customers_container {
    width: 70%;
  }
}

@media (max-width: 650px) {
  .our_customers_container {
    width: 80%;
  }
}

@media (max-width: 570px) {
  .our_customers_container {
    width: 90%;
  }
}

@media (max-width: 450px) {
  .customer_list {
    gap: 1rem;
  }
}
