
  /**HIS CSS**/
.his_products_main {
    display: flex;
    flex-wrap: wrap;
}
.his_product {
    flex: 33.33%;
    max-width: 33.33%;
    padding: 0 15px;
}
.his_product h2 {
    font-size: 16px;
    color: #79b0d7;
    margin-bottom: 10px;
}
.his_product .his_product_inner {
    display: flex;
    flex-wrap: wrap;
    background-color: #f2f2f2;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}
.hp_image {
    flex: 50%;
    max-width: 50%;
    border-right: 1px solid #ddd;
    cursor: pointer;
    position: relative;
}
.zoom-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
}
.hp_image img {
    width: 100%;
    height: 100% !important;
}
.hp_content {
    flex: 50%;
    max-width: 50%;
    padding: 15px;
    position: relative;
}
.hp_attr span:first-child {
    font-weight: 600;
}
.hp_attr span {
    display: block;
    font-size: 14px;
    text-transform: capitalize;
}
.hp_enq {
    margin-top: 15px;
    position: absolute;
    bottom: 10px;
}
.hp_enq_btn {
    padding: 3px 10px;
    color: #fff;
    background-color: #9acc69;
    border-color: #9acc69;
    outline: none;
    transition: 0.5s all ease;
}
.hp_enq_btn:hover, 
.hp_enq_btn:focus {
    background-color: #7bab4c;
    border-color: #7bab4c;
    outline: none !important;
    color: #fff;
}
.submit_enq {
    padding: 10px 30px;
}
h2.ch-term_title {
    max-width: 100%;
    flex: 100%;
    padding: 10px 15px;
    background-color: #2b8ed1;
    color: #fff;
    font-size: 24px;
}
.term_desc {
    display: flex;
    flex-wrap: wrap;
}
.term_desc p {
    flex: 50%;
    max-width: 50%;
    padding: 0 30px 0 0;
}
.term_filter {
    flex: 50%;
    max-width: 50%;
    padding: 15px;
    background-color: #f2f2f2;
    align-self: center;
}
.product_cat_filter, 
.product_cat_filter:focus {
    border-color: #ddd;
    color: #222;
}
.enq-form {
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0, 0.9);
    transition: 0.5s all ease;
}
.enq-form-inner {
    background-color: #ffffff;
    width: 100%;
    max-width: 50%;
    margin: 0 auto;
    padding: 50px;
    position: relative;
}
.enq-form .enq-title {
    margin: 0 0 20px;
    line-height: 1;
    position: relative;
    font-size: 18px;
}
.product-enq .form-group {
    margin-bottom: 15px;
}
.product-enq .form-group label {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}
.product-enq .form-control, .product-enq textarea {
    height: 40px;
    border-color: #e0e0e0 !important;
    padding: 10px 15px 13px;
    line-height: 1;
    color: #5d5555;
    background-color: #f5f5f5;
    outline: 0;
}
.product-enq textarea {
    resize: none;
    height: 80px;
}
/* The Close Button */
.close-enq {
  color: #222;
  position: absolute;
  top: 0px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close-enq:hover,
.close-enq:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}
.submit-enq-group .success {
    color: #9acc69;
    font-size: 18px;
}
.submit-enq-group .error {
    color: red;
    font-weight: bold;
    font-size: 18px;
}
.submit_enq.active::before {
    content: "\f110";
    position: absolute;
    left: 25%;
    font-family: fontAwesome;
    color: #000;
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}
.form-group .error {
    color: #ff0000;
}
#enq_state {
    background-color: #f5f5f5;
    border-color: #e0e0e0;
    padding: 8px;
}
.enq-form::-webkit-scrollbar {
  width: 0px;
}

@media (max-width: 1000px){
    .his_product {
        flex: 50%;
        max-width: 50%;
    }
    .enq-form-inner {
        max-width: 70%;
    }
}
    
@media (max-width: 767px){
    .term_desc p {
        flex: 100%;
        max-width: 100%;
        padding: 0;
        text-align: center;
    }
    .term_filter {
        flex: 100%;
        max-width: 100%;
    }
    .his_product {
        flex: 100%;
        max-width: 100%;
    }
    .enq-form-inner {
        max-width: 90%;
    }
}