Помогите не могу накинуть фон на навигацию

html{
    box-sizing: border-box;
}
*, *::before, *::after{
    box-sizing: inherit;
}

body{
  font-family: 'Montserrat';
  font-style: normal;
  font-size: 15px;
  line-height: 1.2;
  font-weight: normal;
  color: #FFFFFF;
}

.wrapper {
  max-width: 1170px;
  margin: 0 auto;
}

/* Навігація та лого ПОЧАТОК */

.header__wrapper{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 56px;
}
.header__list{
  display: flex;
  flex-wrap: wrap;
}
.header__item{
  margin-right: 108px;
}
.header__item:last-child{
  margin-right: 0;
}
.header__link{
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  text-decoration: none;
}
.header__link:hover, .header__link:focus, .header__link:active{
  opacity: .75;
}
.header__tel{
  color: #FFF;
font-family: Montserrat;
font-size: 15px;
font-style: normal;
font-weight: 800;
line-height: normal;
margin-left: 45px;
text-decoration: none;
}

/* Навігація та лого ЗАКІНЧЕННЯ */

/* Інтро ПОЧАТОК */

.intro{
  height: 100vh;
  background: url(../img/intro_bg.jpg) no-repeat center;
  background-size: cover;
}