.hero {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  margin-bottom: 0px;
}
.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero .hero-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding: 0 0 60px 0;
}
.hero .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.hero .content h1 {
  font-size: 80px;
  -ms-flex-item-align: center;
      align-self: center;
  line-height: 1.1em;
}
.hero .content p {
  font-size: 18px;
  font-weight: 500;
  max-width: 500px;
  -ms-flex-item-align: center;
      align-self: center;
  text-align: center;
  font-family: "Axiforma";
}
.hero .hero-cta {
  position: absolute;
  bottom: 10%;
  left: 10%;
  z-index: 3;
  max-width: 400px;
}
@media (max-width: 768px) {
  .hero .hero-cta {
    bottom: 40px;
    left: 20px;
    max-width: calc(100% - 40px);
  }
}
.hero .hero-cta .cta-text {
  margin-bottom: 20px;
}
.hero .hero-cta .cta-text p {
  font-size: 18px;
  line-height: 1.4em;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  .hero .hero-cta .cta-text p {
    font-size: 16px;
  }
}
.hero .hero-cta .btn {
  height: 48px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 43px;
}
.hero .hero-cta .btn .phone-icon {
  width: 43px;
  height: 43px;
  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;
}