.header-section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #ffffff;
  min-height: 700px;
}
.header-section.header-short {
  min-height: 460px;
}
.header-section h1 {
  font-weight: 700;
  font-size: 60px;
  line-height: 1.5;
  margin-top: 30px;
}
.header-section h2 {
  font-weight: 300;
  font-size: 30px;
  margin-top: 30px;
}
.header-section p {
  font-size: 22px;
  font-weight: 300;
}
.header-section a {
  display: block;
  margin: 40px auto 0 auto;
  cursor: pointer;
  height: 55px;
  line-height: 55px;
  width: 100%;
  min-width: 200px;
  max-width: 300px;
  padding: 0;
  border-radius: 50px;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  border: none !important;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  background: #d72570;
  background: -webkit-gradient(linear, left top, right top, from(#d72570), to(#f44d29));
  background: linear-gradient(to right, #d72570 0%, #f44d29 100%);
}
.header-section a:hover, .header-section a:focus {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .header-section {
    min-height: auto !important;
    padding: 80px 0;
  }
  .header-section h1 {
    font-size: 40px;
    line-height: 1.2;
  }
  .header-section h2 {
    font-weight: 300;
    font-size: 23px;
    margin-top: 30px;
  }
  .header-section p {
    font-size: 16px;
  }
}