html * {
  margin: 0;
}

.container-header {
  background-color: #1c48e4;
  background-image: none;
}

.container-header .container-nav {
    padding: 0;
    margin-left: 10px;
}

.headers {
  font-family: poppins;
  font-size: 20px;
  width: 100%;
  background: #1c48e4;
  color: white;
}

span {
  padding-left: 3px;
}

.dws-menu ul {
  /* margin: 0px; */
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dws-menu a {
  display: block;
  padding: 10px 10px;
  font-family: poppins;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .3s ease;
}

.dws-menu li a:hover {
  color: #ff0000;
  box-shadow: 1px 5px 10px -5px #000;
  transition: all .3s ease;
}

@media all and (max-width: 360px) {

  span {
    font-size: 1rem;
    /* margin-left: 3px; */
  }

  .breadcrumb {
    display: none;
  }
   
  .dws-menu a {
    display: block;
    padding: 10px;
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s ease;
  }
}




