.service-prop-strip {
    margin:0 auto;
    max-width:1500px;
    background:rgb(232, 242, 251);
}
.service-prop__list {
    display:grid;
    grid-template-columns: 1fr;
    padding: 10px 20px;
    margin: 0 auto;
}
.service-prop__list-item {
    position:relative;
}
.service-prop__copy {
    font-family: Oswald, Oswald-fallback, Oswald-fallback-android, sans-serif;
    text-transform:uppercase;
    color: rgb(10, 34, 62);
    font-size:18px;
    font-weight: 600;
    padding-left:20px;
    margin: 15px 0;
}
.service-prop__link {
    display:grid;
    grid-template-columns: 50px auto;
    align-items: center;
    text-decoration: none;
}
@media all and (min-width:1259px) {
    .service-prop__link {
        grid-template-columns: 20% auto;
    }
    .service-prop__copy {
        padding-left:0;
    }
}

@media all and (max-width:340px) {
    .service-prop__copy {
        padding-left:10px;
    }
}

.service-prop__link:hover,
.service-prop__link:focus {
    text-decoration:underline;
    color: #000;
}
.service-prop__svg {
    justify-self: center;
    width: 100%;
    max-width: 30px;
}

@media all and (min-width:900px) {
    .service-prop__list {
        grid-template-columns: repeat(3, 1fr);
    }
    .service-prop__copy {
        font-size: 22px;
    }
    .service-prop__list-item:not(:last-child, :nth-child(3n))::after {
        background-color: rgb(10, 34, 62);
        content: "";
        height: 40px;
        position: absolute;
        right: 0px;
        width: 2px;
        bottom: 15px;
    }
    .service-prop__list-item {
        padding-left: 10%;
    }
}

@media all and (max-width:1300px) and (min-width:900px) {
    .service-prop__copy {
        font-size:1.6vw;
        padding-left:3%;
    }
    .service-prop__list-item:not(:last-child, :nth-child(3n))::after {
        bottom: 18%;
    }
}