@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
}

/* heading size  */
.hading_size {
  font-size: 50px;
  font-weight: 700;
  line-height: 55px;
  text-transform: uppercase;
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .hading_size {
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 15px;
  }
}

/* paragraph size  */
.paragraph_size {
  font-size: 38px;
  font-weight: 400;
  line-height: 48px;
}
@media (max-width: 768px) {
  .paragraph_size {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }
}
.paragraph_size2 {
  font-size: 28px;
  font-weight: 400;
  line-height: 38px;
}
@media (max-width: 768px) {
  .paragraph_size2 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }
}
