.bottom__content-box {
    display: flex;
    justify-content: space-around;
    margin: 50px 0px;
}

.bottom__content-list {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.bottom__content-item {
    width: 500px;
}

.item-inner {
    overflow: hidden;
    border: 1px solid #e9f0f7;
    border-radius: 5px;
    background-color: #fff;
}

.item-title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: #213abf;
    color: #fff;
    text-align: center;
}

.item-box {
    min-height: 110px;
    padding: 30px 40px;
}

.item {
    display: flex;
    margin-top: 10px;
    color: #555;
}

.item::before {
    content: "-";
    margin-right: 5px;
}

@media (max-width: 767px) {

    .item-box{
        padding: 10px;
    }

}