
/*
====================================
[ CSS TABLE CONTENT ]
------------------------------------


-------------------------------------
[ END CSS TABLE CONTENT ]
=====================================

/* ================ BASIC ================== */
body{
    font-size: 16px;
    line-height:27px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color:#fff;
}
p{
 margin-bottom: 0px;
}
a,
a:hover,
a:focus,
button,
button:focus,
input,
textarea{
    text-decoration: none !important;
    outline: none !important;
    -webkit-box-shadow:none !important;
            box-shadow:none !important;
}
ul{
    list-style-type:none;
    margin:0;
    padding:0;
}
img{
    width: 100%;
    height: auto;
}body,html{
    height: 100%
}
.hero-page{
    height: 100%;
    background-position: center center;
    background-size: cover;
}
.hero-page {
    position: relative;
    z-index: 1;
}
.hero-page:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #332c21;
    opacity: .65;
    z-index: -1;
}
.form-area .form-control {
    background: rgba(158, 155, 150, .90);
    border: none;
    line-height: 38px;
    padding: 6px 20px;
    color: #fff;
}
.form-group p {
    margin-bottom: 5px;
}
.text-area p {
    margin-bottom: 5px;
}
.hero-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.hero-content {
    margin-bottom: 25px;
}
.form-area p span {
    color: #ffc061;
    margin-bottom: 13px;
    display: inline-block;
    line-height: 26px;
}

.form-area textarea {
    height: 412px;
}
.form-area input[type=submit] {
    border: none;
    width: 165px;
    line-height: 50px;
    background: #FFC061;
    cursor: pointer;
    color: #67502d;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 20px;
    transition: .4s;
}
.form-area input[type=submit]:hover{
    background: #68645C;
    color: #B9B9B9;
}
.text-area-desktop {
    display: none;
}


/*responsive*/
/* XL Device :1200px. */
@media (min-width: 1200px) and (max-width: 1500px) {
.hero-page {
    background-position: 100%;
}
.hero-content{
    width: 83%;
}
}

/* LG Device :992px. */
@media (min-width: 992px) and (max-width: 1200px) {
/*md device*/
.hero-page{
    background-position: 100%;
}

}

/* MD Device :768px. */
@media (min-width: 768px) and (max-width: 991px) {
.hero-page {
    background-position: 100%;
    height: auto;
    padding: 80px 0px;
}

}
/* Extra small Device. */
@media (max-width: 767px) {
    .containr{
        width: 300px;
    }
.homepage-wrap {
    height: auto;
    padding: 80px 0px 50px 0px;
    background-position: 64% top;
}
.hero-page {
    height: auto;
    padding: 80px 0px;
    background-position: 95%;
}
.hero-content h2 {
    font-size: 27px;
    margin-bottom: 30px;
}
.form-area p span {
    margin-bottom: 30px;
}
.form-area textarea{
    height: 200px;
    margin-bottom: 35px;
}
.text-area-mobile {
    display: none;
}
.text-area-desktop {
    display: block;
    padding-right: 0px;
    padding-left: 0px;
}


}
 
/* SM Small Device :550px. */
@media only screen and (min-width: 576px) and (max-width: 767px) {
 .container{
    width: 450px;
 }
}