     @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');



.side-bar{
 background:#fff;
/* backdrop-filter: blur(15px);*/
 max-width: 300px;
 height: 100vh;
 position: fixed;
 top: 0;
 left: -300px;
 overflow-y: auto;
 transition: 0.6s ease;
 transition-property: left;
 z-index: 9999999;
}
.side-bar::-webkit-scrollbar {
  width: 0px;
}



.side-bar.active{
 left: 0;
}
h1{

  text-align: center;
  font-weight: 500;
  font-size: 25px;
  padding-bottom: 13px;
  font-family: sans-serif;
  letter-spacing: 2px;
}

.side-bar .menu{
 width: 100%;
 margin-top: 30px;
}

.side-bar .menu .item{
 position: relative;
 cursor: pointer;
}

.side-bar .menu .item a{
    font-size: 15px;
    text-decoration: none;
    display: flex;
    padding-left: 30px;
    padding-right: 10px;
    height: 50px;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
    cursor: pointer;
    font-weight: 600;
    align-items: center;
    justify-content: space-between;

}

.side-bar .menu .item a:hover{
 background: rgb(243, 243, 243);

}

.side-bar .menu .item i{
 margin-right: 15px;
}

.side-bar .menu .item a .dropdown{
 position: absolute;
 right: 0;
/* margin: 20px;*/
 transition: 0.3s ease;
}

.side-bar .menu .item .sub-menu{
    transition: height 300ms ease 0s;
    box-sizing: border-box;
    background-color: white;
    position: static !important;
    transform: none !important;
 display: none;
 
}

.side-bar .menu .item .sub-menu a{
 padding-left: 40px;
}

.rotate{
 transform: rotate(90deg);
}
h4.title{ font-size:18px; }
.close-btn {
/*    position: absolute;*/
    color: #fff;
    font-size: 14px;
    right: 10px;
    /* margin: 15px; */
    cursor: pointer;
    background: #eb6753;
    height: 35px;
    width: 35px;
    border-radius: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
        margin-left: 10px;
}

/*.menu-btn{
 position: absolute;
 color: white;
 font-size: 35px;
 margin: 25px;
 cursor: pointer;
 z-index: 99999;
}*/

.main{
 height: 100vh;
 display: flex;
 justify-content: center;
 align-items: center;
 padding: 50px;
}

.main h1{
 color: rgba(255, 255, 255, 0.8);
 font-size: 60px;
 text-align: center;
 line-height: 80px;
}
.hedbar {
    border-bottom: 1px solid #dddddd;
    padding: 22px 20px 15px 15px;
    display: block;
    /* position: relative; */
    background: rgba(235,103,83,.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tops {
    position: relative;
    top: 5px;
}
.blaky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 2222;
    display: none;
}

.blaky.bgactive {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 2222;
    display:block;
        opacity: .5;
}
.modal {
   
    z-index: 9999999 !important;
}
.sfont{font-size: 16px;}
@media (max-width: 900px){
 .main h1{
   font-size: 40px;
   line-height: 60px;
 }
}