* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --light-green: rgb(1, 123, 66);
    --dark-green: rgb(0, 131, 0);
    --darker-green: rgb(20, 54, 20);
    --black-green: #55a630;
    --blue-green: #2a9d8f;
    --white: white;
    --extra-light: #f9f9f9;
    --darkest-green: rgb(26, 41, 26);
    --blue: #346bae;
    --light-blue: rgba(0, 162, 255, 0.075);
    --light-gray: rgba(131, 131, 131, 0.2);
    --tomato: tomato;
    --shadow: rgba(0, 0, 0, 0.17);
    --sky: rgb(0, 179, 185);
    --p-font-color: rgb(58, 58, 58);
    --footer-p-color: #8893b9;
    --footer-h-color: #031b4e;
    --footer-bg: #f6faff;
}


body {
   
    overflow-x: hidden;

   /* font-family: 'Poppins', sans-serif;*/
    color:#000!important;
    font-size:14px !important;

}
table
{
    width:95%;
      margin-bottom: 24px;

}
tr,td
{
    padding: 10px;
}
.all-title1 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* align-items: center; */
    margin-bottom: 5%;
}

.about-us-text li  
{
  margin:0 0 10px 0;
}

.mt-40 {
    margin-top: 40px;
}
.mb-0
{
margin-bottom: 0px!important;
}
.p-0
{
padding-top: 0px!important;
padding-bottom: 0px!important;

}

.testimonial {
    background: var(--white);
}

.header {
    background: var(--white);
    z-index: 999;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%
}


.clint img {
    height: 120px;
    width: 70px;
}

li {
    list-style: none;
    color:#000!important;
}

.topheader {
    background: #d8a22e;
}

.bg-color-white {
    background-color: var(--white);
}

.bg-color-gray {
    background-color: rgb(248, 248, 248);
}

.bg-color-black {
    background-color: gray;
}

a {
    color: black;
    font-size: 15px;
    text-decoration: none;
    transition: all .3s ease;
}

p {
     color:#000!important;
    color: var(--p-font-color);

}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: capitalize;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    transition: all.3s ease;
   
}

h1 {
    font-size: 4rem;
}


/* ======toggle btn===============navbaar========== */

.navbar-toggler {
    color: rgb(0 0 0);
}

.navbar-toggler-icon {
    background-color: black;
    padding: 5px;
}

.navbar-collapse {
    /* background-color: #fff; */
    z-index: 10;
    margin-top: 4px;
    padding-bottom: 10px;
}

.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, .5);
    border-color: rgba(255, 255, 255, .1);
    padding: 0px;
    outline: none;
}

.navbar-toggler {
    padding: 2px !important;
}


/* ======================header========================================== */

a:hover {
    text-decoration: none;
}

header {
    border-bottom: 1px solid var(--light-gray);
}

.dropdown-menu {
    width: 200px;
    border-radius: 0;
}

.our-contact a {
    /* margin: 10px 25px 10px 0; */
    display: inline-block;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: .8rem;
}

.header-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-social a {
    color: #fff;
    margin-left: 20px;
    font-size: .9rem;
}


/* ===================menu-baar========================================== */

#nav-padding {
    height: 109px;
}


/* nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 8%;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0px;
    z-index: 99;
    background: var(--white);
} */

.logo img {
    width: 50%;
    height: 100%;
}

.navbar {
    display: flex !important;
    flex-direction: row;
    padding-bottom: 0px;
}

.menubaar {
    align-items: center;
    justify-content: space-between;
    margin-bottom: -10px;
}

.menubaar li {
    padding: 5px 11px;
}

.menu-baar>li {
    padding: 30px 10px;
}

.menubaar>li a {
    font-weight: 600;
    color: #000 !important;
    font-size: 13px;
    text-transform: uppercase;
}

.menu-baar>li:hover>a {
    text-decoration: none;
    color: black;
}

#products {
    position: relative;
}

#products>span {
    font-family: 'Open Sans', sans-serif;
    display: flex;
    align-items: flex-start;
    font-weight: bold;
    cursor: pointer;
    transition: all .3s ease;
}

#products>span>i {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: -8px;
    margin-left: 6px;
}

#products:hover .p-category {
    display: block;
}

.p-category {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 300px;
    text-align: center;
    background-color: var(--white);
    z-index: 100;
    border-radius: 2px;
    border: 1px solid var(--light-gray);
    border-bottom: 5px solid var(--dark-green);
}

.p-category a:hover {
    text-decoration: none;
    color: black;
}


/* ====================================call-for-demo====================================== */

.popup-form>input {
    border: 1px solid var(--gray);
    color: black;
}

.close-btn,
.submit-btn,
.nav-btn {
    border: 2px solid var(--dark-green);
    border-radius: 100px;
    outline: none;
    background-color: var(--white);
    font-size: 1rem !important;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    padding: 5px 10px !important;
}

.submit-btn {
    color: black;
    width: 150px;
}

.close-btn {
    border: 2px solid var(--gray);
    width: 150px;
}

.footer-modal {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
}


/* ======================================head-slider=================================================== */

.head-slider {
    display: flex;
    justify-content: center;
    align-items: center;
}

.head-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: url(https://smartdemowp.com/uaques/wp-content/uploads/2020/06/ice-1.png);
    background-repeat: no-repeat;
    background-position: 120% -50%;
    padding: 8%;
    margin-bottom: -100px;
}

.head-img,
.head-text {
    flex: 1;
}

.head-text {
    margin-top: -10%;
}

.head-img img {
    width: 60%;
}

.head-text h2 {
    font-size: 4.5rem;
    font-weight: bolder;
    margin-bottom: 5%;
}

.head-text p {
    color: var(--dark-green);
}


/* .place-order, */

.button a {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin: 2%;
    display: inline-block;
    background-color: var(--blue);
    color: var(--white);
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
}

.button a span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    z-index: 10;
    width: 100%;
    height: 100%;
    padding: 10px 30px;
}

.btn-2 {
    background-color: tomato !important;
}

.btn-2::after {
    background-color: var(--blue) !important;
}


/* .button a::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 40%;
    width: 100%;
    height: 300%;
    background-color: tomato;
    transform: rotate(45deg) translate(-50%, 0%);
    transition: all 1s ease;
}

.button a:hover:after {
    bottom: -200%;
} */


/* <!-- ==============================================head-slider=============================== --> */


/* .about-us-section{
    display: flex;
    justify-content: center;
} */

.about-us-section
{
    margin-bottom: 20px!important;
}

.product-shadow img
{
      box-shadow: 0 0 10px rgba(114,118,119,0.31);
     /* box-shadow: 6px 4px 2px 0px var(--light-gray);*/
      padding: 10px;
   /* border-radius: 20px;*/
    background: var(--white);
   
}

.whatsapp
{
    height: 50px;
    width:50px;
    background: #14c53b;
    position: fixed;
    bottom: 20px;
    z-index:9999;
  right:0px;
     padding:  5px 13px;
line-height: 40px;
border-radius: 7px
 z-index: 1;
}


.phone
{
    height: 50px;
    width:50px;
    background: #e2151f;
     position: fixed;
    bottom: 20px;
   right:60px;
     z-index: 1;
     padding:  5px 9px;
     line-height: 40px;
border-radius: 7px
}
.phone a{
    color:#fff;
    font-size:25px;
}
.whatsapp a{
    color:#fff;
     font-size:25px;
}
.whatsapp i
{
    font-size: 30px;
}



.footer-contact li i
{color: var(--sky);

}
.chat-btn a
{
    height: 36px;
    width: 153px;
    /*background: #14c53b;*/
   padding: 5px 4px 5px 10px;
   border-radius: 20px;

    border: 2px solid #14c53b ;
   
    color: black;
   text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    display: inline-block;
    transition: all .3s ease;
}

.phn a
{ height: 36px;
    width: 153px;
    /*background: #14c53b;*/
   padding: 5px 4px 5px 10px;
   border-radius: 20px;

    border: 2px solid #e2151f ;
   
    color: black;
   text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    display: inline-block;
    transition: all .3s ease;

}

.phn a:hover {
     background-color:#e2151f;
    color: #fff !important;
   
}

.chat-btn a:hover {
    background-color: #14c53b;
    color: #fff !important;
}


.testimonial-container,
.about-shadow {
    box-shadow: 0 0 30px rgba(135, 207, 235, 0.314);
    border-radius: 20px;
    background: var(--white);
}

.about-us-img {
    text-align: center;
}

.about-us-img img {
    width: 100%;
    margin: auto;
}

.about-us-text p:first-child {
    color: var(--dark-green);
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
    margin-left: 70px;
}

.about-us-text p:first-child::after {
    content: "";
    position: absolute;
    top: 70%;
    right: 110%;
    height: 2px;
    width: 70%;
    background-color: var(--black-green);
}

.about-us-text>h2 {
    font-size: 3rem;
    font-weight: bolder;
}


/* <!-- ==============================================RO Water Purifier============================ --> */

.all-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 5%;
}

.all-title h2,.all-title1 h2 {
    font-size: 2rem;
    position: relative;
    margin-bottom: 17px;
}

.welcome h1::before,
.all-title h2::before,.all-title1 h2::before  {
    position: absolute;
    content: '';
    background: url(https://smartdemowp.com/uaques/wp-content/themes/uaques/assets/images/icons/wave-icon-2.png);
    width: 33px;
    height: 8px;
    left: 50%;
    bottom: -10px;
    transform: translate(-50%, 0%);
    background-repeat: no-repeat;
}

.all-title p,.all-title1 p {
    padding-top: 10px;
}

.category-items {
    padding: 2%;
    padding-top: 5%;
    text-align: center;
    border: 1px solid var(--white);
    background: var(--white);
    margin: 10px;
    margin-left: -2px;
}


/* =============produt-btn======================== */

.product-ptn a {
    border: 2px solid rgb(212, 157, 43);
    border-radius: 100px;
    padding: 5px 20px;
    color: black;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    display: inline-block;
    transition: all .3s ease;
}

.product-ptn a:hover {
    background-color: rgb(207, 152, 40);
    color: var(--white) !important;
}


/* <!-- ========================about-us=================================================== --> */

.about-icon {
    display: flex;
}

.a-icon i {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-blue);
    border-radius: 50%;
    color: var(--blue);
    font-size: 2rem;
    margin-right: 20px;
}

.a-text h3 {
    font-size: 2rem;
    font-weight: bolder;
    cursor: pointer;
}

.a-text h3:hover {
    color: var(--blue);
}


/* =======================================hover-effects======================================== */


/* slider-nav-tbn */

#category-slider .owl-nav button span {
    font-size: 2.5rem;
    margin-bottom: 8px;
    font-family: 'Open Sans', sans-serif;
}

#category-slider .owl-nav button:hover {
    color: black;
}

#category-slider .owl-nav button {
    position: absolute;
    outline: none !important;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 5px var(--shadow);
    background: var(--white);
}

#category-slider .owl-nav button:first-child {
    top: calc(50% - 25px);
    left: -25px;
}

#category-slider .owl-nav button:last-child {
    top: calc(50% - 25px);
    right: -25px;
}


/* slider-nav-tbn END*/

.category-items::after {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 3px;
    height: 0%;
    background-color: var(--sky);
    transition: all 1s ease;
}

.category-items:hover:after {
    height: 100%;
}

.hov-2 {
    position: absolute;
    bottom: 0%;
    right: 0%;
    width: 3px;
    height: 0%;
    background-color: var(--sky);
    transition: all 1s ease;
}

.category-items:hover .hov-2 {
    height: 100%;
}

.category-items::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 0%;
    height: 3px;
    background-color: var(--sky);
    transition: all 1s ease;
}

.category-items:hover::before {
    width: 100%;
}

.hov-1 {
    position: absolute;
    bottom: 0%;
    right: 0%;
    width: 0%;
    height: 3px;
    background-color: var(--sky);
    transition: all 1s ease;
}

.category-items:hover .hov-1 {
    width: 100%;
}

.category-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 1px 3px rgb(36 39 44 / 15%);
    padding: 10px;
    border-radius: 20px;
    background: var(--white);
}

.category-items {
    /* border: .5px solid var(--light-gray); */
    box-shadow: 1px 2px 2px var(--light-gray);
}

.category-items img {
    width: 60% !important;
    margin: auto;
    height: 200px;
    object-fit: contain;
    transition: all 1s ease;
}

.category-items:hover img {
    transform: rotateY(180deg);
    filter: grayscale(100%);
}

.category-items h2 {
    
    font-size: 1.3rem;
}

.category-items h2:hover {
    color: var(--tomato);
}


/* <!-- ========================================our-happy-clint================================================== --> */

.testimonial-container {
    width: 100%
}

.our-clint-section {
    background: linear-gradient(to bottom, transparent 30%, var(--light-gray) 0%);
    position: relative;
}

.our-clint-section::before {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100%;
    width: 100%;
    left: 0;
    height: 30px;
    position: absolute;
    top: calc(100% - 15px);
    display: block;
    content: '';
    background: linear-gradient(to top, transparent 50%, var(--white) 50%);
    border-radius: 50%;
}

.clint-img {
    display: flex;
    align-items: flex-end;
    width: 65%;
}

.clint-name {
    margin-right: 20%;
}

.clint-name h3 {
    font-weight: bolder;
    margin: 0 25px;
}

.clint {
    /* overflow: hidden; */
    width: 100%;
}

.clint img {
    border-radius: 50%;
    width: 100%;
}


/* <!-- ====================================form=================================== --> */

.form-container {
    display: flex;
    justify-content: center;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--shadow);
}

.comment,
#select,
form input {
    border: none;
    outline: none;
    width: 100%;
    height: 50px;
    /* background-color: var(--light-blue); */
    background-color: var(--footer-bg);
    /* border: 1px solid var(--footer-p-color); */
    margin-top: 20px;
    border-radius: 3px;
    padding-left: 10px;
    color: var(--gray);
}

.comment::placeholder,
#select::placeholder,
form input::placeholder {
    text-transform: capitalize;
    color: rgb(102, 102, 102);
}

.number-size,
.f-l-name {
    display: flex;
    justify-content: space-between;
}

.number-size input,
#select,
.f-l-name input {
    width: 47%;
}

.comment {
    height: 100px;
    width: 100%;
}

.place-order {
    border: none;
    outline: none;
    width: 50%;
    height: 50px;
    overflow: hidden;
    border-radius: 1000px;
    background-color: var(--blue);
    color: white;
    margin-top: 10px;
    font-size: 1.2rem;
}

.place-order span {
    font-family: 'PT Sans', sans-serif !important;
}


/* =========================Where To Buy================================ */

.white-card-container {
    display:flex;
    grid-template-columns: repeat(3, 1fr);
   justify-content: space-around;
}

.white-card {
   
   height: 133px;
    width: 311px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.white-card:hover {
    box-shadow: 5px 5px 20px rgb(135, 207, 235, 31%)
}

.white-card i {
    color: rgb(223, 168, 46);
    font-size: 37px!important;
}

.white-card h5 {
    font-family: "PT sans", sans-serif;
    color: rgb(44, 44, 44);
}


/* ======================Why Choose greenpure============================ */

.card-container>div {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray); */
}

.card-container>div>div {
    border-left: 1px solid var(--light-gray);
    height: 176px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all .3s ease;
    cursor: pointer;
}

.card-container>div>div:first-child {
    border: none;
}


/* .card-container>div>div:hover {
    border: 1px solid #00a757;
    background: var(--white);
    transform: scale(1.02);
} */

.card-container div div i {
    color: #00a757;
    font-size: 1.5rem;
    border: 1px solid #00a757;
    padding: 10px;
    border-radius: 4px;
}


/* .card-container div div:hover i {
    color: #00a757;
} */

.card-container div div p {
    color: black;
    font-size: 1.2rem;
}


/* .card-container div div:hover p {
    color: #00a757;
} */


/* /////////////=============================footer///////////////////////////// */

footer {
    background-color: #F7F7F8;
    color: rgb(170, 170, 170);
}

.f-link ul li {
    font-size: .8rem;
    color: black;
    margin: 0 0 5px 0;
}

.f-about p {
    color: #8893b9;
}

.social {
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
}

.social i {
    margin-right: 20px;
    color: #5d6cc6;
}

.footer-ctg {
    display: flex;
    flex-direction: column;
    line-height: 23px;
}

.footer-ctg h5 {
    color: black;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    padding-bottom: 5px;
}

.footer-ctg a {
    font-family: 'Open Sans', sans-serif;
    color: black;
    font-weight: lighter;
    font-size: .8rem;
}

.footer-ctg a i {
    color: var(--white);
}

.policy {
    border-top: 1px solid var(--light-gray);
}

.policy-container a,
.policy p {
    color: black;
    font-size: .8rem;
}

.email form {
    display: flex;
}

.email input {
    background-color: var(--white);
    box-shadow: -2px 2px 5px #5d6dc67e;
    width: 100%;
    border-radius: 0;
}

.email input:last-child {
    width: 110px;
    border: none;
    background-color: #5d6cc6;
    color: wheat;
}


/* =======payment========= */

.payment-container {
    border-top: 1px solid var(--light-gray);
}

.payment h5 {
    font-family: 'Open Sans', sans-serif;
    color: black;
}

.payment ul {
    display: flex;
}

.payment ul {
    width: 50%;
}

.payment ul li img {
    width: 50px;
    background-color: #fff;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 0 0 2px var(--shadow);
    margin-right: 10px;
}

.social-footer ul li img {
    width: 30px;
}

.social-footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.social-footer ul {
    margin-left: 50%;
}

.social-footer h5 {
    margin-left: 50%;
}


/* ==================================footer end================================================= */


/* =========contact-us page============== */


/* =========contact-us page============== */


/* =========contact-us page============== */


/* =========contact-us page============== */


/* =========contact-us page============== */

.contact-banner {
    background-image: url(http://smartdemowp.com/uaques/wp-content/themes/uaques/assets/images/page-title.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  padding: 5% 0 5% 0;
}

/*.contact-banner::before {
    position: absolute;
    content: '';
    background: url(https://smartdemowp.com/uaques/wp-content/themes/uaques/assets/images/icons/wave-1.png);
    width: 100%;
    height: 120px;
    left: 0;
    bottom: 0;
  
    background-repeat: repeat-x;
}*/


.about-us-text li::before
{
    content:"\2713  ";
    color: var(--sky);
}

/* ========================message=============== */

.title-name h2::before {
    width: 33px;
    height: 8px;
    left: 10%;
    bottom: -10px;
    transform: translate(-50%, 0%);
    background-repeat: no-repeat;
}

.contact-form-container {}

.title-name h2 {
    font-size: 2rem;
    font-weight: 400;
    width: 100%;
    text-align: left;
    padding-bottom: 10px;
}

.message {
    line-height: 30px;
}

.message li a {
   
}

.message li a span {
    font-weight: normal;
    font-family: sans-serif;
}

.message li {
    position: relative;
}

.message li i {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    position: absolute;
    right: 105%;
    ;
    border-radius: 50%;
    background-color: rgba(0, 115, 192, 0.05);
    color: var(--sky);
    transition: all .5s ease;
}

.message li:hover i {
    background-color: #fff;
    background-color: rgba(0, 115, 192, 0.35);
}


/* ==============contact-form====================== */

.form-group textarea,
.form-group input {
    height: 50px;
    border: none !important;
    border-radius: 30px;
    background-color: rgb(236, 236, 236);
}

.form-group textarea {
    height: 100px;
}


/* ==============contact-form-button====================== */

.contact-form button {
    background-color: #fff;
    height: 50px;
    border-radius: 30px;
    color: black;
    width: 30%;
    border: 3px solid var(--sky);
}


/* ====================shop=page============================== */


/* ====================shop=page============================== */


/* ====================shop=page============================== */


/* ====================shop=page============================== */

.shop-ctg ul li a {
   
    font-weight: bold;
}

.shop-ctg ul li a i {
    color: var(--sky);
    font-size: 1rem;
    margin-right: 5px;
}

.shop-product div {
    height: 420px;
}

.shop-item img {
    width: 80% !important;
}


/* ===========viewmore==================== */

.shop-view-img img {
    width: 60% !important;
}

.shop-text p {
    
    margin-bottom: 10px!important;
}

.shop-list {
    line-height: 30px;
    color: gray;

}

.shop-list li i {
    color: var(--sky);
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 10px;
}


.btn a {
    border: 2px solid var(--sky);
    border-radius: 100px;
    padding: 5px 20px;
    color: black;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    display: inline-block;
    transition: all .3s ease;
   margin-left: 455px;
}

.btn a:hover {
    background-color: var(--sky);
    color: var(--white) !important;
}