section#sunstainable { 
  margin-top: 300px;
}
section#sunstainable .wrap {
  
  width: calc(100% - 500px);
  display: flex;
  flex-direction: column;
}
section#sunstainable .wrap h3 {  
  grid-column: 1;
  grid-row: 1;
}
section#sunstainable .wrap >p {  
  grid-column: 1;
  grid-row: 2;
  padding-top: 50px;
}
section#sunstainable .wrap >a {
  grid-column: 1;
  grid-row: 3;
  padding-top: 50px;
}
section#sunstainable .wrap ul { 
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid #ccc;
}
section#sunstainable .wrap ul li {
  grid-column: 3;
}
section#sunstainable .wrap ul li:nth-of-type(2){
  grid-column: 4;
}
section#sunstainable .wrap ul li:nth-of-type(3){
  grid-column: 5;
}
section#sunstainable .wrap ul li a {
  text-align: end;
  padding: 0 10px;
  font-size: 20px;
  font-weight: bold;
  transition: 0.5s;
}
section#sunstainable .wrap ul li a::before{
  content: "Environmental";
  display: block;
  width: 100%;
  margin-bottom: 5px;
  color: #999;
}
section#sunstainable .wrap ul li a.border::before{
  border-bottom: 2px solid;
}
section#sunstainable .wrap ul li:nth-child(3) a::before{
  content: "Social";
}
section#sunstainable .wrap ul li:nth-child(4) a::before{
  content: "Governance";
}
section#sunstainable .wrap ul li a::after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
}
section#sunstainable .wrap ul li a span { 
  display: block;
}
section#sunstainable .wrap ul li a p {
  
}
section#sunstainable .wrap img{
  grid-column: 3;
  grid-row: 2 / span 5;
  height: 100%;
  width: 100%;
}
section#sunstainable .wrap div{
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto 1fr;
  justify-content: space-between;
  padding: 30px 0;
}
section#sunstainable .wrap div::after{
  content: ""; 
  display: inline-block;
  width: 900px;
  height: 600px;
  background: url(../img/esg1.png) no-repeat center /contain;
  grid-column: 2;
  grid-row: 1 / span 2;
}
section#sunstainable .wrap div:nth-of-type(2)::after{
  background: url(../img/esg2.png) no-repeat center /contain;
}
section#sunstainable .wrap div:nth-of-type(3)::after{
  background: url(../img/esg3.png) no-repeat center /contain;
}
section#sunstainable .wrap div p{ 
  grid-column: 1;
  margin-bottom: 100px;
  font-size: 20px;
  line-height: 1.5;
}

section#sunstainable .wrap div a{
  grid-column: 1;
  grid-row: 2;
  align-self: flex-start;
  display: block;
  justify-self: left;
  padding: 20px 30px;
  background-color: #f8f8f8;
  border-radius: 30px;
}