* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* font Noto Sans Khmer */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Khmer:wght@100..900&display=swap");
/* font Roboto */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* font Battambang */
@import url("https://fonts.googleapis.com/css2?family=Battambang:wght@100;300;400;700;900&display=swap");

body {
  font-family: "Noto Sans Khmer", sans-serif;
  /* font-family: "Battambang", sans-serif; */
  background-color: #161616;
}

/* navbar */
header {
  position: sticky;
  top: 0;
  position: fixed;
  z-index: 99;
  width: 100%;
}
.navbar {
  width: 100%;
  height: 85px;
  background-color: #202020;
}
.navbar .d-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}
.navbar .d-flex .nav-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}

/* logo */
.navbar .d-flex .nav-brand img {
  width: 70px;
  height: auto;
  object-fit: cover;
  padding: 5px;
}
/* .navbar .d-flex .nav-brand img {
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #ff00c8,
    #ff0000
  );
  z-index: 1;
  background-size: 600%;
  filter: blur(8px);
  animation: glowing 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  
} */
/* @keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
} */

.navbar .d-flex .nav-brand h1 {
  font-weight: bold;
  font-size: 50px;
  text-decoration: none;
  color: #ef029a;
  padding: 0 5px;
  text-align: center;
  margin-top: 8px;
}
.navbar .d-flex .nav-brand span {
  font-weight: bold;
  font-size: 50px;
  text-decoration: none;
  color: white;
  text-shadow: 0 0 8px #ef029a;
  text-align: center;
  /* -webkit-text-stroke: 1px white; */
}

/* menu */
.navbar .navbar-item {
  list-style-type: none;
  display: flex;
  gap: 10px;
}
.navbar .navbar-list {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  transition: 0.2s ease-in-out;
  position: relative;
}
.navbar .navbar-list:hover {
  border-top: 1px solid #ef029a;
  border-bottom: 1px solid #ef029a;
  border-radius: 10px;
  color: #ef029a;
}
.navbar .navbar-list:hover .navbar-link {
  color: #ef029a;
}
.navbar .navbar-link {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: white;
  transition: 0.2s ease-in-out;
  padding: 40px 0;
}

/* search box */
.navbar .d-flex .search-box form {
  background-color: whitesmoke;
  border-radius: 30px;
  padding: 10px 10px;
}
.navbar .d-flex .search-box input {
  width: 170px;
  height: 20px;
  font-size: 18px;
  color: black;
  outline: none;
  border: none;
  background: transparent;
}
.navbar .d-flex .search-box input::placeholder {
  font-family: "Noto Sans Khmer", sans-serif;
}
.navbar .d-flex .search-box i {
  color: black;
  padding: 0 5px;
}

/* icon in navbar */
.navbar .d-flex .menu-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar .d-flex .navbar-icon .icon-item {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  /* border: 1px solid red; */
}
.navbar .d-flex .navbar-icon .icon-item .icon-list {
  font-size: 20px;
  padding: 26px 15px;
}

.navbar .d-flex .navbar-icon .icon-item .icon-list .icon-link {
  color: whitesmoke;
  transition: 0.3s ease-in-out;
  padding: 40px 0;
}

.navbar .d-flex .navbar-icon .icon-item .icon-list:hover .icon-link {
  color: #ef029a;
}

/* account icon */
.navbar .d-flex .profile {
  padding: 15px 15px;
}

.navbar .d-flex .profile .acc-img img {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  margin-top: 5px;
}

/* design dropdown of menu*/
.navbar .dropmenu {
  border: 1px solid #2e2e32;
  width: 250px;
  height: auto;
  /* background-color: #2e2e32; */
  background: #0000004f;
  backdrop-filter: blur(20px);
  position: absolute;
  top: 82px;
  left: -2px;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 5px;
}
.navbar .navbar-list:hover .dropmenu {
  opacity: 1;
  visibility: visible;
  transition: 0.2s ease-in-out;
}
.dropmenu .dropmenu-item {
  list-style-type: none;
  border-radius: 5px;
}
.dropmenu .dropmenu-list {
  border: 3px solid #2e2e32;
  border-left: 5px solid #fff;
  border-right: 5px solid #fff;
  /* border-bottom: 5px solid #fff; */
  /* border: 5px solid #161616; */
  /* background-color: #fff; */
  border-radius: 10px;
  padding: 12px 0;
  transition: 0.3s ease-in-out;
  position: relative;
  margin-top: 5px;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropmenu .dropmenu-list:hover {
  /* border-bottom: 5px solid #ef029a; */
  /* border-left: 5px solid #ef029a;
  border-right: 5px solid #ef029a; */
  /* background-color: #5d6065 !important; */
  background-color: #ef029a !important;
}
.dropmenu .dropmenu-link {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-left: 15px;
  transition: 0.3s ease-in-out;
}

.dropmenu .dropmenu-item .dropmenu-list i {
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
}

.dropmenu .dropmenu-item .dropmenu-list span {
  font-size: 25px;
  margin-top: -30px;
  margin-right: 10px;
}

/* design dropdown of language */
.navbar .dropmenuLang {
  border: 1px solid #2e2e32;
  width: 250px;
  height: auto;
  /* background-color: #2e2e32; */
  background: #0000004f;
  backdrop-filter: blur(20px);
  position: absolute;
  top: 87px;
  right: 220px;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 5px;
}

.navbar .icon-list:hover .dropmenuLang {
  opacity: 1;
  visibility: visible;
  /* transition-delay: 5s; */
  transition: 0.2s ease-in-out;
}
.dropmenuLang .dropmenuLang-item {
  list-style-type: none;
  /* border: 5px solid #ef029a; */
  border-radius: 5px;
}
.dropmenuLang .dropmenuLang-list {
  border: 3px solid #2e2e32;
  border-left: 5px solid #fff;
  border-right: 5px solid #fff;
  border-radius: 10px;
  padding: 10px 0;
  transition: 0.2s ease-in-out;
  position: relative;
  /* background-color: whitesmoke; */
  cursor: pointer;
  margin-top: 5px;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropmenuLang .dropmenuLang-list:hover {
  /* border-left: 5px solid #ef029a;
  border-right: 5px solid #ef029a; */
  background-color: #ef029a !important;
  /* background-color: #5d6065 !important; */
}

.dropmenuLang .dropmenuLang-link {
  text-decoration: none;
  font-size: 18px;
  color: whitesmoke;
  text-align: center;
  margin-left: 15px;
  display: flex;
  justify-content: left;
  align-items: center;
}
.dropmenuLang .dropmenuLang-link img {
  width: 30px;
  height: auto;
  margin-right: 15px;
}

/* design dropdown of Notification */
.navbar .dropmenu-Notification {
  border: 1px solid #2e2e32;
  width: 320px;
  height: auto;
  /* background-color: #2e2e32; */
  background: #0000004f;
  backdrop-filter: blur(20px);
  position: absolute;
  top: 87px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 5px;
}
.navbar .icon-list:hover .dropmenu-Notification {
  opacity: 1;
  visibility: visible;
  transition: 0.2s ease-in-out;
}
.dropmenu-Notification .Notification-item {
  list-style-type: none;
  /* border: 5px solid #ef029a; */
  border-radius: 5px;
}
.dropmenu-Notification .Notification-list {
  border: 3px solid #2e2e32;
  /* border-bottom: 1px solid #ffffffa6; */
  border-left: 5px solid #fff;
  border-right: 5px solid #fff;
  border-radius: 10px;
  padding: 10px;
  transition: 0.2s ease-in-out;
  position: relative;
  cursor: pointer;
  margin-top: 5px;
  margin-bottom: 5px;
}
.dropmenu-Notification .Notification-list:hover {
  /* border-left: 5px solid #ef029a;
  border-right: 5px solid #ef029a; */
  background-color: #ef029a !important;
  /* background-color: #5d6065 !important; */
}
.dropmenu-Notification .Notification-link {
  height: 50px;
  text-decoration: none;
  text-align: center;
  margin-left: 10px;
  display: flex;
  justify-content: left;
  align-items: center;
}
.dropmenu-Notification .Notification-link img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
}
.dropmenu-Notification .Notification-link h5 {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: whitesmoke;
  text-align: left;
  padding-bottom: 5px;
}
.dropmenu-Notification .Notification-link p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #ffffffa6;
  text-align: left;
}

/* design dropdown of download */
.navbar .dropmenu-download {
  border: 1px solid #2e2e32;
  width: 320px;
  height: auto;
  /* background-color: #2e2e32; */
  background: #0000004f;
  backdrop-filter: blur(20px);
  position: absolute;
  top: 87px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 5px;
}
.navbar .icon-list:hover .dropmenu-download {
  opacity: 1;
  visibility: visible;
  /* transition: 0.2s ease-in-out; */
}
.dropmenu-download .download-item {
  list-style-type: none;
  /* border: 5px solid #ef029a; */
  border-radius: 5px;
}
.dropmenu-download .download-list {
  border: 3px solid #2e2e32;
  /* border-bottom: 1px solid #ffffffa6; */
  border-left: 5px solid #fff;
  border-right: 5px solid #fff;
  border-radius: 10px;
  padding: 10px;
  transition: 0.2s ease-in-out;
  position: relative;
  cursor: pointer;
  margin-top: 5px;
  margin-bottom: 5px;
}
.dropmenu-download .download-list:hover {
  /* border-left: 5px solid #ef029a;
  border-right: 5px solid #ef029a; */
  background-color: #ef029a !important;
  /* background-color: #5d6065 !important; */
}
.dropmenu-download .download-link {
  height: 50px;
  text-decoration: none;
  text-align: center;
  margin-left: 10px;
  display: flex;
  justify-content: left;
  align-items: center;
}
.dropmenu-download .download-link img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
}
.dropmenu-download .download-link h5 {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: whitesmoke;
  text-align: left;
  padding-bottom: 5px;
}
.dropmenu-download .download-link p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #ffffffa6;
  text-align: left;
}

/* design dropdown of account*/
.navbar .dropmenuAcc {
  border: 1px solid #2e2e32;
  width: 270px;
  height: auto;
  /* background-color: #2e2e32; */
  background: #0000004f;
  backdrop-filter: blur(20px);
  position: absolute;
  top: 87px;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 5px;
}
.navbar .dropmenuAcc .dropmenuAcc-btn {
  padding: 15px 0 15px 10px;
}
.navbar .dropmenuAcc .btn-login {
  width: 96%;
  font-weight: 600;
  font-size: 24px;
  text-decoration: none;
  display: inline-block;
  color: white;
  background-color: #2dee1b;
  /* background: linear-gradient(30deg, #9713D6, #EF029A); */
  transition: 0.3s ease-in-out;
  text-align: center;
  border-radius: 10px;
  padding: 10px;
}
.navbar .dropmenuAcc .btn-login:hover {
  background-color: #78d41c;
}
.navbar .profile:hover .dropmenuAcc {
  opacity: 1;
  visibility: visible;
  transition: 0.2s ease-in-out;
}
.dropmenuAcc .dropmenuAcc-item {
  list-style-type: none;
  /* border: 5px solid #6c757d; */
  border-radius: 5px;
}
.dropmenuAcc .dropmenuAcc-list {
  border: 3px solid #2e2e32;
  border-left: 5px solid #fff;
  border-right: 5px solid #fff;
  background: #0000004f;
  backdrop-filter: blur(20px);
  border-radius: 10px;
  padding: 15px 0 15px 10px;
  transition: 0.2s ease-in-out;
  position: relative;
  margin: 5px;
  /* background-image: linear-gradient(30deg, #6c757d, #495057, #343a40); */
}
.dropmenuAcc .dropmenuAcc-list:hover {
  /* border-left: 5px solid #ef029a;
  border-right: 5px solid #ef029a; */
  background-color: #ef029a !important;
  /* background-color: #5d6065 !important; */
}
.dropmenuAcc .dropmenuAcc-link {
  text-decoration: none;
  font-size: 18px;
  color: whitesmoke;
  text-align: center;
}
.dropmenuAcc .dropmenuAcc-list .dropmenuAcc-link i {
  font-size: 20px;
  color: whitesmoke;
  margin-right: 15px;
  margin-left: 10px;
}
.dropmenuAcc .dropmenuAcc-list .dropmenuAcc-link i {
  color: white !important;
}

/* sub-dorpmenu */
/* .sub-dorpmenu {
  width: 200px;
  height: auto;
  background-color: rgb(208, 204, 204);
  position: absolute;
  top: -4px;
  left: 196px;
  opacity: 0;
  visibility: hidden;
}
.dropmenu .dropmenu-list:hover .sub-dorpmenu {
  opacity: 1;
  visibility: visible;
} */
