@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  //margin: 0;
  //padding: 0;
  //user-select: none;
  //box-sizing: border-box;
  //font-family: 'Poppins', sans-serif;
}

.btn{
  position: absolute;
  //top: 220px;
  //right: 40px;
  height: 20px;
  width: 20px;
  padding:6px 12px;
  margin-right:-50px;
  text-align: left;
  background: #500000;
  color: white;
  border: solid white 1px;
  border-radius: 5px;
  cursor: pointer;
  //transition: left 0.4s ease;
}

@media screen and (max-width: 1034px) {
.btn {top: 245px; left: 0px}
}
/*
@media screen and (max-width: 700px) {
.btn {top: 220px;}
}


@media screen and (max-width: 600px) {
.btn {top: 265px; right: 30px}
}


@media screen and (max-width: 500px) {
.btn {top: 265px; right: 30px}
}
*/

.btn.click{
position: fixed;
left: -16px;  
top: 155px;
}

.btn:hover{
background:#525252;
}

.btn span{
  color: white;
  font-size: 21px;
  line-height: 5px;
}
.btn.click span:before{
  content: '\f00d';
}
.btn span:hover{
}

.sidebar{
  user-select: none;
  margin: 0;
  padding:0;
  position: relative;
  width: 100%;
  //background: #500000;
  visibility: hidden;
  transition: visibility .5s, max-height .5s;
  max-height: 0;
  overflow: hidden; 
 }


@media screen and (max-width: 1000px) {
.sidebar{
//top: 215px;
}
}

@media screen and (max-width: 600px) {
.sidebar{
//top: 208px;
}
}

.sidebar.show{
  visibility: visible;
  max-height:460px;
  overflow:hidden;
  left: 0px;
  }
.sidebar.show2{
  visibility: visible;
  max-height:660px;
  overflow:hidden;
  left: 0px;
  }
  
 .sidebar .text{
  color: black;
  font-size: 11px;
  font-weight: 600;
  line-height: 65px;
  text-align: left;
  background: #fff;
  letter-spacing: 1px;
  margin: 0;
  padding:0;
}

.sidenav nav ul{
  margin: 0;
  padding:0;
  //background: #500000;
  width: 100%;
  list-style: none;
}

.sidenav nav ul li{
  line-height: 60px;
  //border-top: 1px solid rgba(255,255,255,0.1);
}

.sidenav nav ul li:last-child{
  //border-bottom: 1px solid rgba(255,255,255,0.05);
}


.sidenav .active nav ul li a:hover{
  //background:#500000;
}

.sidenav nav ul ul{
  position: static;
  display: none;
}

.sidenav nav ul .feat-show {
display:none
}

.sidenav nav ul .feat-show.show{
  display: block;
}

.sidenav nav ul .serv-show.show1{
  display: block;
}

.sidenav nav ul ul li{
  line-height: 42px;
  border-top: none;
}

.sidenav nav ul ul li a{
  font-size: 11px;
  padding-left: 10px;
}

.fas {
display:none;
}

.sidenav nav ul ul li a:hover{
  color: grey!important;
  background:#500000;
}

.sidenav nav ul li a span{
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  font-size: 22px;
}

.sidenav nav ul li a span.rotate{
  transform: translateY(-50%) rotate(-180deg);
}

.active a {
//color:green;
}

.content{
  margin: 0;
  padding:0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #202020;
  z-index: -1;
  text-align: left;
}
.content .header{
  font-size: 45px;
  font-weight: 600;
}
.content p{
  margin: 0;
  padding:0;
  font-size: 30px;
  font-weight: 500;
}
@media screen and (min-width: 1034px) {
.btn {display:none}
.sidenav {display:none;}
}

