@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  font-family: 'Lato', sans-serif;
}

body {
  /* background-color: #ccc; */
}

.top-container {
    width: 100%;
    display: block;
    border-bottom: 1px solid #ccc;
}

.logo {
  display: inline-block;
  float: right;
  line-height: 0px;
  margin-top: 9px;
}

.logo a {
  line-height: 0px;
  display: inline-block;
}

.logo img{
  width: 70%;
  float: right;
}


nav{
  /* position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%); */
  background: #fff;
  width: 100%;
  line-height: 40px;
  padding: 8px 20px;
  /* border-radius: 5px; */
}
nav label{
  color: #000;
  font-size: 22px;
  font-weight: 500;
  display: inline-block;
  cursor: pointer;
}

/* nav label.button.open {
  display: block;
} */

.hide {
  display: none;
}

.open {
  display: inline-block;
}

.button span{
  float: right;
  line-height: 40px;
  transition: 0.5s;
}
.button span.rotate{
  transform: rotate(-180deg);
}

nav ul{
  position: absolute;
  background: #1b1b1b;
  list-style: none;
  /* top: 75px; */
  left: 0;
  width: 85%;
  /* border-radius: 5px; */
  display: none;
}
[id^=btn]:checked + ul{
  display: block;
  background-color: #fff;
  padding: 0px;
  z-index: 140!important;
}

.menu.top {
  margin-top: 8px;
  border-right: 1px solid #ccc;
}


.fa-phone-alt {
  display: inline-block!important;
  float: right!important;
  line-height: 40px!important;
}



/* nav .menu:before{
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  background: #1b1b1b;
  right: 20px;
  top: -10px;
  transform: rotate(45deg);
  z-index: -1;
} */


nav ul li{
  line-height: 40px;
  padding: 8px 20px;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
  max-height: 300px;
  overflow: auto;
}
nav ul li label{
  font-size: 11px;
  width: 100%;
  font-weight: 700;
}
nav ul li a{
  color: white;
  text-decoration: none;
  font-size: 18px;
  display: block;
}
nav ul li a:hover,
nav ul li label:hover{
  /* color: #BE1034; */
}
nav ul ul{
  position: static;
}
nav ul ul li{
  line-height: 30px;
  padding-left: 0px;
  border-bottom: none;
}
nav ul ul li a{
  color: #000;
  font-size: 12px;
  font-weight: 400;
}
nav ul li span{
  font-size: 12px;
  float: right;
  margin-top: 14px;
  padding: 0 10px;
  transition: 0.5s;
}
nav ul li span.rotate{
  transform: rotate(90deg);
}
input{
  display: none;
}

.active {
  color: #BE1034;
}