/* hero */
section#hero {
  height: 700px;
  position: relative;
}
.herotext h1 {
  font-size: 80px;
  color: var(--white);
  font-weight: 300;
}
.herotext .btn-primary:hover {
  color: var(--white);
  border-color: var(--white);
}
.btn-primary:hover span.btn-icon svg path {
  stroke: var(--white);
}
section#hero::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  height: 60px;
  width: 100px;
  background: #f5f5f5;
}
section#hero::after {
  position: absolute;
  content: "";
  bottom: -38px;
  right: 0;
  height: 76px;
  width: 64px;
  background: var(--primary);
}

@media (max-width: 992px) {
  /* hero */
  .herotext h1 {
    font-size: 55px;
  }
}

@media (max-width: 576px) {
  /* hero */
  .herotext h1 {
    font-size: 38px;
    line-height: 44px;
  }
  section#hero {
    height: 600px;
  }
}
