* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  @import url(https://db.onlinewebfonts.com/c/71e92ac7c1274653711b6ace5fa9bcce?family=Grumpy+W05+Black36);
  --primaryColor: #b40134;
  --secondaryColor: #E4E4E4;
  --blackColor: #222222;
  --whiteColor: #fff;
  --fontSmall: .8rem;
  --fontSmaller: .7rem;
  --fontMedium: .9rem;
  --fontBig: 1.5rem;
  --brightPink: #FF01FF;
  --grayColor: rgba(0, 0, 0, 0.5);
  --transition: .3s;
  --success__color: #00bf8e;
  --lightGreen: rgb(109, 236, 200);
  --warning__color: #f7c94b;
  --warning__color-white: #deca94;
  --danger__color: #DC3545;
  --cream__color: #FEFEFE;
  --blue__color: #007DFD;
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
  --transition: .3s;
  --cyberpunkBlue: #00b8ff;
  --primaryColour: #7d2ae8;
  --lightGray: #FAF9F8;
  --darkGray: #11151C;
  --lightGray2: #ededed;
  --reddish: #A1002E;
  --brightBlue: #2503CB;
  --lightGrayBackground: rgba(0, 0, 0, 0.04);
  --boxShadow1: 2px 2px 10px rgba(0, 0, 0, .1);
  /* width */
  /* Track */
  /* Handle */
}
:root ::-webkit-scrollbar {
  width: 10px;
}
:root ::-webkit-scrollbar-track {
  background: #fff;
}
:root ::-webkit-scrollbar-thumb {
  background: var(--secondaryColor);
}

/* For Chrome or Safari */
progress::-webkit-progress-bar {
  background-color: var(--primary__color);
  border-radius: 10px;
}

progress::-webkit-progress-value {
  background-color: var(--success__color) !important;
  border-radius: 10px;
}

/* For Firefox */
progress {
  background-color: var(--primary__color);
  border-radius: 10px;
}

progress::-moz-progress-bar {
  background-color: var(--success__color) !important;
  border-radius: 10px;
}

/* For IE10 */
progress {
  background-color: var(--success__color) !important;
  border-radius: 10px;
}

.companyLogo {
  max-width: 80px;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.2rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.7rem;
}

label {
  font-size: 0.95rem;
}

a {
  text-decoration: none;
  color: #000;
  font-size: 0.95rem;
}

.button {
  position: relative;
  padding: 10px 20px;
  border: none;
  font-size: 0.8rem;
  background: var(--primaryColor);
  color: var(--whiteColor);
  font-weight: 500;
  text-decoration: none;
  min-width: 100px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--boxShadow1);
}
.button:hover {
  background: var(--secondaryColor);
  transform: scale(0.9);
  color: var(--darkGray);
}

.button2 {
  position: relative;
  padding: 5px;
  font-size: var(--fontSmaller);
  border: none;
  background: #222222;
  color: var(--whiteColor);
  text-decoration: none;
  min-width: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.button2:hover {
  background: var(--secondaryColor);
  transform: scale(0.9);
  color: var(--darkGray);
}

.input {
  min-width: 200px;
  padding: 10px;
  border: none;
  color: var(--blackColor);
  background: rgba(0, 0, 0, 0.04);
  outline: none;
}

.anotherLogo {
  position: absolute;
  max-width: 20%;
  top: 20%;
  left: 50%;
  box-shadow: -12px 10px 50px var(--cyberpunkBlue);
  opacity: 30%;
  padding: 20px;
  background: #000;
  transform: translateX(-50%);
}

.menubar {
  width: 30px;
  height: 30px;
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.menubar span {
  width: 100%;
  height: 1px;
  background: #000;
}
.menubar:hover {
  width: 45px;
  right: 15px;
}

.menubarClose {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 9999;
  transition: var(--transition);
}
.menubarClose:hover {
  width: 45px;
  right: 15px;
}
.menubarClose span:nth-child(1) {
  width: 100%;
  height: 1px;
  background: #000;
  transform: rotate(45deg);
}
.menubarClose span:nth-child(2) {
  width: 100%;
  height: 1px;
  background: #000;
  transform: rotate(-45deg);
}

#menubarBtn {
  background: transparent;
  border: none;
  outline: none;
  letter-spacing: 2px;
  font-size: 0.9rem;
  right: 10px;
  color: white;
  cursor: pointer;
  transition: 0.5s;
  display: none;
  z-index: 9999;
  margin: 10px;
  position: fixed;
  top: 0px;
}
#menubarBtn:hover {
  color: black;
}
@media screen and (max-width: 800px) {
  #menubarBtn {
    display: block;
  }
}

.notificationScreen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  z-index: 1004;
}
.notificationScreen .notificationBox {
  width: auto;
  height: auto;
  margin: 10px;
  padding: 20px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  border-radius: 5px;
}
@media screen and (max-width: 700px) {
  .notificationScreen .notificationBox {
    padding: 10px;
  }
}
.notificationScreen .notificationBox .notificationMessage {
  background: transparent;
  color: var(--darkGray);
  font-size: 1rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.notificationScreen .notificationBox .notificationImg {
  width: 250px;
  border-radius: 20px;
  background: transparent;
  box-shadow: 2px 2px 10px black;
  padding: 10px;
}
.notificationScreen .notificationBox .notificationExitBtn {
  width: 150px;
  height: 35px;
  color: white;
  background: var(--darkGray);
  border: none;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}
.notificationScreen .notificationBox .notificationExitBtn:hover {
  background: var(--primaryColor);
  color: #fff;
}

.loadingScreen {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  z-index: 10005;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.loadingScreen p {
  color: white;
}

.loadingSpinner {
  border: 5px solid var(--secondaryColor);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 1s linear infinite;
  box-shadow: 2px 2px 2px var(--primaryColor);
  transition: 0.5s;
}

.loadingScreenInElement {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  gap: 10px;
  z-index: 10005;
  transition: var(--transition);
  background: #fff;
  padding: 20px;
  color: #000;
  border-radius: 10px;
}
.loadingScreenInElement .loadingSpinner {
  border: 5px solid var(--secondaryColor);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  box-shadow: 1px 1px 1px var(--primaryColor);
  transition: 0.5s;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.dynamicForm {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: flex-start;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  padding: 40px;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  position: fixed;
  color: #000;
  grid-gap: 20px;
  overflow-y: scroll;
}
@media screen and (max-width: 900px) {
  .dynamicForm {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 470px) {
  .dynamicForm {
    grid-template-columns: 1fr;
    padding: 20px;
    width: 100%;
  }
}
.dynamicForm img {
  max-width: 200px;
}

.dynamicFormFlex {
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  padding: 40px;
  color: #000;
  height: 80vh;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .dynamicFormFlex {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .dynamicFormFlex {
    grid-template-columns: 1fr;
    padding: 10px;
    width: 100%;
  }
}
.dynamicFormFlex img {
  max-width: 200px;
}

.overlay {
  width: 100%;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  padding: 20px 0px;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar {
  height: 100vh;
  background: #fff;
  justify-content: center;
  padding: 0px 30px;
  align-items: flex-end;
  display: flex;
  position: fixed;
  flex-direction: column;
  z-index: 99999;
  top: 0;
  right: 0;
  font-size: var(--fontSmall);
  gap: 50px;
  transition: var(--transition);
}
.navbar h4 {
  text-align: right;
}
.navbar .navbarLinks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}
.navbar .navbarLinks a {
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  font-weight: 400;
  transition: 0.5s;
  position: relative;
  cursor: pointer;
}
.navbar .navbarLinks a::before {
  content: "";
  position: absolute;
  left: 0;
  background: var(--primaryColor);
  width: 0%;
  height: 1px;
  bottom: 0;
  transition: var(--transition);
}
.navbar .navbarLinks a:hover::before {
  width: 100%;
}

.signInOverlay {
  width: 100%;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
}
.signInOverlay .signInBox {
  min-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px;
  gap: 10px;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 600px) {
  .signInOverlay .signInBox {
    min-width: 200px;
  }
}
.signInOverlay .signInBox .signInCloseBtn {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 9999;
  transition: var(--transition);
  margin-bottom: 20px;
}
.signInOverlay .signInBox .signInCloseBtn:hover {
  width: 45px;
  right: 15px;
}
.signInOverlay .signInBox .signInCloseBtn span:nth-child(1) {
  width: 100%;
  height: 1px;
  background: var(--blackColor);
  transform: rotate(45deg);
}
.signInOverlay .signInBox .signInCloseBtn span:nth-child(2) {
  width: 100%;
  height: 1px;
  background: var(--blackColor);
  transform: rotate(-45deg);
}
.signInOverlay .signInBox .emailBox,
.signInOverlay .signInBox .passwordBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.signInOverlay .signInBox .emailBox input,
.signInOverlay .signInBox .passwordBox input {
  background: #fff;
  border: 0.5px solid var(--secondaryColor);
  width: 100%;
  padding: 15px 10px;
  outline: none;
}
.signInOverlay .signInBox .emailBox a,
.signInOverlay .signInBox .passwordBox a {
  text-decoration: underline;
  color: var(--primaryColor);
  font-size: var(--fontSmall);
}
.signInOverlay .signInBox button {
  width: 100%;
  padding: 15px 10px;
  text-align: center;
  background: var(--blackColor);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.signInOverlay .signInBox button:hover {
  background: var(--secondaryColor);
  color: #000000;
}/*# sourceMappingURL=allPage.css.map */