.header {
  margin: 0;
  max-width: 100%;
  height: auto;

  background: url('../img/header_main_bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 3%;
}

@media (max-width: 1024px) {
  .header {
    height: 100%;
    background-size: cover;
  }

  .header__text p {
    font-size: 35px !important;
  }
  .nav{
    margin-top: 0 !important;
  }
  .nav__item{
    font-size: 25px !important;
  }
  .header__logo img{
    padding-top: 7% !important;
  }
}
@media (max-width: 480px) {
  .header {
    background-size: 100%;
  }
  .nav__item{
    font-size: 12px !important;
  }

  .header__text p {
    font-size: 18px !important;
  }
  .header__logo img{
    padding-top: 12% !important;
  }
}
.header__woman {
  z-index: 45;
  display: flex;
  justify-content: end;
}
.header__woman__logo {
  position: relative;
  padding: 5% 5% 0 0;
  max-width: 15%;
  height: auto;
}
.header__woman__logo img {
  width: 100%;
  height: auto;
}
.header__logo {

  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/header__ragged.png) no-repeat;
  background-size: cover;

}
.header__logo img {
  max-width: 40%;
  padding-top: 15%;
  
}

.header__text {
  display: flex;
  justify-content: center;
  background: #E50C3E;
}
.header__text p {
  font-family: Oswald;
  font-size: 75.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: #ffffff;
}
.container {
  max-width: 60%;
  margin: 0 auto;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  white-space: nowrap;
  text-transform: uppercase;
  background: #E50C3E;
}
.nav a{
  color: #ffffff;
}
.nav__item{
  font-size: 31.7px;

font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.02em;
padding: 8px 10px;
transition: .3s linear;

}
.nav__item:hover{
  color: #E50C3E;
  background-color: #ffed01;
  transition: .3s linear;
}