*{
    margin: 0;
    padding: 0;
    text-decoration: none;
}
.flexcenter{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.flex-sparase{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.navmenu{
    border-bottom: 1px solid gray;
    min-height: 40px;
    top: 0;
    left: 0;
    position: sticky;
    z-index: 100;
    background-color: #fff;
}
/* Dropdown Button */
.dropbtn {
    background-color: transparent;
    color: rgb(0, 0, 0);
    padding: 5px 16px;
    font-size: 14px;
    border: none;
    cursor: pointer;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    text-align: justify;
    display: none;
    position: absolute;
    background-color: #dcdddd;
    min-width: 160px;
    box-shadow: 0px 8px 16px 1px rgba(0,0,0,0.3);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: rgb(0, 0, 0);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #125a3c; color: rgb(255, 255, 255);}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  /* .dropdown:hover .dropbtn {border: 1px solid gray;} */

  @media screen and (max-width: 600px) {
    .footer-top{
        flex-direction: column;
        gap: 14px;
        
    }
    .section1_left{
        display: none;
      }
      .section1_right{
        display: none;
      }
  }

  @media screen and (max-width: 720px) {
    .footer-top{
        flex-direction: column;
        gap: 14px;
        
    }
    .section1_left{
        display: none;
      }
      .section1_right{
        display: none;
      }
  }

  @media screen and (max-width: 992px) {
    .section1_left{
        display: none;
      }
  }



  .section1{
    display: flex;
  }

  .section1_left{
    flex: 2;
  }
  .section1_meddle{
    flex: 5;
  }
  .section1_right{
    flex: 2;
  }
  .section1_meddle{
    padding: 10px;
  }


  .section1_meddle_img>img{
    width: 320px;
  }
  .section1_meddle_content>h1{
    font-size: 22px;
    color: #353434;
    font-weight: 600;
    margin-top: 5px;
  }
  .section1_meddle_content>p{
    font-size: 12px;
    color: #353434;
    font-weight: 500;
    margin: 5px 0;
  }
  .section1_meddle_content>img{
    width: 300px;
    margin: 8px 0;
  }
  .section1_meddle_content>h4{
    font-size: 14px;
    margin: 5px 0;
  }
  .section1_meddle_content>a>h2{
    font-size: 18px;
    color: #0baa48;
    font-weight: 600;
    margin-top: 5px;
}
  .section1_meddle_content>a>h2:hover{
    color: #061a0e;
    transition: all 0.3s;
  }

  .section1_meddle_content>h2{
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    margin-top: 5px;
  }
  .section1_meddle_content>a>h3{
    font-size: 18px;
    color: #0baa48;
    font-weight: 400;
    margin-top: 5px;
  }
  .section1_meddle_content>li{
    font-size: 14px;
  }
  .section1_meddle_content>h3{
    font-size: 18px;
    color: #020202;
    font-weight: 400;
    margin-top: 5px;
  }
  .section1_meddle_content>a{
    font-size: 12px;
    color: #0b742a;
    font-weight: 400;
  }






  .footer-section{
    /* width: 100%; */
    height: auto;
    padding: 20px 20px;
    margin-top: 30px;
    background-color: #313030;
}
.footer-top{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    justify-content: space-around;
}
.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: #ffffff;
    font-weight: 500;
}

.footer-section2 h2{
    font-size: 14px;
    margin-bottom: 2px;
    color: #ffffff;
    font-weight: 500;
}

.footer-section3 h2{
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 7px;
    font-weight: 500;
}

.footer_section2_p{
    font-size: 12px;
    margin-bottom: 7px;
    color: rgb(255, 255, 255);
}

.footer-section4 h2{
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 7px;
    font-weight: 500;
}
.footer-bottom-link{
    font-size: 12px;
    color: #ffffff;
    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: #ffffff;
    font-style: bold;
}
.flex_start{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}