body {
  font-family: Montserrat, sans-serif;
  color: #333;
  font-size: 14px;
  line-height: 20px;
}

.hero-section {
  padding-right: 10px;
  padding-left: 10px;
  background-color: #1f4037;
  background-image: -webkit-gradient(linear, left top, right top, from(#00b09b), to(#96c93d));
  background-image: linear-gradient(90deg, #00b09b, #96c93d);
  color: #fff;
}

.hero-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 120px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero-container {
  width: 100%;
  max-width: 650px;
}

.hero-h1 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 2.9em;
  line-height: 100%;
}

.hero-h2 {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 20px;
  border-radius: 4px;
  background-color: #1f4037;
  font-size: 1.5em;
  line-height: 100%;
  font-weight: 600;
}

.info-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.img {
  width: 200px;
  border: 1px solid #fff;
}

.info-text {
  margin-left: 20px;
}

.email-link {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
}

.text {
  display: block;
  margin-bottom: 10px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  text-decoration: none;
}

.text:hover {
  color: #1f4037;
  text-decoration: underline;
}

.text.sm {
  margin-bottom: 0px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.text.sm:hover {
  color: #1f4037;
  text-decoration: underline;
}

.sm-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.sm-icon {
  width: 20px;
  margin-right: 10px;
}

.h3 {
  font-size: 2.4em;
  line-height: 100%;
}

.p {
  font-size: 20px;
  line-height: 30px;
}

.preloader {
  display: block;
}

.preloader-wrapper {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #1f4037;
}

.img-preloader {
  width: 100%;
  max-width: 350px;
}

@media (max-width: 991px) {
  .hero-wrapper {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .hero-wrapper {
    min-height: auto;
  }
}

@media (max-width: 479px) {
  .hero-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .hero-h1 {
    font-size: 2.4em;
  }
  .info-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .img-wrapper {
    width: 100%;
    margin-bottom: 20px;
  }
  .info-text {
    width: 100%;
    margin-left: 0px;
  }
  .img-preloader {
    max-width: 200px;
  }
}

