@media (min-width: 768px) {
  .sub__kv {
    width: 100%;
    margin-top: 110px;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    position: relative;
  }

  .sub__bg {
    grid-column: 1/2;
    grid-row: 1/2;
  }

  .sub__bg img {
    border-radius: 50px;
  }

  .sub__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: rgb(51, 51, 51);
    padding: 0px 120px;
    grid-column: 1/2;
    grid-row: 1/2;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
  }

  .sub__content-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 28px;
    font-weight: 600;
  }

  .sub__content-title {
    font-size: 40px;
    font-weight: bold;
    line-height: 80px;
    margin-bottom: 8px;
    color: #212121;
  }

  .sub__content-tag {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 48px;
  }

  .sub__content-btn {
    display: block;
    background-color: #FF6700;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 20px;
    border-radius: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: white;
    width: 460px;
    z-index: 10;
    position: relative;
  }

  .sub__content-btn:hover {
    background-color: #FF6700;
    color: white;
  }
}

@media (max-width: 767px) {
  .sub__kv {
    margin-top: 80px;
    border-radius: 1.25rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    /* margin-bottom: 30px; */
  }

  .sub__bg {
    grid-column: 1/2;
    grid-row: 1/2;
  }

    .sub__bg img {
    border-radius:30px ;
  }

  .sub__content {
    color: white;
    padding: 1.25rem 1.5rem;
    grid-column: 1/2;
    grid-row: 1/2;
    text-align: center;
  }



  .sub__content-text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
  }

  /* .sub__content-title {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 44px;
    margin-bottom: 0.5rem;
    color: #212121;
  } */

  .sub__content-title {
    position: absolute;
    top: 42%; 
    font-weight: bold;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #212121;
    font-size: 2.4rem;
}

  .sub__content-tag {
    font-size: 14px;
    line-height: 20px;
  }

  .sub__content-btn {
    display: none;
  }
}