/*-------------------------- HomeFacts box --------------------------------*/
.homefacts {
  display: flex;
  padding: 24px 0 32px 0;
  justify-content: center;
  width: 100%;
  font-size: 18px;
  line-height: 21px;
  font-weight: 500;
}

.homefacts .col1,
.homefacts .col3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
}

.homefacts .col2 {
  width: 1px;
  background: var(--viridian-25);
}
.homefacts .text-lg{
  font-size: 48px;
}
@media (max-width:1024px) {
  .homefacts{
    flex-direction: column;
  }
  .homefacts .col2 {
    height: 1px;
    width: 100%;
    margin: 24px 0;
  }
}
/*-------------------------- Meet the mdt members box --------------------------------*/
.mdtmembers{
  width: 1160px;
}
.mdtmembers .flex-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 40px 0 0 0;
}
.mdtmembers .flex-wrapper .title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
}
@media (max-width:1024px) {
  .mdtmembers{
    width: 100%;
  }
  .mdtmembers h2{
    text-align: center;
    font-size: 22px !important;
  }
  .mdtmembers .flex-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .mdtmembers .flex-wrapper .title{
    margin: 16px 0;
  }

}