body {
  position: relative;
  overflow-x: hidden;
  background-color: #ffffff;
}
body,
html {/* height: 100%; */}
.nav .open > a, 
.nav .open > a:hover, 
.nav .open > a:focus {background-color: transparent;}

/*-------------------------------*/
/*           Wrappers            */
/*-------------------------------*/

#wrapper {
  padding-left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-bottom: 10px;
}

#wrapper.toggled {
  padding-left: 220px;
}

#sidebar-wrapper {
  z-index: 1000;
  left: 220px;
  width: 0;
  height: 100%;
  margin-left: -220px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #1a1a1a;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#sidebar-wrapper::-webkit-scrollbar {
display: none;
}

#wrapper.toggled #sidebar-wrapper {
  width: 220px;
}

#page-content-wrapper {
  width: 100%;
  padding-top: 0;
}

#wrapper.toggled #page-content-wrapper {
  position: absolute;
  margin-right: -220px;
}

/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/
.navbar {
padding: 0;
}

.sidebar-nav {
  position: absolute;
  top: 0;
  width: 220px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-nav li {
  position: relative;
  line-height: 20px;
  /* display: flex; */
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

/* .sidebar-nav li:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  height: 60%;
  width: 3px;
  background-color: #ff6c4aad;
  -webkit-transition: width .2s ease-in;
  -moz-transition:  width .2s ease-in;
  -ms-transition:  width .2s ease-in;
  transition: width .2s ease-in;
  transform: translate(-50%, -50%);
} */
.sidebar-nav li:hover{background: #7b7b7b57 !important;border-radius: 0;margin-right: 0;transition: margin 330ms ease-in-out;}
.sidebar-nav li:hover:before,
/* .sidebar-nav li.open:hover:before {
  width: 6px;
  -webkit-transition: width .2s ease-in;
  -moz-transition:  width .2s ease-in;
  -ms-transition:  width .2s ease-in;
  transition: width .2s ease-in;
} */
.sidebar-nav li ul li:hover{background: #96969657 !important;border-radius: 0;margin-right: 0;transition: margin 330ms ease-in-out;}
.sidebar-nav li a {
  display: block;
  color: #ddd;
  text-decoration: none;
  padding: 15px;
  text-transform: capitalize;
  width: 100%;
  border-top: 1px solid #5f5e5e;
  position: relative;
}
.sidebar-brand img{
  width: 200px;
  height: 100%;
  object-fit: contain;
}
.sidebar-nav li a:hover,
.sidebar-nav li a:active,
.sidebar-nav li a:focus,
.sidebar-nav li.open a:hover,
.sidebar-nav li.open a:active,
.sidebar-nav li.open a:focus{
  color: #fff;
  text-decoration: none;
  background-color: transparent;
}
.sidebar-header {
  text-align: center;
  font-size: 20px;
  position: relative;
  width: 100%;
  display: inline-block;
}
.sidebar-brand {
  /* height: 55px; */
  position: relative;
  background: #aaaaaa;
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 10px 10px;
}
.sidebar-brand a {
  color: #fff;
  text-decoration: none;
}
.sidebar-brand a:hover {
  color: #fff;
  text-decoration: none;
}
.dropdown-header {
  text-align: center;
  font-size: 1em;
  color: #ddd;
  background:#212531;
  background: linear-gradient(to right bottom, #2f3441 50%, #212531 50%);
}
.sidebar-nav .dropdown-menu {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: none;
  background-color: #100f0f;
  box-shadow: none;
}
.dropdown-menu.show {
  top: 0;
}

.hamburger {position: relative;z-index: 999;display: block;width: 32px;height: 32px;margin-left: 15px;background: transparent;border: none;}
.hamburger:hover,
.hamburger:focus,
.hamburger:active {
outline: none;
}
.hamburger.is-closed:before {
content: '';
display: block;
width: 100px;
font-size: 14px;
color: #fff;
line-height: 32px;
text-align: center;
opacity: 0;
-webkit-transform: translate3d(0,0,0);
-webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover:before {
opacity: 1;
display: block;
-webkit-transform: translate3d(-100px,0,0);
-webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
position: absolute;
left: 0;
height: 4px;
width: 100%;
}
.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
background-color: #1a1a1a;
}
.hamburger.is-closed .hamb-top { 
top: 5px; 
-webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed .hamb-middle {
top: 50%;
margin-top: -2px;
}
.hamburger.is-closed .hamb-bottom {
bottom: 5px;  
-webkit-transition: all .35s ease-in-out;
}

.hamburger.is-closed:hover .hamb-top {
top: 0;
-webkit-transition: all .35s ease-in-out;
}
.hamburger.is-closed:hover .hamb-bottom {
bottom: 0;
-webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
background-color: #1a1a1a;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
top: 50%;
margin-top: -2px;  
}
.hamburger.is-open .hamb-top { 
-webkit-transform: rotate(45deg);
-webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open .hamb-middle { display: none; }
.hamburger.is-open .hamb-bottom {
-webkit-transform: rotate(-45deg);
-webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open:before {
content: '';
display: block;
width: 100px;
font-size: 14px;
color: #fff;
line-height: 32px;
text-align: center;
opacity: 0;
-webkit-transform: translate3d(0,0,0);
-webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open:hover:before {
opacity: 1;
display: block;
-webkit-transform: translate3d(-100px,0,0);
-webkit-transition: all .35s ease-in-out;
}
header{
  position: relative;
  height: 60px;
  display: flex;
  /* justify-content: space-between; */
  width: 100%;
  padding: 10px;
  align-items: center;
}
.search{
  display: flex;
  justify-content: end;
}
.btn-search {line-height: 1;}
.btn-search:hover svg path, .icon li:hover svg path,
.icon li:hover svg g{
  stroke:rgb(17, 17, 17);
fill:white
}
.icons{
    display: flex;
    position: absolute;
    right: 0;
    top: 0;
}
.icon{display: inline-block;padding-left: 0;margin: 0;}
.icon li{list-style: none;background: rgb(242 244 249);margin: 7px 0;border-radius: 50% 0 0 50%;padding: 5px 5px;box-shadow: -6px 2px 8px #00000029;cursor: pointer;position: relative;}
.icon li:hover{
  background: #ff6c4a;
}
.img-box{position: relative;}
/*-------------------------------*/
/*            Overlay            */
/*-------------------------------*/


[hover-tooltip]:hover::before {
  content: attr(hover-tooltip);
  font-size: 14px;
  text-align: center;
  position: absolute;
  display: block;
  left: 0;
  min-width: 150px;
  max-width: 200px;
  bottom: 0;
  transform: translate(-108%);
  animation: fade-in 300ms ease;
  background: #272727;
  border-radius: 4px;
  padding: 10px;
  color: #ffffff;
  z-index: 1;
}
[hover-tooltip]:hover::after {
  content: "";
  position: absolute;
  display: block;
  left: -28%;
  width: 0;
  height: 0;
  bottom: 13px;
  margin-left: -3px;
  border: 1px solid black;
  border-color: #272727 transparent transparent transparent;
  border-width: 11px 6px 0;
  animation: fade-in 300ms ease;
  z-index: 1;
  transform: rotate(267deg);
}
[hover-tooltip][tooltip-position=bottom]:hover::before {
  bottom: auto;
  top: calc(100% + 10px);
}
[hover-tooltip][tooltip-position=bottom]:hover::after {
  bottom: auto;
  top: calc(100% + 6px);
  border-color: transparent transparent #272727;
  border-width: 0 6px 4px;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.img-text{padding: 6px 0 0;text-align: center;}
.img-text h5{
  margin: 0;
  font-size: 18px;
  text-transform: capitalize;
}
.box{
  border: 1px solid #d3d1d1;
  padding: 6px;
  border-radius: 10px;
  background: rgb(13 110 253 / 3%);
  box-shadow: -1px 1px 8px #00000024;
  cursor: pointer;
  -webkit-transition: all .35s ease-in-out;
  margin-top: 20px;
}
.box a{color: #000;
text-decoration: none;
}
.box:hover{
  box-shadow: -1px 1px 17px #00000063;
}
.img-box img{
  border-radius: 10px;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  position: absolute;
  right: 15px;
  transform: translate(-50%, -50%);
  top: 50%;
}
.nav-tabs{
  border: 0;
}
.nav-tabs .nav-link.active{
  border: 0;
  background: #ffc107;
  border-radius: 25px;
  color: white;
}
.nav-tabs button{
  border: 0 !important;
  background: #e3e3e3;
  border-radius: 25px !important;
  color: rgb(7, 7, 7);
  margin: 5px;
}

.videolink iframe {
    width: 100%;
    height: 95vh;
    margin: 0px auto;
    background: #f9eca9;
}

.videolink canvas{
    width: 100%;
    height: 100%;  
}

.innerheader {
    height: inherit;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0px 5px 5px #00000017;
    padding: 5px;
}
.innerheader img {
    width: 180px;
}
.calltoaction {
    text-align: right;
}
.calltoaction ul {
    padding: 0px;
    margin: 0px;
}
.calltoaction ul li {
    display: inline-flex;
    margin: 0px 10px;
}
.calltoaction ul li a {
    text-decoration: none;
    color: #333;
    font-size: 17px;
}
.videolink {
    padding-top: 30px;
}


@media screen and (max-width: 767px){
  .nav-tabs button {
    border: 0 !important;
    background: #e3e3e3;
    border-radius: 25px !important;
    color: rgb(7, 7, 7);
    margin: 2px;
    font-size: 14px;
}
header{display: block;}
#page-content-wrapper {
  padding-top: 15px;
}
.nav-tabs {
  border: 0;
  /* margin-bottom: 20px; */
  flex-wrap: nowrap;
  overflow: scroll;
  justify-content: start !important;
}
}