.flex-main{
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  gap: 60px
}

.flex-container {
  display: flex;
  /* display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex; */
  
  flex-direction: row;
  /* -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row; */
  align-items: center;
  justify-content: center;
  
}

.row-reverse {
  flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -moz-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  
}


.list {
  font-size: 16px;
  text-align: justify;
  margin-left: 36px;
  margin-right: 36px;
  line-height: 1.5;
  font-family: customFont;
}

.list li:nth-child(n) {
  list-style-type: none;
  margin-bottom: 5px;
  margin-top: 5px;
}
.list li:nth-child(n)::before {
  content: "●";
  color: #0bd0d9;
  margin-right: 8px;
}

.title {
  font-size: 18px;
  text-align: justify;
  line-height: 1.5;
  font-family: customFont;
}

.list-nested {
  font-size: 16px;
  margin-left: 36px;
  margin-right: 36px;
  text-align: justify;
  line-height: 1.3;
  font-family: customFont;
}

.list-nested li:nth-child(n)::before {
  content: "▸";
  color: #0f6fc6;
  list-style-type: none;
  margin-right: 6px;
}

.li-content {
  font-size: 14px;
  margin-left: 58px;
  margin-right: 38px;
  text-align: justify;
  line-height: 1.3;
  font-family: customFont;
}




@media only screen and (max-width: 991px) {
  .flex-container {
    flex-direction: column-reverse;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
  }
  
  .list {
    text-align: left;
    margin-left: 0px;
    margin-right: 0px;
  }

  .list-nested {
    text-align: left;
    margin-left: 14px;
    margin-right: 14px;
    line-height: 1.5;
  }
  .li-content {
    margin-left: 24px;
    margin-right: 24px;
  }
  .list p {
    text-align: start;
  }
  .list li:nth-child(n) {
    margin-left: 10px;
  }
}
