body
{
background-color: beige;
}
#nb
{
    background-color:#4F7942;
    
}
#cd
{
    color:#d42d7e;
    font-size:18px;
}
.hn
{
    color: #04271e;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 40px;
    text-align:center;
    
}
#abt
{
    text-align: justify;
    color: #633d2e;
    font-family: 'Poppins', sans-serif;
    font-size:20px;
  /*  font-weight: 500;
    line-height: 30px;*/
}
#rad
{
     text-align: justify;
    color: #633d2e;
    font-family: 'Poppins', sans-serif;
    font-size:20px;
}

#footer
{
	background-color:#4F7942;
    border-radius: 10px;
    
}
.logo
{
    width:80px;
    height:60px;
    border-radius:50px;
}
.col-sm-search_div{
    position:absolute;
    top:31px;
    z-index: 1;
    width:200px;
    height: auto;
    max-height:300px;
    overflow-x: hidden;
    overflow-y: auto;
}
.col-lg-srch-div{
    position:absolute;
    top:38px;
    z-index:1;
    width:630px;
  max-height: 220px;
  overflow-y: auto;
  
}
#img-zoom
{
    transition: transform .2s;
}
#img-zoom:hover {
  -ms-transform: scale(1.5); /* IE 9 */
  -webkit-transform: scale(1.5); /* Safari 3-8 */
  transform: scale(1.5); 
}
hr.style18 { 
  height: 30px; 
  border-style: solid; 
  border-color: #8c8b8b; 
  border-width: 1px 0 0 0; 
  border-radius: 20px; 
} 
hr.style18:before { 
  display: block; 
  content: ""; 
  height: 30px; 
  margin-top: -31px; 
  border-style: solid; 
  border-color: #8c8b8b; 
  border-width: 0 0 1px 0; 
  border-radius: 20px; 
}
div.scrollmenu {
  /*background-color: #333;*/
  overflow: auto;
  white-space: nowrap;
}

div.scrollmenu a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px;
  text-decoration: none;
}

div.scrollmenu a:hover {
  background-color: #777;
  
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color:#fff;
  
  color: #000;
}

.nav-links a {
  color: #000;
  text-decoration:none;
  color:#000;
}

/* LOGO */
.logo {
  font-size: 32px;
}

/* NAVBAR MENU */
.menu {
  display: flex;
  gap: 1em;
  font-size: 18px;
}

.menu li:hover {
  background-color: #4c9e9e;
  border-radius: 5px;
  transition: 0.3s ease;
  
  
}

.menu li {
  padding: 5px 14px;
  list-style-type:none;
}
input[type=checkbox] {
  display: none;
} 

/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 24px;
  user-select: none;
}

/* APPLYING MEDIA QUERIES */
@media (max-width: 768px) {
 .menu {
    display:none;
    position: absolute;
    background-color:teal;
    right: 0;
    left: 0;
    text-align: center;
    padding: 16px 0;
  }

  .menu li:hover {
    display: inline-block;
    background-color:#4c9e9e;
    transition: 0.3s ease;
  }

  .menu li + li {
    margin-top: 12px;
  }

  input[type=checkbox]:checked ~ .menu {
    display: block;
  }

  .hamburger {
    display: block;
  }
