/* NAVBAR STYLING STARTS */
.navbar {
  display: block;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #FFF;
  color: #006E59;
}

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

.nav-links a:hover {
  color: #CCC;
  text-decoration: underline;
}

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

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

.menu li:hover {
   text-decoration: underline;
  border-radius: 5px;
  transition: 0.3s ease;
}

.menu li {
  padding: 5px 97px;
}

/* DROPDOWN MENU */
.services {
  position: relative; 
}

.dropdown {
  background-color: #006E59;
  color:#fff;
  padding: 1em 0;
  position: absolute; /*WITH RESPECT TO PARENT*/
  display: none;
  border-radius: 8px;
  top: 35px;
}

.dropdown li + li {
  margin-top: 10px;
}

.dropdown li {
  padding: 0.5em 1em;
  width: 8em;
  text-align: center;
}

.dropdown li:hover {
  background-color: #fff;
}

.services:hover .dropdown {
  display: block;
}




/** END**/



/* RESPONSIVE NAVBAR MENU STARTS */

/* CHECKBOX HACK */

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:#006E59;
    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;
  }

  .dropdown {
    left: 50%;
    top: 30px;
    transform: translateX(35%);
  }

  .dropdown li:hover {
    background-color: #4c9e9e;
  }
}



a {
  text-decoration: none;
}

li {
  list-style: none;
}




/* Responsive Width*/
@media only screen and (min-width : 320px) and (max-width : 480px) {

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


}

@media only screen and ( max-width:375px) {
.menu li
{
padding:    5px 43px}

}







/**
.nav-bar {
    background: #E8CA80;
    width: 100%;
    z-index:100;
}

.nav-bar__label {
    color: #fff;
     font-size: 1em;
    display: block;
    padding: 10px 0;
    text-align: center;
    text-transform: uppercase;
    width: inherit;
}

.nav-bar__label::after,
.nav-bar__sub-label::after {
    content: " +";
}

.nav-bar__label,
.nav-bar__sub-label {
    cursor: pointer;
}

.nav-bar__list {
    background: #E8CA80;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.nav-bar__list,
[id^="toggle"] {
    display: none;
}

[id^="toggle"]:checked + .nav-bar__list {
    display: block;
}

.nav-bar__list-item {
    display: block;
}

.nav-bar__link,
.nav-bar__sub-label {
    color: #fff;
    font-size: 1em;
    display: block;
    padding: 10px 40px;
    text-decoration: none;
    word-wrap: break-word;

 
}

.nav-bar__list-item .nav-bar__list-item .nav-bar__link,
.nav-bar__list-item .nav-bar__list-item .nav-bar__sub-label {
    padding: 10px 10px 10px 30px;
}

.nav-bar__link:hover,
.nav-bar__link:active,
.nav-bar__sub-label:hover {
    background:blue;
    color:#fff;
}



.nav-bar > ul { margin-left: 371px;}



@media all and (min-width : 992px) {
    .nav-bar > .nav-bar__label {
        display: none;
    }

    .nav-bar > .nav-bar__list {
        display: block;
    }

    .nav-bar > .nav-bar__list > .nav-bar__list-item {
        display: inline-block;
        position: relative;
    }

    .nav-bar__list-item .nav-bar__list {
        position: absolute;
    }

    .nav-bar__list-item .nav-bar__list-item .nav-bar__link,
    .nav-bar__list-item .nav-bar__list-item .nav-bar__sub-label {
        padding: 10px 20px;
    }
}

@media all and (max-width :375px) {
.nav-bar > ul { margin-left: 121px;}
    
}
@media all and (max-width:568px) {
 .nav-bar > ul { margin-left: 210px;}   
}
@media all and (min-width :300px) and (max-width: 414px ) {
    .nav-bar > ul { margin-left: 118px;}
        
    }

chamged from min-width:320px to min-width: 300px****/



