*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-style: normal;
   
}

body{
    background-color: #ececec;
}

: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;
    
}


/*--------------nav-start----------*/

.nav{
    width: 100%;
    min-height: 40px;
    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%;
    min-height: 40px;
    background-color: #f2f5f3;
}
.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{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    color: black;
    text-align: center;
}

.nav-bottom-ul{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.nav-bottom-link{
    display: flex;
    align-items: center;
    text-align: center;
    height: 40px;
  color: rgb(83, 81, 81);
  font-size: 12px;
  cursor: pointer;
  gap: 10px;
  
}
.nav-bottom-link:hover{
    color: #0c7c08;
    font-size: bold;
}
.nav-bottom-li{
    margin: 0 25px;
}
  
.dropDown{
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    background: transparent;
  }
  .dropDown>a{
    margin: 0 25px;
  }
  .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;
  }

@media  (max-width: 992px) {
    .section1_left{
        display: none;
    }
   
}
@media  (max-width: 720px) {
    .navupper_add{
        display: none;
    }
    .section1_left{
        display: none;
    }
    .section1_right{
        display: none;
    }
    .section3bottom_content_left{
        display: none;
    }
    .section2_content{
        flex-direction: column;
     }
    .section2_content_left{
        width: 100%;
        padding: 20px;
        
    }
}
   
@media  (max-width: 600px) {
    .nav-upper-right{
       display: none;
    }

    .nav-bottom-li{
        margin: 0 10px;
    }
    .section2_content{
       flex-direction: column;
    }

    .section2_content_left{
        width: 100%;
        padding: 20px;
        
    }
    .section3bottom_content_left{
        display: none;
    }
    .section1_left{
        display: none;
    }
    .section1_right{
        display: none;
    }
    .navupper_add{
        display: none;
    }
    .section1_meddle_content_top{
        flex-direction: column;
    }
    .footer-top{
        flex-direction: column;
        justify-content: flex-start;
        gap: 1rem;
    }
}


/*--Add_start--*/

/*--Add_ends--*/
/*--product_section-ends--*/
.section1{
    display: flex;
    padding: 20px 0;
}
.section1_left{
    flex: 2;
}
.section1_left{
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
}
.section1_left_item>div>h3{
    margin: 5px 0;
    font-size: 14px;
    color: #363333;
}
.section1_left_item>div>img{
    width: 140px;
}
.section1_left_item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    width: 100%;
    margin-top: 50px;
}

/* section1_meddle */
.section1_meddle{
    flex: 6;
}
.section1_meddle{
    padding: 10px;
}
.section1_right{
    flex: 2;
}
.section1_right{
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
}
.section1_right_item>div>h3{
    margin: 5px 0;
    font-size: 14px;
    color: #363333;
}
.section1_right_item>div>img{
    width: 140px;
}
.section1_right_item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    width: 100%;
    margin-top: 50px;
}
/* section1_right */
.section1_meddle_content_top{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.section1_meddle_content_top_left{
    width: 100%;
    padding: 10px;
}
.section1_meddle_content_top_left>img{
    width: 100%;
    max-width: 280px;
    max-height: 200px;
    background-size: cover;
}

.section1_meddle_content_top_right{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 10px;
}
.section1_meddle_content_top_right>a>h1{
    font-size: 22px;
    color: teal;
    font-weight: 600;
    margin: 5px 0;
}

.section1_meddle_content_top_right>p{
    font-size: 14px;
    color: rgb(29, 29, 29);
    font-weight: 500;
}
.section1_meddle_content_bottom{
    padding: 10px;
}
.section1_meddle_content_bottom>h2{
    font-size: 18px;
    color: rgb(29, 29, 29);
    font-weight: 600;
    margin: 5px 0;
}
.section1_meddle_content_bottom>a>h2{
    font-size: 18px;
    color: teal;
    
}
.section1_meddle_content_bottom p{
    font-size: 14px;
    color: rgb(29, 29, 29);
    font-weight: 500;
}

.section1_meddle_content{
    margin: 0px 20px;
}
/*--product_section-ends--*/

/* section2_c0ntent */
.section2_content{
    width: 100%;
    display: flex;
    margin: 15px 0;
    
}

.section2_content_left{
    flex: 6;
}
.section2_content_left{
    width: 90%;
    padding: 20px;
}
.section2_content_left>div{
    display: flex;
    flex-direction: column;
}
.section2_content_left>div>h2{
    font-size: 16px;
    color: #232323;
    margin-top: 10px;
    margin-bottom: 5px;
}
.section2_content_left>div>img{
    width: 250px;
    margin: 15px 0;
}
.section2_content_left>div>h1{
    font-size: 22px;
    color: #232323;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}
.section2_content_left>div>a{
    font-size: 10px;
    color: teal;
    margin-bottom: 5px;
    margin-top: 15px;
}
.section2_content_left>div>p{
    font-size: 12px;
    color: #232323;
    
}
.section2_content_right{
    flex: 4;
}
.section2_content_right{
    width: 90%;
    padding: 20px;
}
.section2_content_right>div{
    display: flex;
    flex-direction: column;
    
}
.section2_content_right>div>img{
    width: 160px;
    margin: 5px 0;
}
.section2_content_right>div>h1{
    font-size: 18px;
    color: #232323;
    margin-top: 5px;
    font-weight: bold;
}
.section2_content_right>div>h2{
    font-size: 18px;
    color: #232323;
    font-weight: bold;
}
.section2_content_right>div>a{
    font-size: 14px;
    color: teal;
    margin-top: 10px;
}
.section2_content_right>div>p{
    font-size: 12px;
    color: #232323;
    margin-top:5px;
    margin-bottom: 5px;
}





/*--footer-start--*/
.footer-section{
    width: 100;
    height: auto;
    padding: 10px 20px;
    margin-top: 30px;
    background-color: #363333;
}
.footer-section1{
    flex: 1;
}
.footer-section2{
    flex: 1;
}
.footer-section3{
    flex: 1;
}

.footer-section4{
    flex: 1;
}
.footer-section1{
    width: 100%;
    padding-left: 30px;
}
.footer-section1 h2{
    font-size: 16px;
    margin-bottom: 5px;
    color: #ffffff;
}
.footer_section2_p{
    font-size: 12px;
    margin-bottom: 5px;
    color: rgb(255, 255, 255);
}
.footer_section2_p:hover{
    color: rgb(143, 167, 143);
}
.footer-section2{
    width: 100%;
    padding-left: 30px;
}
.footer-section2 h2{
    font-size: 16px;
    margin-bottom: 7px;
    color: #ffffff;
}
.footer-section3{
    width: 100%;
    padding-left: 30px;
}
.footer-section3 h2{
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 7px;
}
.footer-section4{
    width: 100%;
    padding-left: 30px;
}
.footer-section4 h2{
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 7px;
}
.footer-bottom-link{
    font-size: 12px;
    color: #ffffff;
    cursor: pointer;
    margin-bottom: 7px;
}
.footer-bottom-link:hover{
    color: rgb(143, 167, 143);
    /* transition: 0.4s;
    border-bottom: 0.5px solid green; */
}

.footer-bottom-copyright{
    padding: 80px 0 30px 0;
    font-size: 12px;
    color: #ffffff;
    font-style: bold;
}

/*--footer-ends--*/

