How to adjust white boxes in Turbo Seoul Theme's testimonial slider?

Hey guys, how would I get the white boxes in the second picture to match the first? Specifically, spreading to 100% of the width and the text not being cut-off. Thanks!

site: https://mathias-dev-test.myshopify.com/

pass: saycew

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >styles.css and paste this at the bottom of the file:
.test-bar__item.test-border.testimonial-slider {
height: 150px;
width: 50%;
border: 1px solid #e8e8e8;
border-radius: 25px;
background-color: #fff;
padding: 2%;
padding-top: 2%;
margin: 0 10px !important;
}

Thanks Pallavi. That’s helped a lot with the aesthetics. I’m still trying to make it extend to the width of the page, rather than container it’s in, and can’t seem to find which CSS rule is blocking this at the moment.