.contact-page {
    overflow: hidden;
    background:  ;
}

.contact-page .info-box li .reply {
    border: 1px solid #f0f0f0;
    background: rgba(0, 0, 0, .008);
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 3px;
}

.contact-page .info-box li .reply>b {
    font-weight: inherit;
    padding: 5px 0;
    display: block;
    opacity: .8;
}
.contact-page .page-box{
    padding: 20px 0;
}
select, textarea, input[type=file], input[type=text], input[type=password], input[type=number], input[type=tel], input[type=email]{
    width: 100%;
    height: auto;
    border: none;
    background-color: #fff;
    border-radius: 0;
    padding: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e8e8e8;
}
.contact-page .form-box dl{
    margin-bottom: 20px;
}
.contact-page .form-box dl dt{
    display: none;
}
.contact-page .form-box dl dd span {
    display: block;
}

.contact-page .form-box dl dd span.captcha {
    position: relative;
}

.contact-page .form-box dl dd span.captcha i {
    position: absolute;
    top: 10px;
    right: 1px;
    bottom: 1px;
    border: 3px;
    padding: 5px;
    padding-bottom: 0;
}

.contact-page .form-box dl dd span.captcha img {
    display: block;
    max-height: 100%;
    cursor: pointer;
}

.contact-page .form-box button{
    z-index: 1;
    color: white;
    font-size: 14px;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    font-weight: 600;
    position: relative;
    border-radius: 5px;
    text-align: center;
    padding: 11px 110px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    border: 1px solid;
    background: #252525;
  }
  .contact-page .form-box button:after,
  .contact-page .form-box button:before {
    z-index: -1;
    content: "";
    -webkit-transition: 0.75s;
    -o-transition: 0.75s;
    transition: 0.75s;
    position: absolute;
    width: 0;
    height: 0;
    background: 0 0;
  }
  .contact-page .form-box button:before {
    left: 0;
    top: 0;
    border-bottom: 55px solid transparent;
    border-left: 350px solid rgb(252,107,0);
  }
  .contact-page .form-box button:after {
    right: 0;
    bottom: 0;
    border-top: 55px solid transparent;
    border-right: 350px solid rgb(252,107,0);
  }
  .contact-page .form-box button:hover:before {
    border-bottom: 0 solid transparent;
    border-left: 0 solid rgb(252,107,0);
  }
  .contact-page .form-box button:hover:after {
    border-top: 0 solid transparent;
    border-right: 0 solid rgb(252,107,0);
  }
.contact-page *::-webkit-input-placeholder {
    color: ;
    color: ;
}

.contact-page *::-moz-input-placeholder {
    color: ;
    color: ;
}

.contact-page *::-ms-input-placeholder {
    color: ;
    color: ;
}

@media(min-width:992px) {
    .contact-page .info-box li .reply {
        padding: 10px 12px;
    }
}

@media(max-width:991px) {
    .contact-page .info-box li .reply {
        padding: 5px 10px;
    }
    .contact-page .form-box button {
    font-size: 16px;
    }
}

@media(max-width:767px) {
    .contact-page .info-box li .reply {
        margin-top: 10px;
        margin-bottom: 5px;
    }
}