.hero {
    padding-top: 80px;
    background-size: cover;
    background-position: center;
    margin-top: -25px !important;
}
.container {
    max-width: 1440px;
    margin: auto;
    padding: 0 15px;
}
.hero-content {
    position: relative;
    max-width: 850px;
    min-height: 260px;
}
.hero-content-steps {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out;
}
.hero-content-steps.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}
.hero-content h2 {
    font-size: 60px !important;
    color: #fff !important;
    text-transform: uppercase;
}
.hero-content p {
    color: #fff;
    max-width: 540px;
    margin: 15px 0;
}
.btn {
    background: #195F3D;
    color: #fff;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 4px;
    text-decoration: none;
}
.steps {
    display: flex;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    max-width: 1052px;
}
.step {
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    border-right: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    width: 230px;
    justify-content: center;
}
.step.active {
    background: rgba(0,0,0,0.2);
    border-top: 2px solid #195F3D;
}
.step span {
    font-size: 32px;
    color: #fff;
}
.step p {
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
}
.step.button {
    width: 66px;
    justify-content: center;
}
@media (max-width: 668px) {
    .hero-content h2 {
         font-size: 30px; 
    }
    .steps { 
        flex-direction: column; 
    }
    .step.button.button-next {
    position: absolute;
    right: 0;
    }
    .step {
        width: 100%;
        justify-content: start;
    }
      
}
@media (max-width: 1024px) {
  .hero-content h2 {
        font-size: 30px !important;
    }
}