
.business_area_box > div:nth-child(even) >div.text_area{
  align-items: flex-end;
}
.business_area_box > div:nth-child(even) >div.text_area> h2,
.business_area_box > div:nth-child(even) >div.text_area> p{
  text-align: right;
}
.business_area_box > div:nth-child(even) >div.text_area>ul{
  align-items: flex-end;
}

.business_area_box > div:nth-child(odd) >div.text_area {
  align-items: flex-start;
}
.business_area_box > div:nth-child(odd) >div.text_area> h2,
.business_area_box > div:nth-child(odd) >div.text_area> p{
  text-align: left;
}
.business_area_box > div:nth-child(odd) >div.text_area> ul{
  align-items: flex-start;
}

.business_area_box>div:last-child >div.text_area{
  background-position: bottom;
}

.business_area_box{
  clear: both;
  overflow: hidden;
  width: 80%;
  margin: 20px 10%;
  padding-top: 30px;
}

h1{
  color: #000;
  display: inline-block;
  margin: 20px 10%;
}

.text_area{
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 50px 25px 0 25px;
  margin: -10px 0;
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
  min-height: 500px;
}
.text_area p {
  width: 100%;
  color: #000;
  word-break: break-all;
  font-size: 1rem;
  line-height: 1.5rem;
}
.text_area h2{
  display: inline-block;
  color: #e58426;
  border-bottom: 1px solid #e58426;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.text_area ul {
  /* margin-inline-start: 20px; */
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 20px;
  word-break: break-all;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.text_area ul li {
  text-align: justify;
  margin-top: 5px;
  margin-bottom: 5px;
  color: #e58426;
  font-size: 1rem;
}
.text_area ul li span{
  color: #000;
}
/* .text_area ul li::before{
  content: "\2022";
  color: #e58426;
  font-weight: bold;
  display: inline-block;
  width: 1em;
} */


@media only screen and (max-width: 576px){
  
  .business_area_box> div:nth-child(odd) .text_area{
    background-position: left;
    background-size: cover;
  }
  .business_area_box> div:nth-child(even) .text_area{
    background-position: right;
    background-size: cover;
  }
}
@media only screen and (min-width: 576px) and (max-width: 991px){
  .text_area p{
    width: 50%;
  }
  .text_area ul{
    width: 40%;
  }
}
/* .darker_footer {
  background: #e58426;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;
} */