I don't know how to use Bootstrap Grid classes combined with BEM. Especially I mean container, row and col- classes. I want to do this in the best semantic way too.
I found a question like that in: How to properly mix Bootstrap and BEM? but there was not a satisfactory answer there.
when the "header" is a block I should do like this?
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<header class="header">
<div class="container">
<div class="row justify-content-center">
<div class="col-xl-3">
<div class="header__logo">...</div>
</div>
<div class="col-xl-3">
<div class="header__logo">...</div>
</div>
</div>
</div>
</header>
this looks like a lot of unnecessary nesting