.clothes__collection-banner {
  height: 550px;
  background-color: #012555;
  background-image: url("./pattern.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 100px 0;
  color: var(--light-milk);
  font-family: var(--main-font1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.clothes__collection-banner h2 {
  padding-inline: 20px;
  font-size: 40px;
  margin-bottom: 30px;
  text-align: center;
}

@media only screen and (max-width: 992px) {
  .clothes__collection-banner {
    height: 350px;
  }
  .clothes__collection-banner h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 552px) {
  .clothes__collection-banner {
    height: 250px;
    padding: 0 20px;
  }
  .clothes__collection-banner h2 {
    font-size: 24px;
  }
}
