@font-face {
    font-family: "Tiempos";
    src: url(../tiemposheadlineweb-regular.html);
}

.hero_section{
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    background: url("../png/bg.png");
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 560px;
    align-items: center;
    justify-content: center;
}


.hero_title{
    color: #304d4a;
    margin: 0;
    font-weight: 600;
    font-family: "Tiempos";
    font-size: 40px;
}

.hero_actions{
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
}

@media (max-width: 768px){
    .hero_actions{
        display: flex;
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        margin-bottom: 40px;
    }
    .underhero{
        padding-top: 60px !important;
    }
}

.hero_description p{
    font-size: 22px;
}

.hero_btn{
    background: #fff;
    border: 2px solid #304d4a !important;
    color: #304d4a;
    padding: 10px 30px;
    border-radius: 30px !important;
    font-weight: 600;
    font-size: 18px;
    font-family: 'Times New Roman', Times, serif;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    min-width: 278px;
}



.hero_btn:hover{
    background: #f5cb8a;
    color: #304d4a;
}

.typewrite{
    color: #f7b246;
    font-size: 40px;
    font-weight: 600;
    font-family: "Tiempos";
}

.bottom_phrase{
    font-family: "Tiempos";
    font-weight: 300;
    line-height: 1.1666666667;
    letter-spacing: -0.0104166667em;
    margin-bottom: 2rem;
    font-size: x-large;
    margin-top: 150px;
}

.typewrite > .wrap::after {
    content: '|';
    animation: blink 0.7s infinite step-start;
  }
  
  @keyframes blink {
    50% { opacity: 0; }
  }

  .blured{
    height: 50px;
    filter: blur(11px);
    background: #f2f6f0;
    margin-top: -30px;
  }


  .separator{
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    width: 100%;
    top: -54px;
  }
  .separator hr{
    width: 100%;
    position: absolute;
    left: 0;
    height: 1.5px;
    border-color: transparent;
    background: linear-gradient(90deg, rgba(242,246,240,1) 0%, rgb(220 192 146) 50%, rgba(242,246,240,1) 100%);
  }
  .separator img{
    z-index: 999999;
  }

  .separator_bg{
    width: 100%;
    position: relative;
    background: #f2f6f0;
    padding: unset !important;
    
  }