.banner__content {
  position: absolute;
  top: 50%;
  left: 20%;
  color: #fff;
  padding: 0px 16px;
  text-align: center;
  transform: translate(-50%, -50%);
  width: 50%;
  z-index: 2;
}

.banner__content h1 {
  font-size: 20px;
  font-weight: 300;
  font-family: var(--f4);
  line-height: 0.8;
}

.banner__content h2 {
  font-size: 16px;
  line-height: 0.8;
  font-weight: 900;
  font-style: italic;
  padding-top: 10px;
  text-align: center;
}

.banner__poster {
  display: block;
  width: 100%;
  border-radius: 10px;
}

.banner__poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  z-index: 1;
}

.c-plan-f__discount.--oneLinText{
  font-size: 12px;
}

@media screen and (min-width: 768px) {

  .banner__content {
    display: block;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    padding: 0px 20px;
    text-align: left;
    line-height: 1.2;
  }

  .banner__content h1 {
    font-family: var(--f4);
    margin-bottom: 4px;
    font-size: 30px;
  }

  .banner__content h2 {
   text-align: start;
    line-height: 0.8;
    font-size: 30px;
  }


  .banner__poster {
    aspect-ratio: 1163 / 130;
  }

}
.banner {
  position: relative;
}

.banner__video--desktop{
  display:none;
}

.banner__video--mobile{
  display:block;
}

@media (min-width:768px){
  .banner__video--desktop{
    display:block;
  }
  .banner__video--mobile{
    display:none;
  }
}