.sub-brand-header{
  overflow: hidden;
}
.sub-brand-header__content{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 700px;
  justify-content: center;
  align-items: center;
}
.sub-brand-header__title{
  color: var(--primary);
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}
.sub-brand-header__content {
  display: flex;
  flex-wrap: wrap;
  width: 100%; 
  height: 100%;
  justify-content: center;
  align-items: center;
}
.sub-brand-header__title span {
  font-weight: 400;
  letter-spacing: 0.26em;
  margin-left: 10px;
}
.sub-brand-header__image {
  clip-path: ellipse(59% 87% at 59% 50%);
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1599px){
  .sub-brand-header__content{
    min-height: 640px;
  }
}
@media screen and (max-width: 767px){
  .sub-brand-header__content{
    min-height: 300px;
  }
  .sub-brand-header__image {
    clip-path: ellipse(115% 100% at 50% 100%);
    min-height: 400px;
  }
}