.section_box {
  background: var(--dark-1);
  border: 1px solid rgba(67, 223, 196, 0.42);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.07);
  padding: 20px;
}
.ltr {
  direction: ltr !important;
}
.text_left {
  text-align: left !important;
}
/************************************************************ Start methodology description section  */
section.methodology_desc .section_box p {
  color: var(--transWhite);
  padding: 15px 100px;
  text-align: center;
  font-size: 18px;
}

section.methodology_desc {
  padding: 80px 0 50px;

}

section.methodology_desc .case_card {
  z-index: 2;
  position: -webkit-sticky;
  position: sticky;
}

section.methodology_desc .case_card .card_header {
  padding: 20px;
  background-color: var(--green-accent-lighter);
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(var(--green-accent-lighter)),
    to(var(--blue-accent-lighter))
  );
  background-image: linear-gradient(-90deg, var(--green-accent-lighter), var(--blue-accent-lighter));
  text-align: center;
  color: #fff;
  border-radius: 5px;
  position: relative;
  -webkit-box-shadow: 0 15px 25px 0px rgba(98, 206, 220, 0.2);
  box-shadow: 0 15px 25px 0px rgba(98, 206, 220, 0.2);
  position: relative;
  z-index: 2;
}

section.methodology_desc .case_card .card_header::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/backgrounds/main-case-header.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

section.methodology_desc .case_card p.card_text {
  font-size: 22px;
  color: var(--text-white);
  text-align: center;
  margin: 90px 0 50px;
}

/************************************************************ End methodology description section  */

/************************************************************ Start methodology tree section  */

section.methodology_tree {
  padding: 50px 0 150px;
  position: relative;
}
section.methodology_tree img.background{
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;

}

section.methodology_tree p.tree_desc {
  font-size: 20px;
  text-align: center;
  width: 80%;
  margin: 80px auto 0;
  line-height: 1.8;
  color: var(--transWhite);
}
section.methodology_tree .section_box {
  color: var(--text-white);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
section.methodology_tree .horizontal_holder {
  position: relative;
}
section.methodology_tree .horizontal_holder::before {
  content: "";
    width: 82%;
    height: 0;
    border: 1px solid var(--green-accent-lighter);
    position: absolute;
    bottom: -52px;
    left: 9%;
}
section.methodology_tree .section_box.tree_head {
  width: 270px;
  margin: 0 auto 100px;

}
section.methodology_tree .section_box.tree_head:after{
  content: "";
  width: 0;
  height: 100px;
  border: 1px solid var(--green-accent-lighter);
  position: absolute;
  bottom: -101px;
  left: calc(50% - 1px);
}
section.methodology_tree .section_box.tree_head h3:first-of-type {
  margin-bottom: 15px;
}
section.methodology_tree .section_box.tree_leaf {
  min-height: 115px;
  
}

section.methodology_tree .section_box.tree_leaf:before {
  content: "";
  width: 0;
  height: 50px;
  border: 1px solid var(--green-accent-lighter);
  position: absolute;
  top: -50px;
  left: calc(50% - 1px);
}


/************************************************************ End methodology tree section  */

/************************************************************ Start case table section  */

section.metrics {
  padding: 60px 0;
}
section.metrics  .metrics_title{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
section.metrics  .metrics_title img {
  margin-left: 10px;
}
section.metrics  .metrics_title h5 {
  color: var(--text-white)
}
section.metrics .metrics_header {
  background-color: var(--dark-2);
    color: #fff;
    font-size: 20px;
    text-align: center;
    position: relative;
    padding: 10px 20px;
    margin-bottom: 6px;
}

section.metrics .metrics_header:before{
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 2px;
  background-color: var(--green-accent-lighter);
  border-radius: 10px;
  box-shadow: 3px 0 10px 0px var(--green-accent-lighter);
}

section.metrics .metrics_header:after{
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 2px;
  background-color: var(--green-accent-lighter);
  border-radius: 10px;
  box-shadow: -3px 0 10px 0px var(--green-accent-lighter);
}
section.metrics .section_box {
  height: 100%;
}
section.metrics .section_box p {
  color: var(--transWhite);
  text-align: right;
  
}
section.metrics .section_box.title {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.metrics .section_box.title p {
    text-align: center;
    color: var(--text-white);

}

section.metrics  .row_holder{
  margin: 2px 25px
}

section.metrics  .summary {
  margin: 20px 0;
}
section.metrics  .summary_title {
  color: var(--green-accent-lighter);
  margin-bottom: 15px;
}
section.metrics  .summary_list  {
  list-style-type: none;
  padding-right: 0;
}
section.metrics  ul.summary_list  li {
  display: inline-block;
  margin-left: 20px;
  color: var(--text-white);
}
/************************************************************ End case table section  */
footer {
  margin-top: 100px;
}

/***************************************** Start Media */

/*Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
  section.methodology_desc .case_card p.card_text {
    font-size: 20px;
    margin: 60px 0 80px;
  }
  section.methodology_tree .section_box.tree_head {
    width: 250px;
    
  }
  section.methodology_tree .section_box.tree_head h3 {
    font-size: 26px;
  }
  section.methodology_tree .section_box.tree_leaf {
    padding: 8px;
  }
}

/*Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
  section.methodology_desc .section_box p {
    padding: 0;
    font-size: 16px;
  }
  section.methodology_tree .section_box.tree_head:after,
  section.methodology_tree .horizontal_holder::before,
  section.methodology_tree .section_box.tree_leaf:before   {
    display: none;
  }
  section.methodology_tree .section_box.tree_leaf {
    margin-bottom: 15px;
  }
  section.methodology_tree .section_box.tree_head {
    margin-bottom: 80px;
  }
  section.metrics .metrics_header {
    padding: 10px 20px 5px;
  }
  section.metrics .metrics_header h5 {
    font-size: 18px;
  }
  section.metrics .section_box p {
    font-size: 14px;
  }
}

/*Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
  section.metrics .metrics_header h5 {
    font-size: 16px;
}
section.metrics .metrics_header {
  padding: 10px 20px 0px;
}
}

/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
  section.metrics .row_holder {
    margin: 2px 25px 15px;
}
section.metrics .metrics_header {
  padding: 5px 20px;
}
section.metrics .metrics_header h5 {
  margin: 0;
}
section.metrics ul.summary_list li {
  margin-bottom: 10px;
}
}
@media (max-width: 476px) {
}

@media (max-width: 380px) {
}

/****************************************** End Media **/
