.ready-to-build-section {
    position: relative;
    margin: 0;
    padding: 120px 0;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.ready-to-build-section .content-box {
    max-width: 670px;
    margin: 0 auto;
    text-align: center;
}

section.ready-to-build-section:before {
    content: "";
    display: block;
    background-color: var(--black);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.8;
    z-index: -1;
}
.ready-to-build-section .content-box h2{
    color: var(--white);
}
.ready-to-build-section .content-box p {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.cta-features span {
    color: var(--white);
    font-size: 14px;
    line-height: 20px;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 50px;
    justify-content: center;
}

.cta-features span:not(:last-child) {
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid var(--white);
}
@media only screen and (max-width:1199px){
    .ready-to-build-section {
        padding: 80px 0;
    }
}
@media only screen and (max-width:991px){
    .ready-to-build-section {
        padding: 60px 0;
    }
}
@media only screen and (max-width:767px){
    .ready-to-build-section {
        padding: 40px 0;
    }
    .cta-features {
        display: block;
    }
    .cta-features span:not(:last-child) {
        padding-right: 0;
        margin-right: 0;
        border-right: 0;
        margin-bottom: 15px;
    }
    .cta-features span {
        display: block;
    }
}