Exclude product information section from fullscreen page width

Hi there I have a code in my base.css file for make the page widh of the website full. Here is the code-

.page-width {
  width: 100% !important;
  max-width: 100% !important;
}

I need to know that how can I exclude the product information section of the product page from this property.

https://www.valcoure.store/

pass - kothavara

Thank You

@AnSrSi do you mean this section?

Yes

@AnSrSi how do you want it? reduce its width?

As I said i have made the page width for my website 100%, But i don’t want that property for this section ie i want to make this section back to the default width or reduce the width

@AnSrSi try this css and check

product-info .page-width {
    width: 60% !important;
    max-width: 60% !important;
}

Thank You @suyash1 ,

Its working.