@import url('https://fonts.googleapis.com/css2?family=Noto+Serif&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
    font-family: 'Noto Serif', serif;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.headernav{
  background: #1b1b1b;
}

.headernav a,.show{
  opacity: 0.8;
}

.headernav a.active{
  opacity: 1;
}

.headernav:after{
  content : '';
  clear: both;
  display: table;
}

.headernav .logo{
  float: left;
  color: white;
  font-size: 27px;
  font-weight: 600;
  line-height: 70px;
  padding-left: 60px;
}

.headernav ul{
  float: right;
  list-style: none;
  margin-right: 40px;
}

.headernav ul li{
  float: left;
  display: inline-block;
  background: #1b1b1b;
  margin: 0 5px;
}

.headernav ul li a{
  color: white;
  text-decoration: none;
  line-height: 70px;
  font-size: 18px;
  padding: 8px 15px;
}
.headernav ul li a:hover{
  opacity: 1;
  color: cyan;
  border-radius: 5px;
  box-shadow: 0 0 5px #33ffff,
              0 0 5px #66ffff;
}

.headernav #logoutUser{
  opacity: .9;
  color: white;
  border-radius: 5px;
  box-shadow: none;
  background-color: #1877f2;
}
.headernav #logoutUser:hover{
  opacity: 1;
}

.headernav ul ul li a:hover{
  color: cyan;
  box-shadow: none;
}

.headernav ul ul{
  position: absolute;
  top: 90px;
  border-top: 3px solid cyan;
  opacity: 0;
  visibility: hidden;
  transition: top .3s;
  z-index: 1000000;
}

.headernav ul ul ul{
  border-top: none;
}

.headernav ul li:hover > ul{
  top: 70px;
  opacity: 1;
  visibility: visible;
}

.headernav ul ul li{
  position: relative;
  margin: 0px;
  width: 250px;
  float: none;
  display: list-item;
  border-bottom: 1px solid rgba(0, 0, 0, 0, .3);
}

.headernav ul ul li a{
  line-height: 50px;
}

.headernav ul ul ul li{
  position: relative;
  top: -70px;
  left: 150px;
}

.headernav .fa-plus{
  margin-left: 40px;
  font-size: 15px;
}

.headernav .show,.headernav input,.headernav .icon{
  display: none;
}

@media all and (max-width: 1100px){
  .headernav #logoutUser{
    margin-left: 15px;
  }
  .headernav ul{
      margin-right: 0px;
      float: left;
  }
  .headernav .logo{
      padding-left: 30px;
      width: 100%;
  }
  .headernav ul li, .headernav ul ul li{
      display: block;
      width: 100%;
  }
  .headernav ul ul{
      top: 70px;
      position: static;
      border-top: none;
      float: none;
      display: none;
      opacity: 1;
      visibility: visible;
  }
  .headernav ul ul ul li{
      position: static;
  }
  .headernav ul ul li{
      border-bottom: 0px;
  }
  .headernav ul ul a{
      padding-left: 40px;
  }
  .headernav ul ul ul a{
      padding-left: 80px;
  }
  .headernav .show{
      display: block;
      color: white;
      font-size: 18px;
      padding: 0 20px;
      line-height: 70px;
      cursor: pointer;
  }
  .headernav .show:hover{
      color: cyan;
  }

  .headernav .icon{
      display: block;
      color: white;
      position: absolute;
      right: 40px;
      line-height: 70px;
      font-size: 25px;
      cursor: pointer;
  }

  .headernav ul li a:hover{
      box-shadow: none;
  }

  .headernav .show + a, .headernav ul{
      display: none;
  }
  .headernav [id^=btn]:checked + ul{
      display: block;
  }
}


.basefooter{
  position: relative;
  width: 100%;
  height: auto;
  padding: 50px 100px;
  background: #111;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.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;
  }
}