body {
    position: relative;
    min-height: 100vh;
    background-image: url('../images/bg.jpg');
    background-repeat: no-repeat;
    background-color: #fff;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Hind Siliguri', sans-serif;
}

body:after {
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.76);
    position: absolute;
    z-index: 1;
}

.logo {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

.overlay {
    position: relative;
    z-index: 2;
}

.needbtn,
.wantbtn {
    padding: 15px 40px !important;
    font-size: 20px !important;
    font-weight: 600 !important;
}

h1.text {
    font-size: 60px;
    margin-bottom: 60px;
    font-family: 'Galada', cursive;
}

@media(max-width: 767px){

    h1.text {
        font-size: 40px;
        margin-bottom: 60px;
    }

}

.submiting,
.contact-success,
.contact-danger {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-flow: column;
    display: none;
}

.submiting .spinner-border {
    width: 64px;
    height: 64px;
}

.contact-page-form button {
    background: transparent;
    border: 2px solid #5b39c9;
    color: #5b39c9;
}

.messageIcon {
    width: 64px;
    height: 64px;
    text-align: center;
    line-height: 56px;
    border: 4px solid;
    border-radius: 50%;
    font-size: 26px;
}
.alert-wrap {
    position: fixed;
    z-index: 9;
    top: 10px;
}
label {
    font-weight: 600;
}

input.parsley-success,
select.parsley-success,
textarea.parsley-success {
    color: #468847;
    background-color: #DFF0D8;
    border: 1px solid #D6E9C6;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
    color: #B94A48;
    background-color: #F2DEDE;
    border: 1px solid #EED3D7;
}

.parsley-errors-list {
    margin: 2px 0 3px;
    padding: 0;
    list-style-type: none;
    font-size: 0.9em;
    line-height: 0.9em;
    opacity: 0;
    color: #B94A48;

    transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
}

.parsley-errors-list.filled {
    opacity: 1;
}

.parsley-errors-list>li {
    font-size: 12px;
    list-style: none;
    color: #f1646c;
    margin-top: 5px;
}