ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
}

li {
  display: inline-block;
  float: left;
  margin-right: 1px;
}

@media (max-width: 767.98px) {
  li a {
    border: solid rgb(255,217,225) 1px;
    margin-top: -5px;
    margin-left: 0px!important;
    border-radius: 10px;
    display: block;
    min-width: 140px;
    height: 50px;
    text-align: center;
    line-height: 35px;
    font-family: 'Lato';
    color: #434343;
    background: rgba(255,255,255,0.99);
    text-decoration: none;
  }
}

li a {
  margin-left: 20px;
  border-radius: 10px;
  display: block;
  min-width: 140px;
  height: 50px;
  text-align: center;
  line-height: 35px;
  font-family: 'Lato';
  color: #434343;
  background: #ffffff;
  text-decoration: none;
}

li:hover a {
  border-radius: 15px;
  color: black;
  background: #fbedf0;
}

.show-menu {
  font-family: 'Lato';
  text-decoration: none;
  color: #3d3d3d;
  background: #fdc3ce;
  text-align: center;
  padding: 12px 0px;
  display: none;
}

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

@media screen and (max-width : 760px) {
  ul {
    position: static;
    display: none;
  }
}

@media screen and (max-width : 760px) {
  li {
    margin-bottom: 1px;
  }
}

@media screen and (max-width : 760px) {
  ul li, li a {
    width: 100%;
  }
}

@media screen and (max-width : 760px) {
  .show-menu {
    display: block;
  }
}

