.home.page .header-form-wrapper{
    margin: 0 auto;
}
.title_subtitle_holder{
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}
.header-form-wrapper{
    max-width: 700px;
    position: relative;
    padding-top: 35px;
}
/* .header-form-wrapper *{ outline: 1px dotted silver } */
.header-form{
    border-radius: 15px; 
    border: 1px solid rgba(255,255,255,.3);
    padding: 10px;
}
.header-form-wrapper.loading:before{
    overflow: hidden;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(39, 47, 56, 0.4) url(./img/loading1.gif) no-repeat center center;
    background-size: 45px;
    border-radius: 15px; 
    z-index: 89;
}
.header-form-title {
    margin-top: -35px;
}
.header-form-title h3{
    display: inline-block;
    background-color: #272F38;
    border-radius: 10px 10px 0 0;
    padding: 4px 20px;
    font-size: 18px;
}
.header-form form{
    font-family: 'Open Sans';
}
textarea,
.header-form input:not([type="submit"]){
    background-color: transparent;
    width: 100% !important;
    box-sizing: border-box;
    padding: 7px 0 5px 0;
    border: 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(0,0,0,.2);
    outline: 0;
    font-family: 'Open Sans';
}   
.header-form textarea{
    height: 30px;
    display: block;
    margin-bottom: 0;
}
.header-form label{
    color: #272F38;
    text-align: left;
    font-weight: bold;
    font-size: 12px;
    line-height: 12px;
    margin-bottom: -1px !important;
    display: block;
}
.header-form-row{
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}
.home.page .header-form-row:nth-child(2){
    border-radius: 12px 12px 0 0;
}
.header-form-row:nth-child(2){
    border-radius: 0 12px 0 0;
    overflow: hidden;
}
.header-form-row:nth-child(3){
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}
.header-form-input-wrapper{
    background-color: #fff;
    padding: 10px 10px 12px 50px !important;
    flex-grow: 1;
    text-align: left !important;
    position: relative;
}
.header-form-input-wrapper span{
    color: #272F38;
    position:absolute;
    bottom: 10px;
    left: 15px;
    font-size: 23px;
}
.mobile-icon{
    font-size: 32px;
}
.header-form-submit-wrapper{
    display: flex;
    background-color: rgba(119, 147, 36, 1);
    color: #fff;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-weight: bold;
    position: relative;
}
.header-form-submit-wrapper:hover{
    background-color: #8fb325;
}
.header-form-submit-wrapper input{
    cursor: pointer;
    background: transparent;
    border: 0;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

@media only screen and (max-width: 1010px){
    .header-form-input-wrapper{
        padding-left: 30px !important;
        padding-right: 8px !important;
    }
    .header-form-input-wrapper span{
        top: 2px;
        bottom: initial;
        left: 10px;
        font-size: 13px;
    }
    .mobile-icon{
        font-size: 19px;
    }
    .header-form-submit-wrapper span{
        font-size: 13px;
    }
}
@media only screen and (max-width: 768px){
    .title_subtitle_holder{
        display: table-cell !important;
    }
    .home.page .header-form-wrapper{
        padding-top: 40px;
    }

    /* OVERRIDES */
    .title_outer .has_background.title .title_holder, .title_outer .has_fixed_background.title .title_holder, .title_outer.with_image .title .title_holder{
        position: static;
        top: initial;
    }
    .title_subtitle_holder_inner{
        padding: 50px 0 25px;
        text-align: center;
    }
}
@media only screen and (max-width: 670px){
    .header-form-row{
        flex-wrap: wrap;
    }
    .header-form textarea{
        height: 80px;
    }
    .header-form-submit-wrapper{
        width: 100%;
    }
}