.jumbo-content{
    min-width: 25%;
    border-radius: 50%;
    padding: 17px 19px;
    margin-right: 34px;
    margin: 0 auto;
    justify-content: center;
    flex: 1;
    display: flex;
}

.jumbo-icon{
    max-width: 69px;
    max-height: 69px;
}

.custom-list-wrapper-vertical{
    display: flex;
    flex-direction: column;
}
.custom-slot-wrapper-vertical{
    display: flex;
    flex: 1;
}

.custom-list-wrapper-horizontal{
    display: flex;
    
}
.custom-slot-wrapper-horizontal{
  flex: 1;
  display: flex;
  flex-direction: column;

}
.custom-slot-wrapper-horizontal .jumbo-content.h1{
    margin-bottom: 0;
    height: 82px;
}
.custom-slot-wrapper-vertical .custom-list-content{
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
    flex: 20;
}
.custom-list-content p, .custom-list-content span{
    margin-bottom: 0; 
}

.custom-list-content{
    text-align: center;
    margin: 0 auto;
    width: 80%;
    flex: 1;
}

@media screen and (min-width: 992px){
    .custom-list-wrapper-vertical{
       max-width: 40%;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px){
    .custom-list-wrapper-vertical{
       max-width: 60%;
    }
}

@media screen and (max-width: 767px){
    .custom-list-wrapper-vertical{
       width: 350px;
       margin: 0 auto;
    }
    .custom-slot-wrapper-vertical{
        display: grid;
        grid-auto-flow: column;
        grid-template-columns: 40% 60%;
    }
    
    .custom-slot-wrapper-horizontal .jumbo-content.h1{
        margin-bottom: 0;
        height: 60px;
    }
    .custom-list-wrapper-horizontal{
        flex-direction: column;
        
    }

    .jumbo-content.icon-holder{
        height: 68px;
    }
}