.h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
  color: var(--navy);
  padding-bottom: 10px;
}

.h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 34px;
  color: var(--navy);
  padding-bottom: 10px;
}

.h4 {
  font-weight: 600;
  font-size: 19px;
  line-height: 22px;
  color: var(--navy);
}

a {
  text-decoration: none;
  color: var(--mid_blue);
}

.desc {
  font-size: 19px;
  line-height: 22px;
  color: var(--mid_grey);
  padding-bottom: 20px;
}

@media only screen and (max-width: 992px) {
 .h2 {
    font-size: 36px;
    line-height: 40px;
    padding-bottom: 10px;
  }
  .h3 {
    font-size: 28px;
    line-height: 32px;
    padding-bottom: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .h2 {
    font-size: 30px;
    line-height: 34px;
    padding-bottom: 10px;
  }
  .h3{
    font-size: 24px;
    line-height: 28px;
    padding-bottom: 10px;
  }
}