/*======================= GLOBAL TYPOGRAPHY =======================*/

h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
}

h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
}

h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
}

h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

h5 {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
}

h6 {
  /*font-size: 20px;
  font-weight: 400;
  line-height: 30px;*/
}

@media (max-width: 768px) {

  h1 {
    font-size: 35px;
    line-height: 40px;
  }

  h2 {
    font-size: 32px;
    line-height: 38px;
  }

  h3 {
    font-size: 24px;
    line-height: normal;
  }

  h4 {
    font-size: 18px;
    line-height: 24px;
  }

  h5 {
    font-size: 16px;
    line-height: 21px;
  }

  h6 {
    font-size: 18px;
    line-height: 26px;
  }

}

/*======================= GLOBAL TYPOGRAPHY end =======================*/
/*======================= GLOBAL CONTAINER =======================*/

.section-container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .section-container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .section-container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .section-container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .section-container {
    max-width: 1140px;
    padding-left: 0px;
  }
}

@media (min-width: 1400px) {
  .section-container {
    max-width: 1320px;
  }
}

@media (max-width: 576px) {
  .section-container {
    padding: 0 40px;
  }
}

/*======================= GLOBAL CONTAINER end =======================*/