/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.head_main .btn {
    color:#333;
    border:none;
    font-size: 25px;
    display:none;
  }
  
  .head_main .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 16px;
    color:white;
  }
  .dropdown .mobile-item{display:none}
  input[type=checkbox], input[type=radio] {display:none;}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */

@media screen and (max-width: 970px) {
  

  .head_main .navbar {
    display:block;
  }
  
  .navbar .dropdown {
    float:none;
  }
  #menu-btn:checked ~ .navbar{
    left: 0%;
  }
  
  #menu-btn:checked ~ .btn.menu-btn{
    display:none;
  }
   
  .head_main .btn {
    display:block;
  }
  
  .head_main .btn:hover {
    background: none;
  }
 
  
@media screen and (max-width: 600px) {
  
  .head_main .navbar{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #61A932;
    display: block;
    padding: 50px 40px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  
  .head_main .navbar {
    display:block;
  }
  
  .head_main .navbar a {
    color:white;
    font-size: 20px;
    font-weight: 600;
  }
  
  .navbar .dropdown {
    float:none;
  }
  #menu-btn:checked ~ .navbar{
    left: 0%;
  }
  
  #menu-btn:checked ~ .btn.menu-btn{
    display:none;
  }
   
  .head_main .btn {
    display:block;
  }
  
  .head_main .btn .close-btn{color:white; font-size:25px;}
  
  .head_main .btn:hover {
    background: none;
    color:#fff
  }

  input[type=radio] {display:none;}
  
 
}