.header {
  max-width: 1560px;
  width: 100%;


  background-color: #e60073;
  display: flex;

  margin: auto;

  align-items: center;
  justify-content: center;
  box-sizing: border-box;

  flex-wrap: wrap;

}

.header_container{
  width: 100%;
  background-color: #e60073;
  margin-bottom: 5px;
  box-shadow: 0 0 25px #0009;
  box-sizing: border-box;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.banner{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin: 0 auto;
  padding: 0 0 0 0.3rem;
}

.banner__logo{
  display: flex;
  color: white;
  font-size: 2.5rem;
  font-weight: 600;
  padding: 5px;
  text-decoration: none;
  text-align: center;
  align-items: center;
  margin: 0 auto;
}
.banner__logo .logo--img {
  max-width: 5rem;
  max-height: 5rem;
  display: flex;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 100%;

  box-sizing: border-box;
  align-items: center;
  margin: 0 auto;
  margin-right: 10px;

  box-shadow: 0 0 5px #0009;
}

@media (max-width:350px){
  .banner__logo .logo--title{
    font-size: 1rem;
  }
  .banner__logo .logo--img{
    width: 40px;
    height: 40px;
  }
}

@media (max-width:1180px){
  .banner__logo {
    font-size: 1.7rem;
  }

  .banner__logo .logo--img{
    max-width: 3rem;
    max-height: 3rem;
  }
}
