@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none !important;
    font-family: "Nunito Sans", sans-serif;
}
body{
    background-color: #fff;
    color: #000;
    overflow-x: hidden;
    font-size: 16px;
    font-family: "Nunito Sans", sans-serif;
}
html{
    scroll-behavior: smooth;
}
ul{
    padding: 0;
    margin: 0;
}
h1,h2,h3,h4,h5,h6,p{
    margin: 0;
    padding: 0;
}

/* Navbar Css */

.header-main{
    display: flex;
    width: 100%;
    padding: 10px 0;
}
.header-top-main{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo{
    width: 140px;
}
.logo img{
    width: 100%;
}
nav{
    display: flex;
    position: relative;
    z-index: 9999;
}
nav>ul{
    display: flex;
}
nav>ul>li{
    padding: 0 16px;
}
nav>ul>li:first-child{
    padding-left: 0;
}
nav>ul>li:last-child{
    padding-right: 0;
}
nav>ul>li>a{
    color: #006db8;
    font-weight: 500;
    font-size: 18px;
    padding: 35px 0;
    transition: 0.3s all ease;
    font-weight: 600;
}
nav>ul>li:hover a{
    color: #000;
}
nav>ul>li>a>i{
    transition: 0.3s ease;
    font-size: 17px;
}
nav>ul>li:hover>a>i{
    transform: rotate(180deg);
    color: #00032a;
}
.drop-down-menu{
    position: relative;
}
.drop-down-nav{
    position: absolute;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    background-color: #fff;
    top: 80px;
    left: 0;
    width: 220px;
    z-index: 9;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.drop-down-menu:hover .drop-down-nav{
    opacity: 1;
    overflow: visible;
    visibility: visible;
    top: 60px;
    transition: 0.5s;
}
.drop-down-nav>li{
    border-bottom: 1px solid #d8dadc;
}
.drop-down-nav>li:last-child{
    border-bottom: none;
}
.drop-down-nav>li>a{
    color: #000;
    position: relative;
    padding: 10px 20px;
    display: inline-block;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
}
.drop-down-nav>li:hover{
    background-color: #006db8;
    transition: 0.3s;
}
.drop-down-nav>li:hover>a{
    color: #fff !important;
}

/* Hamburger */

.hamburger-menu{
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
.hamburger{
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: end;
    position: relative;
    z-index: 9;
    cursor: pointer;
    height: 100%;
    justify-content: center;
    width: 30px;
}
.bar{
    width: 30px;
    height: 2px;
    position: relative;
    background-color: #006db8;
    transition: 0.3s;
}
.bar:nth-child(2){
    width: 15px;
}
.header-contact .bar:nth-child(2){
    transform: translateX(-40px);
    transition: 0.8s;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    background-color: #00032a;
}
.header-contact .bar:nth-child(1){
    transform: rotate(135deg);
    top: 8px;
    position: relative;
    background-color: #00032a;
}
.header-contact .bar:nth-child(3){
    transform: rotate(225deg);
    top: -6px;
    position: relative;
    background-color: #00032a;
}

/* Sticky Header Css */

.sticky .header-main{
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 999;
    box-shadow: 0 0 40px #000;
    width: 100%;
    animation: sticky-header 1s;
}
@keyframes sticky-header{

    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(0);
    }

}

/* Banner Css */

#banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: inline-block;
  }
  
  .banner-slides {
    position: relative;
    overflow: hidden;
  }
  
  .banner-slides .banner-slide-img {
    width: 100%;
  }
  
  .slick-active .banner-slide-img {
    animation: zoom-in-out 12s linear infinite alternate;
  }
  
  @keyframes zoom-in-out {
  
    0% {
        transform: scale(1);
        transform-origin: center;
    }
  
    100% {
        transform: scale(1.15);
        transform-origin: center;
    }
  }

/* About Us */

.about{
    padding: 50px 0 90px 0;
}
.left.wt-small-separator-outer{
    text-align: left;
}
.wt-small-separator{
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
    color: #006db8;
    font-weight: 700;
    text-transform: uppercase;
}
.wt-small-separator::after{
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    background-color: #006db8;
    top: 45%;
    left: 24%;
}
.left.wt-small-separator-outer h2{
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000000;
}
.left.wt-small-separator-outer p{
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 28px;
    color: #000;
    text-align: justify;
}
.site-list-style-one{
    margin-bottom: 25px;
    padding-left: 0;
}
.site-list-style-one li{
    font-size: 19px;
    position: relative;
    padding-left: 30px;
    font-weight: 700;
    color: #000;
    padding-bottom: 5px;
}
.site-list-style-one li:after{
    position: absolute;
    content: "";
    left: 0;
    top: 17px;
    width: 20px;
    height: 2px;
    background-color: #006db8;
}
.about-btn a{
    font-size: 16px;
    color: #fff;
    padding: 13px 30px;
    display: inline-block;
    border-radius: 50px;
    color: #006db8;
    border: 2px solid #006db8;
    font-weight: 700;
    transition: 0.5s all ease;
}
.about-btn a:hover{
    background-color: #006db8;
    color: #fff;
}
.abouts-btn{
  padding-left: 0;
}
.about-section{
    padding-left: 10px;
    position: relative;
}
.gehu img{
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    width: 160px;
    animation: fly 4s linear infinite;
}
@keyframes fly{

    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-30px);
    }
    100%{
        transform: translateY(0);
    }

}

/* footer */

footer{
    background-image: url(../images/fooot-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 200px 0 40px 0;
    position: relative;
}
footer::before{
    position: absolute;
    content: "";
    background-color: #000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.7;
}
footer .container{
    max-width: 1270px;
}
.foot-logo img{
    width: 180px;
    position: relative;
    background-color: #fff;
    padding: 15px;
    border-radius: 20px;
}
.foot-logo{
    padding-bottom: 20px;
    position: relative;
    text-align: center;
}
.first-foot{
    padding-right: 20px;
}
.first-foot p{
    color: #fff;
    position: relative;
    line-height: 28px;
    text-align: center;
}
.second-foot h3{
    color: #fff;
    font-weight: 800;
    font-size: 28px;
    padding-bottom: 40px;
    position: relative;
}
.second-foot h3::before{
    position: absolute;
    content: '';
    background-color: #fff;
    width: 50px;
    height: 2px;
    top: 60%;
}
.second-foot ul>li{
    padding-bottom: 15px;
    position: relative;
}
.second-foot ul>li>a{
    color: #fff;
    line-height: 28px;
    transition: 0.3s ease;
}
.last-foot h3{
    color: #fff;
    font-weight: 800;
    font-size: 28px;
    padding-bottom: 40px;
    position: relative;
}
.last-foot h3::before{
    position: absolute;
    content: '';
    background-color: #fff;
    width: 50px;
    height: 2px;
    top: 60%;
}
.add-time{
    display: flex;
    position: relative;
    padding-bottom: 10px;
}
.add-icon{
    width: 50px;
    margin-right: 20px;
    height: 50px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
}
.add-icon img{
    width: 25px;
}
.full-add{
    width: calc(100% - 75px);
    position: relative;
    color: #fff;
    line-height: 28px;
}
.new-add{
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}
.new-add a{
    color: #ffffff;
}
.copy{
    color: #fff;
    position: relative;
    padding-top: 40px;
}
.power{
    color: #fff;
    position: relative;
    padding-top: 40px;
    text-align: right;
}
.power a{
    color: #fff;
}

/* Enquiry */

.enq-section{
    /* background-image: url(../images/registan.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; */
    /* margin: 0 25px; */
    position: relative;
    padding: 25px 60px 40px 60px;
    margin-bottom: -100px;
    background-color: #006db8;
    z-index: 9;
}
.enq-section h2{
    color: #fff;
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
}
.enq-section h2 span{
    font-size: 20px;
}
.sariya{
    position: absolute;
    bottom: 20px;
    right: 30px;
}
.sariya img{
    width: 420px;
}
.sariya-btn a{
    padding: 13px 30px;
    color: #fff;
    font-weight: 700;
    margin-top: 25px;
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 50px;
    transition: 0.5s all ease;
}
.sariya-btn a:hover{
    background-color: #fff;
    color: #006db8;
}
/* .enq-time .container{
    max-width: 1270px;
} */
.enq-time{
    margin-top: 150px;
}


/* Product Css */

.pro-time h2{
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 35px;
}
.pro-read{
    margin-top: 40px;
}

/* Product Effect */

.box{
    background-color: #222;
    overflow: hidden;
    position: relative;
}
.box:before{
    content:"";
    background: #000;
    width: 0;
    height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}
.box:hover:before{
    width:100%;
}
.box img{
    width: 100%;
    height: auto;
    transition: all 0.45s;
}
.box:hover img{
    opacity: 0.7;
    filter: grayscale(90%);
    transform: scale(1.2);
}
.box .box-content{
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 0 30px;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.45s ease;
}
.box .title{
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
}
.box:hover .box-content,
.box:hover .icon{
opacity: 1;
}
.box .title a{
    color: #fff;
}

/* Why Choose Us */

.why-choose{
    margin-top: 50px;
    padding: 50px 0 0 0;
    background-image: url(../images/why-background.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.why-choose::before{
    position: absolute;
    content: "";
    background-color: #000000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.8;
}
.why-img{
    position: relative;
}
.why-choose .container{
    max-width: 100%;
}
.why-choose-time{
    padding-left: 50px;
    position: relative;
}
.why-choose-time h3{
    text-transform: uppercase;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    padding-bottom: 10px;
}
.why-choose-time h2{
    font-size: 40px;
    color: #fff;
    font-weight: 700;
}
.why-points{
    padding-top: 30px;
}
.why-img img{
    width: 100%;
}

/* Product Page Css */

.bread{
    background-image: url(../images/bread.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 90px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
}
.bread::before{
    position: absolute;
    content: "";
    background-color: #000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}
.bread h1{
    position: relative;
    color: #fff;
}
.bread-last{
    position: relative;
    color: #fff;
    font-size: 17px;
}
.bread-last a{
    color: #fff;
}
.in-pro{
    padding: 50px 0;
    background-color: #f1f1f1;
}
.in-pro h4{
    font-weight: 600;
    text-align: center;
    font-size: 20px;
    line-height: 28px;
    padding: 20px 20px 0 20px;
}
.in-pro h4 a{
    color: #006db8;
}
.warranty{
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    background-color: #006db8;
    padding: 8px 0 8px 15px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    display: inline-flex;
    padding-right: 40px;
    position: absolute;
    top: 0;
    left: 0;
}


/* Contact Us Page Css */

.contact-page{
    margin-top: 50px;
    padding-bottom: 50px;
}
.contact-time{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.contact-time h4{
    padding-left: 25px;
    line-height: 40px;
    font-size: 29px;
}
.con-loc{
    margin-bottom: 23px;
}
.locations{
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 25px 35px;
    cursor: pointer;
    height: 280px;
}
.locations h2{
    font-size: 24px;
    margin-bottom: 14px;
    font-weight: 700;
}
.locations address{
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 0;
}
.locations img{
    transition: 0.4s all ease-in-out;
}
.locations:hover img{
    transform: rotateY(180deg);
}
.number{
    margin-bottom: 6px;
}
.number:last-child{
    margin-bottom: 0;
}
.number a{
    color: #212529;
    font-weight: 600;
    transition: 0.4s ease;
}
.number a:hover{
    color: #006db8;
}
.map-time iframe{
    border: 2px solid #006db8;
    border-radius: 10px;
}
.map-time{
    padding-bottom: 50px;
}

/* Enquiry Form Css */

.form-control-feedback {
    display: none;
  }
  
  .has-feedback label~.form-control-feedback {
    top: 0 !important;
  }
  
  .error {
    text-align: left !important;
    display: table !important;
  }
  
  .thnak4 {
    margin-top: 50px;
  }
  
  .has-feedback .form-control {
   
    padding: 20px;
  }
  
  .form-group {
    margin: 15px 0 !important;
  }
  
  .form-group input {
    font-size: 16px !important;
    line-height: 24px;
    border-radius: 2px;
    border-bottom: 2px solid #006db8;
    color: #000;
  }
  .has-feedback .form-control::placeholder{
    color: #000000;
  }
  .has-feedback .form-control{
    color: #000000;
  }
  .form-group textarea {
    font-size: 16px !important;
    line-height: 24px;
    border-radius: 2px;
    border-bottom: 2px solid #006db8;
  }
  
  .form-group select {
    font-size: 16px !important;
    line-height: 24px;
    border-radius: 2px;
    border-bottom: 2px solid #006db8;
  }
  
  .input-group .form-control:last-child,
  .input-group-addon:last-child {
    font-size: 14px !important;
    line-height: 24px;
    width: 100% !important;
  }
  
  .input-group .form-control:last-child,
  .input-group-addon:last-child {
    font-size: 14px !important;
    line-height: 24px;
    border-radius: 2px;
    width: 100% !important;
    border-bottom: 2px solid #182852;
  }
  
  .input-group {
    position: relative;
    display: table;
    border-collapse: separate;
    margin: 20px 0;
    width: 100% !important;
  }
  
  .Submit-box {
    background-color: #006db8;
    color: #fff;
    padding: 10px 15px;
    border: 1px solid #006db8;
    font-size: 17px;
    border-radius: 2px;
    transition: 0.3s ease;
  }
  
  .Submit-box:hover {
    background-color: #000;
    border: 1px solid #000;
  }
  
  .form-control:focus {
    box-shadow: none !important;
    border: 1px solid #000 !important;
    border-bottom: 2px solid #182852;
  }
  
  .input-group>.form-control,
  .input-group>.form-floating,
  .input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
  }
  .fill {
    font-size: 20px;
    font-weight: 600;
  }
  .get {
    font-size: 32px;
    color: #006db8;
    padding-bottom: 10px;
  }

  /* Enquiry form css end */

  .footer{
    padding-top: 80px;
  }

  /* About Us Page */

  .about-us-page{
    padding: 50px 0;
  }
  .left.wt-small-separator-outer h3{
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #006db8;
}

/* Mission Vision Page */

.mis-vis{
    margin-top: 30px;
    padding-bottom: 50px;
}

.serviceBox{
    text-align: center;
    padding: 40px 20px 15px;
    box-shadow: 0 0 25px -8px rgba(0,0,0,0.4);
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px;
}
.serviceBox:before{
    content: "";
    background-color: #006db8;
    width: 100%;
    height: 110px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    clip-path: polygon(0 0, 100% 100%, 0% 100%);
    border-radius: 0 0 0 10px;
}
.serviceBox .title{
    color: #006db8;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 25px;
}
.serviceBox .description{
    color: #000;
    font-size: 16px;
    line-height: 28px;
    margin: 0 0 25px;
    text-align: justify;
}
.serviceBox .service-icon{
    color: #fff;
    background-color: #006db8;
    font-size: 40px;
    line-height: 75px;
    height: 100px;
    width: 100px;
    margin: 0 auto;
    border: 10px solid #fff;
    border-radius: 50%;
}

/* new product Effect */

.product-box {
    position: relative;
    background-color: white;
    overflow: hidden; /* Hide karna overflow content */
    border: 1px solid #ddd;
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2); */
    transition: all 0.3s ease-in-out;
    padding: 50px 30px 45px 30px;
    margin: 0 10px;
  }

  .sale{
    position: absolute;
    top: 0;
    right: 0;
    background-color: #006db8;
    padding: 5px 10px;
    color: #fff;
    font-weight: 500;
  } 
  
  .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image ko box ke size mein fit karne ke liye */
    transition: 0.3s ease-in-out;
  }
  
  .button-container {
    position: absolute;
    bottom: -50px; /* Button ko niche rakhen */
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    transition: bottom 0.3s ease-in-out; /* Button ke animation ke liye */
  }
  
  .shop-now-btn {
    padding: 10px 20px;
    background-color: #006db8;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s ease;
  }
  .shop-now-btn a{
    color: #fff;
  }
  
  .product-box:hover .button-container {
    bottom: 0px; /* Hover par button ko box ke niche laenge */
  }
  .product-box:hover img{
    transform: translateY(-15px);
  }
  .shop-now-btn:hover{
    background-color: #000;
  }
  .box-cont h3{
    font-size: 31px;
    font-weight: 600;
    line-height: 42px;
  }
  .box-cont h5{
    padding-top: 25px;
    font-weight: 600;
    font-size: 22px;
  }
  .box-cont h4{
    margin-top: 15px;
    font-size: 25px;
    font-weight: 600;
    color: #006db8;
  }
  .box-cont h4 span{
    text-decoration: line-through !important;
    color: #8d8d8d;
    font-weight: 500;
  }
  .pro-time table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
  }
  
  .pro-time td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
  }
  .pro-time th{
    color: #006db8;
  }
  .avail{
    display: flex;align-items: center;
    margin-top: 30px;
  }
  .avail a{
    padding: 12px 25px;
    background-color: #006db8;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    display: inline-flex;
    border-radius: 5px;
    margin-left: 15px;
    transition: 0.3s ease;
  }
  .avail a:hover{
    background-color: #000;
  }
  .box-img{
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    cursor: zoom-in;
  }
  .box-img img{
    transition: 0.4s ease;
  }
  .box-img:hover img{ 
    transform: scale(1.1);
  }
  .box-cont{
    padding-left: 10px;
  }
  .box-1{
    background-color: #fff;
    margin: 15px 5px 0 5px;
  }

  /* Tab Css */

  .tablink {
    background-color: #fff;
    color: white;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 17px;
    width: 20%;
    margin-right: 20px;
    margin-top: 20px;
    opacity: 0.8;
  }
  .tablink:hover{
    opacity: 1;
  }
  

  
  /* Style the tab content */
  .tabcontent {
    color: white;
    display: none;
    text-align: center;
    opacity: 1;
  }
  .second-foot{
    padding-left: 25px;
  }
  .third-foot{
    padding-left: 40px;
  }

  /* Top Nav */

  .top-nav{
    position: relative;
    z-index: 2;
    padding: 10px 0;
    border-bottom: 1px solid #e4e4e4;
}
.top-nav::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 33%;
    height: 100%;
    background-color: #006db8;
    z-index: -1;
    border-radius: 0 40px 0 0;
}
.top-left p{
    color: #fff;
    font-size: 15px;
    line-height: 24px;
}
.header-wrapper{
    display: flex;
    gap: 30px;
    justify-content: end;
}
.header-links>ul>li{
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: #006db8;
    margin: 0 0px 0 0;
}
.header-links>ul>li>i{
    margin-right: 8px;
}
.header-links>ul>li>a{
    color: #1a1b1d;
}


/* Media Query Css */

@media only screen and (max-width: 1199px){


    .top-nav::before{
        width: 38%;
    }
    .wt-small-separator::after{
        left: 29%;
    }
    .left.wt-small-separator-outer h2{
        font-size: 27px;
    }
    .about{
        padding-bottom: 75px;
    }
    footer .container {
        max-width: 960px;
    }
    .full-add br{
        display: none;
    }
    .locations address br{
        display: none;
    }
    .third-foot{
        padding-left: 0 !important;
    }
    .second-foot{
        padding-left: 60px;
    }
    .add-time{
        align-items: center;
    }
    .left.wt-small-separator-outer h3{
        font-size: 25px;
    }
    .locations{
        height: 275px;
    }



}


@media only screen and (max-width: 991px){


    .top-nav::before {
        width: 45%;
    }
    .hamburger-menu{
        display: block;
    }
    nav{
        display: none;
    }
    nav>ul{
        position: fixed;
        top: 0;
        left: 0;
        width: 270px;
        background-color: #fff;
        height: 100vh;
        box-shadow: rgb(17 12 46 / .15) 0 48px 100px 0;
        transform: translateX(-100%);
        transition: 0.5s;
        overflow-y: auto;
        display: flex;
        justify-content: flex-start;
        z-index: 999999999999;
    }
    .header-contact nav>ul{
        transform: translateX(0);
    }
    nav{
        display: initial;
    }
    nav>ul{
        display: initial;
        flex-direction: column;
    }
    nav>ul>li>a{
        padding: 15px 0;
        display: block;
        color: #006db8;
        padding-left: 20px;
    }
    nav>ul>li{
        border-bottom: 1px solid #d4d4d4;
        padding-left: 0;
    }
    nav>ul>li>a>i{
        display: none !important;
    }
    nav>ul>li.drop-down-menu{
        padding-right: 60px;
        position: relative;
        overflow: hidden;
    }
    nav>ul>li.drop-down-menu::after{
        position: absolute;
        top: 7px;
        right: 22px;
        content: "+";
        font-size: 27px;
        color: #006db8;
    }
    nav>ul>li.drop-down-menu.responsive-header::after {
        content: "-" !important;
    }
    .drop-down-nav{
        position: initial;
        visibility: visible;
        opacity: 1;
        overflow: visible;
        top: 0;
        left: 0;
        background-color: #006db8;
        z-index: 9;
        height: 0;
        transition: none !important;
        padding: 0;
    }
    .responsive-header .drop-down-nav{
        height: 100%;
        overflow-y: scroll;
        width: 150%;
    }
    .drop-down-nav>li>a{
        color: #fff !important;
        font-size: 17px;
    }
    .wt-small-separator::after{
        left: 19%;
    }
    .why-img{
        padding-top: 30px;
    }
    .exchange{
        display: flex;
        flex-direction: column-reverse;
    }
    .ex-top{
        padding-top: 50px;
    }
    .about {
        padding-bottom: 60px;
    }
    .about-section{
        padding-left: 0;
    }
    .last-foot{
        padding-top: 30px;
    }
    .copy{
        text-align: center;
    }
    .power{
        text-align: center;
        padding-top: 15px;
    }
    footer{
        padding-bottom: 20px;
    }
    .locations{
        height: 270px;
    }
    .last-loca{
        height: 190px;
    }





}


@media only screen and (max-width: 767px){


    .top-nav{
        display: none;
    }
    .wt-small-separator::after {
        left: 25%;
    }
    .enq-section{
        padding: 25px 15px 40px 25px;
    }
    .sariya {
        position: absolute;
        bottom: 15px;
        right: 0px;
    }
    .sariya img{
        width: 300px;
    }
    .enq-time {
        margin-top: 50px;
    }
    .about{
        padding-top: 30px;
        padding-bottom: 50px;
    }
    .second-foot {
        padding-left: 35px;
    }
    .serviceBox{
        padding: 30px 8px 15px;
    }
    .serviceBox .title{
        font-size: 25px;
        margin-bottom: 15px;
    }
    .third-foot{
        padding-top: 30px;
    }
    .get{
        font-size: 28px;
    }
    .locations{
        height: auto;
    }


}


@media only screen and (max-width: 576px){


    .about{
        padding-top: 35px;
        padding-bottom: 55px;
    }
    .wt-small-separator::after{
        display: none;
    }
    .sariya{
        bottom: 30px;
    }
    .sariya img{
        width: 230px;
    }
    .enq-section h2{
        font-size: 27px;
        line-height: 36px;
    }
    .enq-section h2 span{
        font-size: 18px;
    }
    .sariya-btn a{
        padding: 10px 20px;
        margin-top: 20px;
    }
    .sariya img{
        width: 210px;
    }
    .second-foot{
        padding-top: 30px;
        padding-left: 0;
    }
    .full-add br{
        display: block;
    }
    footer{
        padding-top: 170px;
    }
    .bread{
        padding: 60px 10px;
        text-align: center;
    }
    .left.wt-small-separator-outer h3 {
        font-size: 21px;
    }
    .footer {
        padding-top: 50px;
    }
    .get {
        font-size: 23px;
    }
    .locations{
        text-align: center;
    }
    .third-foot{
        padding-top: 15px;
    }
    .last-foot{
        padding-top: 15px;
    }


}


@media only screen and (max-width: 450px){


    .why-choose-time{
        padding-left: 20px;
    }
    .enq-section h2 {
        font-size: 24px;
        line-height: 34px;
    }
    .enq-section h2 span {
        font-size: 17px;
    }
    .sariya-btn a {
        padding: 8px 18px;
        margin-top: 16px;
    }
    .logo img {
        width: 90%;
    }
    .left.wt-small-separator-outer h2 {
        font-size: 23px;
    }
    .wt-small-separator{
        font-size: 17px;
    }
    .about{
        padding-top: 25px;
        padding-bottom: 40px;
    }
    .about-btn a{
        padding: 10px 20px;
    }
    .gehu img{
        width: 115px;
    }
    .site-list-style-one li{
        font-size: 18px;
    }
    .pro-time h2{
        font-size: 32px;
    }
    .why-choose-time h2{
        font-size: 36px;
    }
    .ex-top {
        padding-top: 30px;
    }
    .box-img img{
        padding-top: 20px;
    }
    .warranty{
        font-size: 17px;
        padding: 5px 40px 5px 10px;
    }
    .box-cont h3{
        font-size: 26px;
    }
    .bread-last{
        font-size: 16px;
    }
    .fill {
        font-size: 17px;
    }
    .get{
        font-size: 20px;
    }




}


@media only screen and (max-width: 400px){


    .left.wt-small-separator-outer h2 {
        font-size: 20px;
    }
    .wt-small-separator {
        font-size: 16px;
    }
    .site-list-style-one li {
        font-size: 16px;
    }
    .gehu img {
        width: 100px;
    }
    .why-choose-time {
        padding-left: 10px;
    }
    .why-choose-time h2 {
        font-size: 30px;
    }
    .why-choose-time h3{
        font-size: 16px;
    }
    .sariya img {
        width: 170px;
    }
    .enq-section h2 span {
        font-size: 16px;
    }
    .enq-section h2 {
        font-size: 22px;
        line-height: 32px;
    }
    .sariya-btn a {
        padding: 6px 12px;
        margin-top: 15px;
        font-size: 15px;
    }
    .about-btn a {
        padding: 8px 18px;
    }
    .sariya {
        bottom: 38px;
    }
    .left.wt-small-separator-outer h3 {
        font-size: 18px;
    }
    .avail a{
        padding: 10px 15px;
        font-size: 16px;
    }
    .fill {
        font-size: 16px;
    }
    .get{
        font-size: 18px;
    }
    .contact-time h4{
        font-size: 27px;
    }
    .locations{
        padding: 25px 15px;
    }


}


@media only screen and (max-width: 350px){


    .left.wt-small-separator-outer h2 {
        font-size: 18px;
    }
    .left.wt-small-separator-outer p{
        line-height: 26px;
    }
    .gehu img {
        width: 80px;
    }
    .sariya img {
        width: 140px;
    }
    .sariya {
        bottom: 48px;
    }
    .left.wt-small-separator-outer h3 {
        font-size: 17px;
    }
    .box-cont h3{
        font-size: 25px;
    }
    .avail a{
        padding: 8px 12px;
    }


}
