@font-face {
  font-family: Poppins;
  src: url(../fonts/Poppins-Medium.ttf);
}
@font-face {
  font-family: Montserrat;
  src: url(../../fonts/Montserrat-VariableFont_wght.ttf);
}
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-decoration: none;
  line-height: 1.8em;
  box-sizing: border-box;
}

body {
  font-family: poppins;
  color: rgb(0, 0, 0);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Montserrat;
}

header {
  background-color: rgb(213, 230, 245);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .header-logo h1 {
  font-size: 1.5rem;
}
header .header-logo img {
  width: 50px;
}
header nav {
  align-items: center;
}
header nav ul {
  display: flex;
}
header nav ul li {
  padding: 20px;
}
header nav ul li a {
  color: rgb(13, 11, 22);
}
header .mobile-toggle {
  display: none;
}
header .mobile-toggle i, header .mobile-toggle svg {
  color: rgb(8, 8, 150);
}

.mobile-menu {
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.651);
  position: fixed;
  z-index: 199;
  top: 0;
  display: none;
}
.mobile-menu .mobile-active {
  width: 80%;
  align-items: center;
  text-align: left;
  height: 100%;
  position: relative;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.mobile-menu .mobile-active .header-logo {
  margin-top: 40px;
  align-items: center;
  text-align: center;
}
.mobile-menu .mobile-active .header-logo img {
  width: 40px;
}
.mobile-menu .mobile-active .header-links {
  margin-top: 70px;
  position: relative;
}
.mobile-menu .mobile-active .header-links ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu .mobile-active .header-links ul li {
  padding: 20px;
  background-color: rgb(224, 224, 194);
  border-radius: 12px;
}
.mobile-menu .mobile-active .header-links ul li a {
  display: flex;
  color: black;
  gap: 20px;
  align-items: center;
}
.mobile-menu .mobile-active .header-links ul li a svg {
  color: rgb(7, 102, 211);
}

.mobile-menu.active {
  display: flex;
  animation: scrollIn 0.5s;
}

.icons {
  display: flex;
  flex-direction: column;
  right: 15px;
  gap: 20px;
  position: absolute;
  top: 30%;
}
.icons svg {
  color: rgb(7, 102, 211);
}

.hero {
  width: 100%;
 background: linear-gradient(to bottom, rgba(3, 3, 41, 0.76), rgba(2, 2, 54, 0.815)), url("../images/Admin Block 1.jpg") no-repeat center;
  background-size: cover;
  color: rgb(226, 226, 231);
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero h2 {
  padding: 20px;
  text-align: left;
  align-items: start;
}
.hero h2 hr {
  width: 250px;
  border: 1px solid rgb(22, 133, 177);
}
.hero .main-content {
  width: 90%;
  margin: 50px auto;
  text-align: left;
}
.hero .main-content b {
  color: rgb(8, 173, 238);
}
.hero .admin-btn {
  margin: 20px auto;
  width: 80%;
  text-align: center;
  align-items: center;
}
.hero .admin-btn a {
  color: white;
}
.hero .admin-btn a button {
  background: linear-gradient(to right, rgb(6, 17, 116), rgb(4, 56, 116));
  font-family: Montserrat;
  color: white;
  border-radius: 10px;
  border: none;
  box-shadow: 2px 2px 3px black;
  padding: 10px;
}

footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  align-items: center;
  padding: 10px;
  color: rgb(9, 1, 31);
}
footer .left {
  display: flex;
}

@keyframes scrollIn {
  from {
    transform: translateX(-200px);
  }
  to {
    transform: translateX(0);
  }
}
@media screen and (max-width: 800px) {
  body {
    font-size: 14px;
    overflow-x: hidden;
  }
  header {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  header .header-logo img {
    width: 60px;
  }
  header .header-links ul {
    display: none;
  }
  header .header-logo h1 {
    display: none;
  }
  header .mobile-toggle {
    margin-right: 10px;
    display: block;
    position: relative;
  }
  .icons {
    position: relative;
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    width: 200px;
    padding: 20px;
  }
}/*# sourceMappingURL=main.css.map */