There is a nested element with a .company-title-wrap drop-down list, which must be set to position: fixed; and at the same time it should occupy 100% of the width of the parent block. At the same time, the parent unit does not occupy 100% of the width of the browser window (bootstrap col-md-8 grid).
If you set the nested block width:100%; then it stretches to the full width of the browser window. If you do not set the width to 100%, it is compressed.
.company-title-wrap { background: #fff; padding: 5px; font-size: 16px; border-bottom: 1px solid #c2c2c2; text-align: center; position:fixed; width:100%; } What are the ways to fix the block and ask it the width of 100% of the parent block?
javascriptsize of the desired window and assign them. But it is not clear why you need it, and why you use fixed blocks like this - Vasily Barbashev