*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

ul a{
  text-decoration: none;
  color: #DFB94C;
}

.uni-container{
  width: 100%;
  max-width: 82%;
  min-width: 82%;
  margin: 0 auto;
}


/* ************************Header CSS************************** */
.header00{
  padding: 20px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-right{
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.header-right:hover label{
  color: #987d33;
}

.header-right p{
  font-size: 15px;
  font-weight: 300;
  color: #DFB94C;
  letter-spacing: 3px;
  cursor: pointer;
}

.header-right p:hover{
  color: #987d33;
}

.header00 img{
  width: 120px;
}

.header00 i{
  color: #DFB94C;
  font-size:23px;
  cursor: pointer;
}
.header00 i:hover{
  color: #987d33;
}


/* *********************Sidebar CSS******************** */


 /* Hide checkbox */
 #menu-toggle {
  display: none;
}

.sidebar-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-header h2{
  font-weight: 400;
  font-size: 23px;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background: white;
  color: #DFB94C;
  padding: 40px 20px;
  transition: 0.3s;
  z-index: 9999;
}
.sidebar ul{
  margin-top: 40px;
}

.sidebar li{
  list-style-type: none;
  padding: 10px 0px !important;
  /* font-weight: lighter; */
  text-transform: capitalize;
  cursor: pointer;
  font-size: 16px;
  /* color: #DFB94C; */
}
.sidebar li:hover{
  background-color: #eee;
  border-radius: 5px;
  /* color: black; */
}
.sidebar li a:hover{
  color: #987d33;
}


/* When checkbox is checked, show sidebar */
#menu-toggle:checked + .sidebar {
  right: 0;
}

.sidebar-close-btn{
  display: flex;
  /* justify-content: center; */
  align-items: center;
  padding: 8px 10px;
  font-size: 12px;
  border: none;
  color: #FFF;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}
.sidebar-close-btn:hover{
  background-color: #5a595982;
}


/* ******************footer CSS****************** */

.footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  margin-top: 150px;
}
.footer p{
  color: #DFB94C;
  font-weight: 400;
  font-size: 13px;
}
.footer-icons{
  display: flex;
  column-gap: 20px;
}
.footer-icons i{
  font-size: 15px;
  color: #DFB94C;

}
@media(max-width:499px){
  .footer{
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      flex-direction: column;
  }
}

@media(max-width:400px){
  .footer p{
    font-size: 11px;
  }
}
