*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
   
}

body{
    background-color: #e5e6e5;
}

:root{
    --hadding1: #232323;
    --hadding2: #131313;
    --blogs-post: #161616;
}
.flex_start{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.flex-around{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-sparase{
    display: flex;
    align-items: center;
    justify-content: space-around;
    
}
.flex-sparase-center{
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.product_button{
    width: fit-content;
    margin-top: 10px;
    font-size: 14px;
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    background-color: transparent;
    transition: 0.4s;
    background-color: rgb(0, 94, 94);
}

.product_button:hover{
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    background-color:rgb(25, 179, 179);
    color: #ffffff;
    transition: 0.4s;
}
/*--------------nav-start----------*/

.nav{
    width: 100%;
    min-height: auto;
    top: 0;
    left: 0;
    position: sticky;
    z-index: 100;
    background-color: rgb(228, 243, 243);
    box-shadow: 1px 2px 3px 1px rgb(0,0,0,0.2);
}
.nav-upper-menu{
    width: 100%;
    height: 40px;
    
}
.nav-link-logo{
    font-size: 16px;
    margin-left: 15px;
    color: rgb(160, 90, 90);
}
.nav-list{
    width: 100%;
    height: 100%;
    display: flex;
    text-align: center;
    margin-left: 10px;
}
.nav-list:hover{
    color: rgb(13, 14, 14);
    border-bottom: 2px solid green;
}
.navupper-right-link{
    font-size: 12px;
    color: rgb(38, 139, 70);
    cursor: pointer;
    margin-right: 10px;
}

.navupper-right-link:hover{
    border-bottom: 2px solid green;
    color: rgb(15, 19, 16);
}

.nav-bottom-menu{
    height: 40px;
    background-color: rgb(209, 216, 223);
    color: black;
    /* padding: 5px 3px; */
    text-align: center;
}

.nav-bottom-ul{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.nav-bottom-li:hover{
    border-bottom: 3px solid green;
    transition: 0.5s;
}
.nav-bottom-link{
  color: rgb(83, 81, 81);
  font-size: 12px;
  cursor: pointer;
}
.nav-bottom-link:hover{
    color: #000;
    font-size: bold;
}
.nav-bottom-li{
    margin: 0 18px;
}
/*------------------nav-ends--------------*/


@media  (max-width: 992px) {
    .nav-bottom-li{
        margin: 0 10px;
    }

    
     
    .product_left{
        display: none;
       
    }
    .product_right{
        display: none;
       
    }
    
  .add_section_left{
    display: none;
  }
    
    
   
}
   
@media  (max-width: 600px) {
    .nav-upper-right{
       display: none;
    }


    .nav-bottom-li{
        margin: 0 10px;
    }
    
   .product_left{
    display: none;
   }
   .product_right{
    display: none;
   }

   .product_meddle_item_left{
    flex-direction: column;
   }
    .footer-top{
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
}

/*------------------/////////////////////-----------*/

/* Contact Us Section */
.main{
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-color: transparent;
}
.main>div{
    width: fit-content;
}

.container>h1{
    font-size: 22px;
    color: #535252;
    margin-top: 60px;
}
.container>p{
    font-size: 14px;
    color: #535252;
    margin-bottom: 50px;
}
.form{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 180px;
    background-color: transparent;
}
.form label {
    display: block;
    margin: 10px 0 5px;
    font-size: 14px;
}

.form>input{
    width: 100%;
    max-width: 500px;
    padding: 7px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    margin-bottom: 10px;
    background-color: #ffffff;
}

.form>textarea {
    width: 100%;
    max-width: 500px;
    padding: 7px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    margin-bottom: 10px;
    height: 80px;
    background-color: #ffffff;
}

.form>input[type="submit"] {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 14px;
    color: white;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form>input[type="submit"]:hover {
    background-color: #0056b3;
}




/*--------------footer-start---------------*/
.footer-section{
    /* width: 100%; */
    height: auto;
    padding: 20px 20px;
    margin-top: 30px;
    background-color: #fff;
}
.footer-top{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    justify-content: space-around;
    /* gap: 3rem; */
}
.footer-section1{
    width: 140px;
    
}
    
.footer-section2{
    width: 140px;
    
}
.footer-section3{
    width: 140px;
    
}

.footer-section4{
    width: 140px;
    
} 

.footer-section1 h2{
    font-size: 14px;
    margin-bottom: 5px;
    color: #353434;
    font-weight: 500;
}

.footer-section2 h2{
    font-size: 14px;
    margin-bottom: 7px;
    color: #353434;
    font-weight: 500;
}

.footer-section3 h2{
    font-size: 14px;
    color: #353434;
    margin-bottom: 7px;
    font-weight: 500;
}

.footer_section2_p{
    font-size: 12px;
    margin-bottom: 5px;
    color: rgb(31, 31, 31);
}

.footer-section4 h2{
    font-size: 14px;
    color: #353434;
    margin-bottom: 7px;
    font-weight: 500;
}
.footer-bottom-link{
    font-size: 12px;
    color: #353434;
    cursor: pointer;
    margin-bottom: 7px;
}
.footer-bottom-link:hover{
    color: green;
    transition: 0.4s;
    border-bottom: 1px solid green;
}

.footer-bottom-copyright{
    padding: 80px 0 30px 0;
    font-size: 12px;
    color: #000;
    font-style: bold;
}

/*-----footer-ends------*/

/* dropDown */
.dropDown{
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    background: transparent;
}
.dropDown ul{
  width: 130px;
  padding: 0 0 15px 0;
  background-color: #00865eec;
  position: absolute;
  top: 40px;
  text-align: left;
  display: none;
  transition: all 1s;
            
}
.dropDown:hover>ul{
    display: block;
    transition: all 1s;
}
.dropDown ul li a{
    width: 90%;
    display: inline-block;
    margin: 2px;
    padding: 5px;
    color: #ffffff;
    font-size: 14px;
}
.dropDown ul li a:hover{
    background-color: #e1e9e7;
    color: #000;
}


