
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}
main{
    min-height:600px;
    margin-top:60px;
    margin-left: 230px;
}
::-webkit-scrollbar {
display: none
}

/* CHECKBOX HIDE */

#menuToggle,
#profileToggle{
display:none;
}

/* HEADER */

.header{
    height:60px;
    background:#0d6efd;
    color:white;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 15px;
    position:fixed;
    width:100%;
    top:0;
    z-index:400;
    user-select: none;
}

.menu-btn{
    display:none;
    font-size:24px;
    cursor:pointer;
    z-index:401;
}


/* PROFILE */

.profile{
    position:relative;
}

.profile-icon img{
    width:36px;
    height:36px;
    border-radius:50%;
    cursor:pointer;
}

.profile-menu{
    position:absolute;
    right:0;
    top:45px;
    background:white;
    width:150px;
    box-shadow:0 3px 10px rgba(0,0,0,0.2);
    border-radius:6px;
    display:none;
}





.profile-menu p{
    padding:10px;
    border-bottom:1px solid #ddd;
    color: #000;
}

.profile-menu a{
    display:block;
    padding:10px;
    text-decoration:none;
    color:#f00;
}

.profile-menu a:hover{
    background:#f2f2f2;
}

/* SIDEBAR */

.sidebar{
    width:230px;
    height: 100%;
    min-height:100vh;
    background:#111;
    color:white;
    position:fixed;
    top:60px;
    left:0;
    transition:.3s;
    z-index: 200 !important;
    user-select: none;
}

.sidebar a{
    display:block;
    padding:14px;
    color:white;
    text-decoration:none;
    border-bottom:1px solid #333;
}

.sidebar a:hover{
background:#333;
}


/* MOBILE */
.overlay, .overlayProfile{
    display:none;
}
.overlayProfile{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
}
#profileToggle:checked ~ .profile-menu{
    display:block;
}
#profileToggle:checked ~ .overlayProfile{
    display:block;
}

@media(max-width:768px){
    .sidebar{
    left:-230px;
    }
    
    #menuToggle:checked ~ .sidebar{
    left:0;
    }
    
    #menuToggle:checked ~ .overlay{
    display:block;
    }
    
    .overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    }
    
    
    .menu-btn{
    display:block;
    }
    
    main {
        margin-left: 0;
    }
}























.basefooter{
  position: relative;
  width: 100%;
  height: auto;
  padding: 50px 100px;
  background: #111;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index:300;
}

.basefooter .basecontainer{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}

.basefooter .basecontainer .sec{
  margin-right: 30px;
}

.basefooter .basecontainer .sec.baseaboutus{
  width: 40%;
}

.basefooter .basecontainer .sec h2{
  position: relative;
  color: #fff;
  font-weight: 500;
  margin-bottom: 15px;
}

.basefooter .basecontainer h2:before{
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #f00;
}

.basefooter p{
  color: #999;
}

.basefooter .basesci{
  margin-top: 20px;
  display: flex;
}

.basefooter .basesci li{
  list-style: none;
}

.basefooter .basesci li a{
  display: inline-block;
  height: 40px;
  width: 40px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 4px;
  color:white;
}

.basefooter .basesci li a:hover{
  background: #f00;
}

.basefooter .basequicklinks{
  position: relative;
  width: 25%;
}

.basefooter .basequicklinks ul li{
  list-style: none;
}

.basefooter .basequicklinks ul li a{
  color: #999;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
  transition: .2s;
}

.basefooter .basequicklinks ul li a:hover{
  color: #fff;
}

.basefooter .basecontact{
  width: calc(35% - 60px);
  margin-right: 0 !important;
}

.basefooter .basecontact .info{
  position: relative;
}

.basefooter .basecontact .info li{
  display: flex;
  margin-bottom: 16px; 
}

.basefooter .basecontact .info li span:first-child svg{
  fill: #fff;
  font-size: 20px;
  margin-right: 10px;
}

.basefooter .basecontact .info li span{
  color: #999;
}
.basefooter .basecontact .info li a{
  color: #999;
  text-decoration: none;
  transition: .2s;
}

.basefooter .basecontact .info li a:hover{
  color: #fff;
}

.copyrightText{
  width: 100%;
  background: #181818;
  padding: 8px 100px;
  text-align: center;
  color: #999;
}

@media (max-width: 900px){
  .basefooter{
      padding: 40px;
  }
  .basefooter .basecontainer{
      flex-direction: column;
  }

  .basefooter .basecontainer .sec{
      margin-right: 0;
      margin-bottom: 40px;
  }

  .basefooter .basecontainer .basecontact{
    margin-bottom: 0;
  }
  
  .basefooter .basecontainer .sec.baseaboutus,.basefooter .basequicklinks,.basefooter .basecontact{
      width: 100%;
  }

  .copyrightText{
      padding: 8px 30px;
  }
}