.site-content{
    background-color: #fff;
}
.site-content .title{
    text-align: center;
}
.site-content .title h1{
    color: #00cc99;
    font-weight: bold;
}
.content-part1{
    width: 80%;
    margin: auto;
    color: #000;
}
.content-part1 ul{
    display: flex;
    flex-direction: column;
}
.content-part1 ul li{
    display: flex;
    align-items: center;
    flex-direction: row;
    background-color: #d8dde4;
    border-radius: 20px;
    margin: 10px 0;
    padding: 1rem 0;
    justify-content: space-around;
}
.content-part1 ul li:nth-child(even){
    background-color: #d9f3ee;
}
.content-part1 ul li h3{
    color: #00cc99;
}
.content-part1 ul li:nth-child(even) h3{
    color: #002554;
}
.content-part1 ul li img{
    width: 250px;
}

.content-part1 ul li .info{
    width: 70%;
}
@media only screen and (min-width: 768px) {
  .site-header.featured-image {
    min-height: auto;
  }
}
@media only screen and (max-width: 768px) {
.site-header.featured-image{
    min-height: auto;
}
.content-part1{
    width: 95%;
}
.content-part1 ul{
    padding: 0;
}
.content-part1 ul li{
    display: flex;
    flex-direction: column;
}
.content-part1 ul li img{
    width: 180px;
}
.content-part1 ul li .info{
    width: 90%;
}
}