.section1 {
    text-align: center;
}

.section1 p:last-of-type {
    margin: 0;
}

.section2 .row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.section2 {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#222), color-stop(#0f0), to(#222));
    background-image: -o-linear-gradient(top, #222, #0f0, #222);
    background-image: linear-gradient(to bottom, #222, #0f0, #222);
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.section2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(rgba(0, 0, 0, .6)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0), rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
    z-index: -1
}

.section2 .card {
    border-radius: 20px;
    padding: 20px 40px;
    -webkit-box-shadow: 0 0 5px 5px rgba(255, 255, 255, .3);
    box-shadow: 0 0 5px 5px rgba(255, 255, 255, .3);
    -webkit-transition: -webkit-box-shadow .3s;
    transition: -webkit-box-shadow .3s;
    -o-transition: box-shadow .3s;
    transition: box-shadow .3s;
    transition: box-shadow .3s, -webkit-box-shadow .3s;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(rgba(255, 255, 255, .8)));
    background-image: -o-linear-gradient(top, #fff, rgba(255, 255, 255, .8));
    background-image: linear-gradient(to bottom, #fff, rgba(255, 255, 255, .8));
    border: 2px solid #000
}

.section2 .card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.section2 .card h3 {
    text-align: center;
}

.section2 .card p {
    text-align: justify
}

.section2 .card ul {
    margin: 0;
    list-style: none;
    padding: 0 20px;
}

.section2 .card li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.section2 .card li span:first-of-type::before {
    content: "-";
    margin-right: 10px;
}

@media(max-width: 1399px) {
    .section2 .col:not(:last-of-type) {
        margin-bottom: 32px;
    }
}

@media(max-width: 575px) {
    .section2 .card ul {
        padding: 0;
        font-size: .9rem
    }
}