
.hero-element {
    text-align: center;
}

.hero-badge {
    border: 2px solid #ee7203;
    border-radius: 1em;
    color: #ee7203;

    display: inline;
    padding: 0.4rem 1.5rem;
    font-size: 1.2rem;
}

.hero-content {
    /* width: 70%; */
    margin: 2rem auto;
}
.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
}
.hero-content h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.hero-link .btn {
    background: #ee7203;
    border: 2px solid #ee7203;
    padding: .3rem 1.2rem;
}
.hero-link .btn:hover {
    background: transparent;
    border: 2px solid #ee7203;
}

@media(min-width: 769px) and (max-width: 1025px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media(min-width: 592px) and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
}

@media(max-width: 591px) {
  .hero-content h1 {
    font-size: 2.3rem !important;
    line-height: 1;
    margin-bottom: 1.5rem;
  }
  .hero-content {
    width: 90%;
  }
}