.rts-section.section-style-two {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.rts-section__two {
    max-width: 510px;
}

.rts-section__two .title {
    font-weight: 700;
    color: #2d3c58;
    display: block;
    line-height: 1.3;
    margin-bottom: 25px;
    margin-top: -10px;
}

.w-300 {
    max-width: 300px;
}

.w-400 {
    max-width: 400px;
}

.w-500 {
    max-width: 500px;
}

.w-600 {
    max-width: 600px;
}

.rts-section .rts-section-description p {
    margin-bottom: 0;
}

.card-feature {
    background: #F4F9FF;
    border-radius: 10px;
    padding: 35px;
    transition: all .4s ease;
    position: relative;
    z-index: 1;
}
@media screen and (min-width: 992px) and (max-width: 1140px) {
    .card-feature {
        padding: 35px 15px;
    }
}
@media screen and (min-width: 768px) and (max-width: 855px) {
    .card-feature {
        padding: 35px 20px;
    }
}
.card-feature:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: linear-gradient(180deg, #0774FF 0%, #033AA7 100%);
    opacity: 0;
    transition: all .4s ease;
    border-radius: inherit;
    z-index: -1;
}
.card-feature:hover {
    color: #fff;
}
.card-feature:hover::before {
    opacity: 1;
}
.card-feature:hover .card-feature__single--icon {
    background: #0755F0;
}
.card-feature:hover .card-feature__single--icon svg path {
    fill: #fff;
}
.card-feature:hover .card-feature__single--title {
    color: #fff;
}
.card-feature:hover .card-feature__single--description {
    color: #fff;
}
.card-feature__single--icon {
    height: 80px;
    width: 80px;
    background: #EAF1FF;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 30px;
    transition: all .4s ease;
}
.card-feature__single--icon svg path {
    fill: #2D3C58;
    transition: all .4s ease;
}
.card-feature__single--title {
    font-size: 19px;
    font-weight: 700;
    color: #2D3C58;
    transition: all .4s ease;
    margin-bottom: 15px;
}
@media screen and (min-width: 992px) and (max-width: 1140px) {
    .card-feature__single--title {
        font-size: 18px;
    }
}
@media screen and (min-width: 768px) and (max-width: 855px) {
    .card-feature__single--title {
        font-size: 18px;
    }
}
.card-feature__single--description {
    font-weight: 400;
    color: #4C5671;
    margin-bottom: 0;
    transition: all .4s ease;
}