
.features .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.features .feature {
    flex: 1 1 45%;
    aspect-ratio: 786 / 990;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 1rem 2em;
    box-sizing: border-box;
    text-align: left;
    border-radius: 20px;
    color: white;
}

.features .feature h3 {
    font-size: 26px;
    line-height: 35px;
}

.features .feature ul li {
    width: 90%;
    margin: 1em 0em;
    font-size: 18px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
}

.features .feature ul li.alerts {
    position: relative;
    left: -10px;
}

.features .feature ul li.voice {
    position: relative;
    left: 9px;
}

.features .feature ul li img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.video .wrap {
    margin-top: 2em;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.video .wrap div {
    width: 30%;
    position: relative;
}

.video .wrap div p {
    margin-top: 0;
    text-align: left;
    font-size: 16px;
}

.video .wrap div a {
    display: block;
    position: relative;
}

.video .wrap a:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-image: url("/wp-content/themes/angelsense/images/dark-player.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    width: 45px;
    height: 45px;
}