.navRight{
  box-shadow: 0 5px 10px 0 rgb(138 155 165 / 15%);
  padding: 0 0 8px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  padding-top: 38px;
  background: #fff;
}
.navRight .btnNav{
  position: absolute;
  top: 0;
  right: 15px;
  height: 45px;
  width: 45px;
  text-align: center;
  background: #2361b8;
  border-radius: 3px;
  cursor: pointer;
  transition: right 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.navRight .btnNav.click{
  right: 260px;
}
.navRight .btnNav span.fa-bars{
  width: 24px;
  height: 17px;
  background-image: none;
  position: relative;
  border-bottom: 1px solid #fff;
  transition: all 300ms linear;
  display: inline-block;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}
.navRight .btnNav.click span.fa-bars{border-color: transparent;}
.navRight .btnNav span.fa-bars::before, .navRight .btnNav span.fa-bars:after{
  width: 24px;
  position: absolute;
  height: 1px;
  background-color: #fff;
  top: 0;
  left: 0;
  content: "";
  z-index: 2;
  transition: all 300ms linear;
}
.navRight .btnNav span.fa-bars:after{
  top: 8px;
}
.navRight .btnNav.click span.fa-bars::before{transform: translateY(8px) rotate(-45deg);}
.navRight .btnNav.click span.fa-bars:after{transform: rotate(45deg);}
.navRight .sidebar{
  position: fixed;
  width: 250px;
  height: 100%;
  right: -250px;
  background: #1b1b1b;
  transition: right 0.4s ease;
  top: 30px;
}
.navRight .sidebar .sidebarLogo img{
  height: 30px;
  filter: brightness(0) invert(1);
}
.navRight .sidebar.show{
  right: 0px;
}
.navRight .sidebar .text{
  color: white;
  font-size: 25px;
  font-weight: 600;
  line-height: 65px;
  text-align: center;
  background: #1e1e1e;
  letter-spacing: 1px;
}
.navRight nav ul{
  background: #1b1b1b;
  height: 100%;
  width: 100%;
  list-style: none;
}
.navRight nav ul li{
  line-height: 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.navRight nav ul li:last-child{
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navRight nav ul li a{
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding-left: 20px;
  font-weight: 500;
  display: block;
  width: 100%;
  border-left: 4px solid transparent;
}
.navRight nav ul li.active a{
  color: #4184db;
  background: #1e1e1e;
  border-left-color: #4184db;
}
.navRight nav ul li a:hover{
  background: #1e1e1e;
}
.navRight nav ul ul{
  position: static;
  display: none;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.navRight nav ul li a span.fa-caret-down img{
  filter: brightness(0) invert(1);
}
.navRight nav ul .feat-show.show{
  display: block;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.navRight nav ul .serv-show.show1{
  display: block;
}
.navRight nav ul .packg-show.showpackage{
  display: block;
}
.navRight nav ul ul li{
  line-height: 42px;
  border-top: none;
}
.navRight nav ul ul li a{
  font-size: 16px;
  color: #e6e6e6;
  padding-left: 40px;
  font-weight: 300;
}
.navRight nav ul li.active ul li a{
  color: #e6e6e6;
  background: #1b1b1b;
  border-left-color: transparent;
}
.navRight nav ul ul li a:hover{
  color: #4184db!important;
  background: #1e1e1e!important;
}
.navRight nav ul li a span{
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 22px;
  transition: transform 0.4s;
}
.navRight nav ul li a span.rotate{
  transform: translateY(-50%) rotate(-180deg);
}
.navRight .content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #202020;
  z-index: -1;
  text-align: center;
}
.navRight .content .header{
  font-size: 45px;
  font-weight: 600;
}
.navRight .content p{
  font-size: 30px;
  font-weight: 500;
}