.bg-container-contact100 {
                    width: 100%;
                    height: 100% ;
                    background-size: cover;
                    background-repeat: no-repeat;
                    background-position: center;

                    position: fixed;
                    z-index: 1;
                    top: 0;
                    left: 0;
                  }

                  .bg-container-contact100::before {
                    content: "";
                    display: block;
                    position: absolute;
                    z-index: -11;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                    background-color: rgba(41,44,51,0.6);
                    pointer-events: none;
                  }

                  /*---------------------------------------------*/
                  .contact100-header {
                    width: 100%;
                    height: 80px;
                    border-bottom: 1px solid rgba(255,255,255,0.1);
                    padding: 10px 35px;
                  }

                 

                  .btn-show-contact100 {
                    font-family: Montserrat-Bold;
                    font-size: 12px;
                    color: #846add;
                    text-transform: uppercase;
                    letter-spacing: 1px;

                    display: block;
                    min-width: 160px;
                    height: 42px;
                    background-color: #fff;
                    border-radius: 21px;
                    -webkit-transition: all 0.4s;
                    -o-transition: all 0.4s;
                    -moz-transition: all 0.4s;
                    transition: all 0.4s;
                  }

                  .btn-show-contact100:hover {
                    color: #fff;
                    background-color: #846add;
                  }
                  .wrap-contact100 {
                    width: 100%;
                    background: #fff;
                    border-radius: 3px;
                    position: relative;
                  }

                  /*==================================================================
                  [ Title form ]*/
                  .contact100-form-title {
                    font-family: Montserrat-Bold;
                    font-size: 30px;
                    color: #fff;
                    line-height: 1.2;
                    text-transform: uppercase;

                    width: 100%;
                    min-height: 80px;
                    position: relative;
                    z-index: 1;
                    display: -webkit-box;
                    display: -webkit-flex;
                    display: -moz-box;
                    display: -ms-flexbox;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    background-repeat: no-repeat;
                    background-size: cover;
                    background-position: center;
                    border-top-left-radius: 3px;
                    border-top-right-radius: 3px;
                    overflow: hidden;
                    
                    padding: 30px 15px 30px 15px;
                  }

                  .contact100-form-title::before {
                    content: "";
                    display: block;
                    position: absolute;
                    z-index: -1;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                    background-color: rgb(236, 116, 4);
                  }


                  /*==================================================================
                  [ Form ]*/

                  .contact100-form {
                    width: 100%;
                    display: -webkit-box;
                    display: -webkit-flex;
                    display: -moz-box;
                    display: -ms-flexbox;
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: space-between;
                    padding: 40px 55px 48px 55px;
                  }


                  /*------------------------------------------------------------------
                  [ Input ]*/

                  .wrap-input100 {
                    width: 100%;
                    position: relative;
                    border: 1px solid #e6e6e6;
                    border-radius: 2px;
                    margin-bottom: 15px
                  }

                  .label-input100 {
                    font-size: 18px;
                    color: #999999;
                    display: -webkit-box;
                    display: -webkit-flex;
                    display: -moz-box;
                    display: -ms-flexbox;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    position: absolute;
                    width: 60px;
                    height: 100%;
                    top: 0;
                    left: 2px;
                  }

                  .label-input100.rs1 {
                    height: 60px;
                  }

                  .input100 {
                    display: block;
                    width: 100%;
                    background: transparent;
                    font-family: Montserrat-Regular;
                    font-size: 15px;
                    color: #333333;
                    line-height: 1.2;
                    padding: 0 25px 0 60px;
                  }

                  input.input100 {
                    height: 55px;
                  }

                  textarea.input100 {
                    min-height: 162px;
                    padding-top: 22px;
                    padding-bottom: 15px;
                  }

                  /*---------------------------------------------*/

                  .focus-input100 {
                    position: absolute;
                    display: block;
                    width: calc(100% + 2px);
                    height: calc(100% + 2px);
                    top: -1px;
                    left: -1px;
                    pointer-events: none;
                    border: 1px solid;
                    border-radius: 2px;
                    border-color: #846add;

                    visibility: hidden;
                    opacity: 0;

                    -webkit-transition: all 0.4s;
                    -o-transition: all 0.4s;
                    -moz-transition: all 0.4s;
                    transition: all 0.4s;

                    -webkit-transform: scaleX(1.1) scaleY(1.3);
                    -moz-transform: scaleX(1.1) scaleY(1.3);
                    -ms-transform: scaleX(1.1) scaleY(1.3);
                    -o-transform: scaleX(1.1) scaleY(1.3);
                    transform: scaleX(1.1) scaleY(1.3);
                  }

                  .input100:focus + .focus-input100 {
                    visibility: visible;
                    opacity: 1;

                    -webkit-transform: scale(1);
                    -moz-transform: scale(1);
                    -ms-transform: scale(1);
                    -o-transform: scale(1);
                    transform: scale(1);
                  }

                  .input100:focus + .focus-input100 + .label-input100 {
                    color: #846add;
                  }



                  /*------------------------------------------------------------------
                  [ Button ]*/
                  .container-contact100-form-btn {
                    width: 100%;
                    display: -webkit-box;
                    display: -webkit-flex;
                    display: -moz-box;
                    display: -ms-flexbox;
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: center;
                    padding-top: 17px;
                  }

                  .contact100-form-btn {
                    font-family: Montserrat-Bold;
                    font-size: 12px;
                    color: #fff;
                    line-height: 1.2;
                    text-transform: uppercase;

                    display: -webkit-box;
                    display: -webkit-flex;
                    display: -moz-box;
                    display: -ms-flexbox;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 0 20px;
                    min-width: 160px;
                    height: 42px;
                    border-radius: 21px;
                    background:#ec7404;

                    box-shadow: 0 10px 30px 0px rgba(132, 106, 221, 0.5);
                    -moz-box-shadow: 0 10px 30px 0px rgba(132, 106, 221, 0.5);
                    -webkit-box-shadow: 0 10px 30px 0px rgba(132, 106, 221, 0.5);
                    -o-box-shadow: 0 10px 30px 0px rgba(132, 106, 221, 0.5);
                    -ms-box-shadow: 0 10px 30px 0px rgba(132, 106, 221, 0.5);

                    -webkit-transition: all 0.4s;
                    -o-transition: all 0.4s;
                    -moz-transition: all 0.4s;
                    transition: all 0.4s;
                  }

                  .contact100-form-btn:hover {
                    background: #ec7404;
                    box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
                    -moz-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
                    -webkit-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
                    -o-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
                    -ms-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
                  }



                  /*------------------------------------------------------------------
                  [ Responsive ]*/

                  @media (max-width: 576px) {
                    .contact100-form {
                      padding: 40px 15px 48px 15px;
                    }

                    .input100 {
                      padding: 0 25px 0 40px;
                    }

                    .label-input100 {
                      width: 40px;
                    }
                  }

                  /*---------------------------------------------*/
                  @media (max-width: 576px) {
                    .btn-hide-validate {
                      right: 10px;
                    }
                   
                  }


                  .btn-hide-contact100 {
                    font-size: 30px;
                    color: #fff;
                    opacity: 0.6;
                    position: absolute;
                    right: 0;
                    top: -44px;

                    -webkit-transition: all 0.4s;
                    -o-transition: all 0.4s;
                    -moz-transition: all 0.4s;
                    transition: all 0.4s;
                  }

                  .btn-hide-contact100:hover {
                    opacity: 1;
                  }
                  
      
.demo{ background: #f8f8f8; }
.testimonial{
    margin: 0 20px 40px;
}
.testimonial .testimonial-content{
    padding: 35px 25px 35px 50px;
    margin-bottom: 35px;
    background: #f6fafe;
    border: 1px solid #f0f0f0;
    position: relative;
        height: 300px;
}
.testimonial .testimonial-content:after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #f6fafe;
    position: absolute;
    bottom: -10px;
    left: 22px;
    transform: rotate(45deg);
}
.testimonial-content .testimonial-icon{
    width: 50px;
    height: 45px;
    background: #ec7404;
    text-align: center;
    font-size: 22px;
    color: #fff;
    line-height: 42px;
    position: absolute;
    top: 37px;
    left: -19px;
}
.testimonial-content .testimonial-icon:before{
    content: "";
    border-bottom: 16px solid #ec7404;
    border-left: 18px solid transparent;
    position: absolute;
    top: -16px;
    left: 1px;
}
.testimonial .description{
    font-size: 15px;
    font-style: italic;
    color: #8a8a8a;
    line-height: 23px;
    margin: 0;
}
.testimonial .title{
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #525252;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}
.testimonial .post{
    display: block;
    font-size: 14px;
    color: #ff4242;
}
.owl-theme .owl-controls{
    margin-top: 20px;
}
.owl-theme .owl-controls .owl-page span{
    background: #ccc;
    opacity: 1;
    transition: all 0.4s ease 0s;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    background:#ec7404;
}
select.input100 {
    height: 55px;
}