.image_list_pill{
    background: rgba(0, 115, 185, 1);
    padding: 3rem 0;
}
.image_list_pill_title{
    margin-bottom: 5rem;
}
.image_list_pill .image_list_pill_title h2,
.image_list_pill .image_list_pill_title h3,
.image_list_pill .image_list_pill_title h4,
.image_list_pill .image_list_pill_title h5,
.image_list_pill .image_list_pill_title h6{
    color: #fff;
    font-size: 60px;
    width: 60vw;
    justify-self: center;
}
.image_list_pill .image_list_pill_title h2 strong,
.image_list_pill .image_list_pill_title h3 strong,
.image_list_pill .image_list_pill_title h4 strong,
.image_list_pill .image_list_pill_title h5 strong,
.image_list_pill .image_list_pill_title h6 strong{
    color:rgba(252, 222, 0, 1)!important;
}
.image_list_pill_layout{
    display:flex;
}
.image_list_pill_layout_img,.image_list_pill_layout_content{
    flex:1;
}
.image_list_pill_layout_content{
    padding: 1rem 0;
}
.image_list_pill_layout_content ul{
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    margin: 0;
    padding: .5rem;
}
.image_list_pill_layout_content li {
    width: 100%;
    background: rgba(0, 99, 159, 1);
    color: #fff;
    font-weight: 700;
    padding: 1.5rem 1rem;
    font-size: 1.3rem;
    border-radius: 16px;
    position: relative;
}
.image_list_pill_layout_content li::before {
    content: '';
    position: absolute;
    right: 1rem;
    width: 13px;
    height: 31px;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='31' viewBox='0 0 13 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.0216675 17.427L9.57343 0.867676L7.80093 14.1151H12.9707L3.46819 30.6743L5.48686 17.427H0.0216675Z' fill='%23F7E30A'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transform: rotate(25deg);
}
@media(orientation:portrait){
    .image_list_pill_layout{
        flex-direction:column;
    }
    .image_list_pill .image_list_pill_title h2,
    .image_list_pill .image_list_pill_title h3,
    .image_list_pill .image_list_pill_title h4,
    .image_list_pill .image_list_pill_title h5,
    .image_list_pill .image_list_pill_title h6{
        width: unset;
    }
    .image_list_pill_layout_content ul{
        gap: 1rem;
        padding:0;
    }
}