.technology_page {
  padding-top: 15rem;
}

.techlist_section {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
      grid-template-areas: "technologyOne  technologyThree" "technologyTwo  technologyThree ";
  overflow: hidden;
}
.techlist_section .tech_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.techlist_section .tech_one {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  background-color: #32b069;
  grid-area: technologyOne;
  color: var(--white);
  padding-left: 22%;
  padding-right: 6%;
}
.techlist_section .tech_one h3 {
  color: var(--white);
}
.techlist_section .tech_two {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: technologyTwo;
  padding-left: 22%;
  padding-right: 6%;
}
.techlist_section .tech_three {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  background-color: #24252a;
  grid-area: technologyThree;
  color: var(--white);
  padding-right: 22%;
  padding-left: 6%;
}
.techlist_section .tech_three h3 {
  color: var(--white);
}
.techlist_section .tech_container {
  padding: 8rem 0;
}
.techlist_section h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 5rem;
}

@media (max-width: 769.99px) {
  .technology_page {
    padding-top: 15rem !important;
  }

  .techlist_section {
        grid-template-areas: "technologyOne" "technologyTwo" " technologyThree ";
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 2fr;
    grid-template-columns: 2fr;
  }
  .techlist_section .tech_one {
    padding-left: 6%;
  }
  .techlist_section .tech_two {
    padding-left: 6%;
  }
  .techlist_section .tech_three {
    padding-right: 6%;
  }
  .techlist_section .tech_three:after {
    top: 27rem;
    right: -28rem;
  }
  .techlist_section .tech_three:hover:after {
    top: 9rem;
    right: -6rem;
  }
  .techlist_section .tech_container {
    padding: 5rem 0;
  }

  .techlist_section .tech_one {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .techlist_section .tech_two {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .techlist_section .tech_three {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
}
@media (min-width: 767px) and (max-width: 991.99px) {
  .technology_page {
    padding-top: 15rem !important;
  }

  .techlist_section {
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }
  .techlist_section .tech_one {
    padding-left: 12%;
  }
  .techlist_section .tech_two {
    padding-left: 12%;
  }
  .techlist_section .tech_three {
    padding-right: 12%;
  }
  .techlist_section .tech_container {
    padding: 7rem 0;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .techlist_section {
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }
  .techlist_section .tech_container {
    padding: 7rem 0;
  }
}