/* For mobile devices (up to 767px) */
@media only screen and (max-width: 767px) {
  /* Your mobile styles here */
  /* For example: */
  .head-title {
    font-size: 1rem;
    font-weight: 800;
  }
  .sub-title {
    font-size: 1.2rem;
    font-weight: 100;
    padding: 0px 0;
    margin: 0%;
  }
  .text_bg {
    width: 800px;
    position: relative;
    top: 0;
    left: 0;
    transform: skew(-10deg);
  }
  .banner_text {
    width: 100%;
    margin-left: 10px;
    margin-top: 420px;
    padding-top: 5px;
    background-color: var(--primary-color);
    padding-bottom: 43px;
  }
  .banner_text h2 {
    font-size: 2rem;
  }
}
/* For tablet devices (768px to 1023px) */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  /* Your tablet styles here */
  /* For example: */
  .head-title {
    font-size: 2rem;
    font-weight: 800;
  }
  .sub-title {
    font-size: 1.5rem;
    font-weight: 100;
    padding: 20px 0;
    margin: 0%;
  }
  .text_bg {
    width: 800px;
    position: relative;
    top: 0;
    left: 0;
    transform: skew(-10deg);
  }
  .banner_text {
    margin-left: 10px;
    margin-top: 420px;
    padding-top: 40px;
    background-color: var(--primary-color);
    padding-bottom: 29px;
  }
}/*# sourceMappingURL=responsive.css.map */