.why-rope-access-container h2{
  
}
.why-rope-access {
    display: grid;
    gap: 30px;
    margin: 40px 0 50px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-rope-access .feature {
    display: flex;
    gap: 15px;
}
.why-rope-access .feature .icon { 
    flex-basis: 60px;
}
.why-rope-access .feature .content {
    flex: 1;
}
.why-rope-access .feature .title {
    font-size: 16px;
    font-weight: bold;
    color: #193F5F;
    margin-bottom: 5px;
}

.why-rope-access .feature .description {
    line-height: 22px;
}
body.widget-snippet .why-rope-access .feature, .fee .why-rope-access .feature{
  padding:10px;
}

@media only screen and (max-width:767px) {
.why-rope-access {  
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
}
 
