

/* loves */

.loves {float:left;
     margin: auto;
     width: 100%;
background:#7A8889;
      padding:10px 0;
  }

.loves ul {
     margin: auto;
    width: 100%;
    float: left;
	text-align: center;
  list-style: none;
  overflow: hidden;
 }
.loves ul li{
display: inline-block;
   float: none;
    list-style: none;
	margin: 0 5px; 
	 -webkit-border-radius:10px;
-moz-border-radius:10px;
border-radius:10px;
}


.loves li a {
	 line-height:28px!important;
 	color: #fff;
text-decoration: none;
text-transform:uppercase;
padding:5px 20px;
display: block;
font-size: 20px;
font-weight:850;
border-left: none;
border-right: none;
 }

.loves li a:hover,
.loves .menu-btn:hover {
 background:red;
    color: #000;
	 -webkit-border-radius:10px;
-moz-border-radius:10px;
border-radius:10px;
}
 
/* menu */

.loves .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.loves .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none; color:#ff4757;
}

.loves .menu-icon .navicon {
  background: #E7A40B;
  display: block;
  height:3px;
  position: relative;
  transition: background .2s ease-out;
  width: 30px;
}

.loves .menu-icon .navicon:before,
.loves .menu-icon .navicon:after {
  background: #E7A40B;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.loves .menu-icon .navicon:before {
  top: 5px;
}

.loves .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.loves .menu-btn {
  display: none;
}

.loves .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.loves .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.loves .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.loves .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.loves .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.loves .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 48em) {
  .loves li {
    float: left;
  }
  .loves li a {
    padding:10px 15px;
  }
  .loves .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .loves .menu-icon {
    display: none;
  }
}
