/*--form css--*/
.formbg{
    display: block;
    width: 100%;
    margin: 0;
    padding: 80px 0px;
    background: #172430;
    position: relative;
}
.formbg::after{
    content: '';
    display: block;
    clear: both;
}
.formbg .maintitle,
.formbg .shrtdesc p{
    color: #fff;
}
.formbg .formtitle{
    display: block;
    font-size: 1.4rem;
    line-height: 1.2;
    color: #000;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}
.formbg .formtitle span{
    color: #D92439;
}
.formbg label{
    position: relative;
    bottom: -16px;
    color: #fff;
    font-size: 16px;
    line-height: 1em;
    font-weight: 300;
    margin-left: 10px;
    padding-right: 12px;
    padding-left: 10px;
    background-color: #172430;
    z-index: 3;
}
.formbg label span{
    color: #ee2618;
}
.input-outer {
    position: relative;
}
.formbg input[type='text']{
    position: relative;
    display: block;
    width: 100%;
    height: 52px;
    line-height: 32px;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 15px;
    margin-bottom: 0;
    border-radius: 5px;
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.7);
    background-color: #172430;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-bottom: 0.5rem;
}
.formbg select{
    position: relative;
    display: block;
    width: 100%;
    height: 52px;
    line-height: 32px;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 30px;
    margin-bottom: 0;
    border-radius: 5px;
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.7);
    background-color: #172430;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    margin-bottom: 0.5rem;
}
.formbg textarea{
    position: relative;
    display: block;
    width: 100%;
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 30px;
    margin-bottom: 0;
    border-radius: 5px;
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.7);
    background-color: #172430;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.formbg input[type='submit']{
    display: inline-block;
    color: #fff;
    background: #b60101;
    padding: 17px 60px;
    border-radius: 45px;
    display: inline-block;
    font-size: 18px;
    text-shadow: none;
    border:none;
    margin-top: 2rem;
    font-family: "Roboto Condensed", Arial, Helvetica,sans-serif;
}
/*--form css end--*/