.bottom__content-image {
    display: flex;
    justify-content: space-around;
}

.img__item{
    flex: 1;
    text-align: center;
}

.img__item p{
    margin-top: 30px;
    margin-bottom: 10px;
}

.bottom__box{
    display: flex;
    flex-wrap: wrap;
}

.box__item:first-child {
    flex: 7;
  }
  
.box__item:last-child {
    flex: 3;
  }

.list {
    list-style-position: inside;
}

.list > li{
    list-style-type: number;
    color: #213abf;
    padding-bottom: 20px;
    padding-left: 10px;
    line-height: 1;
}

.sub-list > li {
    text-indent: 15px; 
    padding-bottom: 20px;
}

.sub-list > li::before {
    content: '•';   
    font-size: 1rem;
    padding-right: 5px;
}

@media (max-width: 767px) {

    .bottom__content-image{
        flex-direction: column;
    }
    
    .bottom__content-image img{
        width: 100%;
    }

}