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

body {
  height: 1250px;
  width: 100%;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-flow: row;
  overflow-x: hidden;
}

header {
  position: relative;
  height: 100% !important;
  width: 15%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: #65ACFF;
}
header h1 {
  font-size: 1.5rem;
  color: white;
  margin-top: 3rem;
}
header h1 a {
  color: white;
  text-decoration: none;
}
header .search-bar {
  height: 50px;
  width: 80%;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
header .search-bar input {
  height: 100%;
  width: 80%;
  border: none;
  background: transparent;
  border-bottom: 5px solid white;
  font-size: 1.3rem;
  color: white;
  outline: none;
}
header .search-bar input::placeholder {
  font-size: 1.3rem;
  color: white;
}
header .search-bar button {
  height: 100%;
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
}
header .search-bar button i {
  font-size: 1.1rem;
  color: white;
  pointer-events: none;
}
header ul {
  width: 80%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  margin-top: 1rem;
}
header ul li {
  list-style: none;
}
header ul li a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
}
header ul li a:hover {
  border-bottom: 3px solid white;
}

main {
  position: relative;
  width: 85%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main .settings-content {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .settings-content .item {
  display: none;
}
main .settings-content .hidden {
  display: none;
}
main .settings-content .visible {
  height: 500px;
  width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}
main .settings-content .visible h2 {
  text-transform: uppercase;
  margin-top: 2rem;
}
main .settings-content .visible form {
  height: 80%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
main .settings-content .visible form .password {
  width: 60%;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2rem;
}
main .settings-content .visible form div {
  width: 80%;
  height: 50px;
  margin-top: 2rem;
}
main .settings-content .visible form input {
  height: 25px;
  width: 100%;
  border: none;
  border-bottom: 3px solid #65ACFF;
  outline: none;
  color: black;
  font-size: 1.2rem;
}
main .settings-content .visible form input::placeholder {
  color: black;
  font-size: 1.2rem;
}
main .settings-content .visible form select {
  height: 25px;
  width: 100%;
  border: none;
  outline: none;
  border-bottom: 3px solid #65ACFF;
  font-size: 1.2rem;
}
main .settings-content .visible form textarea {
  height: 50px;
  width: 100%;
  resize: none;
  border: none;
  border-bottom: 3px solid #65ACFF;
  outline: none;
  color: black;
  font-size: 1.2rem;
}
main .settings-content .visible form textarea::placeholder {
  color: black;
  font-size: 1.2rem;
}
main .settings-content .visible form button {
  height: 50px;
  width: 40%;
  padding: 5px;
  margin-top: 3rem;
  border: none;
  background: #65ACFF;
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5%;
  box-shadow: 0 5px 0 rgba(101, 172, 255, 0.7);
  outline: none;
}
main .settings-content .visible form button:hover {
  box-shadow: none;
}
main .account {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 11;
}
main .account i {
  font-size: 2rem;
  cursor: pointer;
  pointer-events: all;
}
main .account-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(250%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 350px;
  width: 350px;
  background: white;
  box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.8);
  z-index: 10;
}
main .account-popup i {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  cursor: pointer;
}
main .account-popup h3 {
  margin-top: 3rem;
  text-transform: uppercase;
}
main .account-popup .content {
  height: 250px;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
}
main .account-popup .content a {
  width: 100%;
  text-decoration: none;
  color: black;
  border-bottom: 5px solid #65ACFF;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: bold;
}
main .welcome {
  position: relative;
  height: 40vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .welcome h2 {
  font-size: 2rem;
  text-transform: uppercase;
}
main .welcome h3 {
  padding-top: 1rem;
  font-size: 1.8rem;
}
main .contentBx {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
main .contentBx h3 {
  margin-left: 5rem;
  font-size: 1.5rem;
}
main .contentBx .resource-shown {
  height: 90%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
main .contentBx .resource-shown p {
  font-size: 2rem;
  margin-top: 3rem;
}
main .contentBx .resource-shown .pdf-viewer, main .contentBx .resource-shown img {
  margin-top: 5rem;
  height: 80%;
  width: 1250px;
  object-fit: contain;
}
main .contentBx .resource-shown iframe {
  margin-top: 5rem;
}
main .contentBx .resource-shown a {
  color: black;
  font-size: 2.5rem;
  margin-top: 5rem;
}
main .contentBx .latest-3 {
  margin-top: 2rem;
  height: 80vh;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-evenly;
  align-items: center;
}
main .contentBx .latest-3 .content {
  height: 350px;
  width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 0px 8px 0px rgba(255, 255, 255, 0.6), 2px 2px 5px rgba(0, 0, 0, 0.8);
}
main .contentBx .latest-3 .content img {
  width: 100%;
  height: 50%;
  object-fit: cover;
}
main .contentBx .latest-3 .content h2 {
  margin-top: 1rem;
}
main .contentBx .latest-3 .content p {
  height: 50px;
  overflow-y: hidden;
  margin-top: 1rem;
  text-align: center;
}
main .contentBx .latest-3 .content a {
  text-decoration: none;
  color: black;
  border-bottom: 5px solid #65ACFF;
  font-weight: bold;
}
main .title {
  height: 20vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .title h2 {
  font-size: 2rem;
  text-transform: uppercase;
}
main .all {
  min-height: 80vh;
  width: 100%;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
}
main .all h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 10rem;
}
main .all .content {
  height: 350px;
  width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 2rem;
  box-shadow: 0 8px 0 rgba(255, 255, 255, 0.6), 2px 2px 5px rgba(0, 0, 0, 0.8);
}
main .all .content img {
  width: 100%;
  height: 50%;
  object-fit: cover;
}
main .all .content h2 {
  margin-top: 1rem;
  text-transform: uppercase;
}
main .all .content p {
  height: 50px;
  overflow-y: hidden;
  font-size: 1rem;
  margin-top: 1rem;
}
main .all .content a {
  text-decoration: none;
  color: black;
  border-bottom: 5px solid #65ACFF;
  font-weight: bold;
}

.container-login {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-login form {
  height: 400px;
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 0 5px 0 rgba(255, 255, 255, 0.8), 2px 5px 5px rgba(0, 0, 0, 0.5);
}
.container-login form h1 {
  text-transform: uppercase;
  margin-top: 3rem;
}
.container-login form input {
  height: 25px;
  width: 60%;
  border: none;
  border-bottom: 3px solid #65ACFF;
  outline: none;
  margin-top: 3rem;
  color: black;
  font-size: 1.2rem;
}
.container-login form input::placeholder {
  color: black;
  font-size: 1.2rem;
}
.container-login form button {
  height: 50px;
  width: 40%;
  padding: 5px;
  margin-top: 3rem;
  border: none;
  background: #65ACFF;
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5%;
  box-shadow: 0 5px 0 rgba(101, 172, 255, 0.7);
}
.container-login form button:hover {
  box-shadow: none;
}

.active {
  border-bottom: 3px solid white;
  font-weight: bold;
}

header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
header h2 {
  color: white;
  font-size: 2rem;
  text-transform: uppercase;
  height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .choices {
  height: 80vh;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
}
header .choices a {
  font-size: 1.2rem;
  color: white;
  font-weight: 400;
  text-decoration: none;
}
header .choices a:hover {
  border-bottom: 2px solid white;
}

.container-register {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-register form {
  height: 850px;
  width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 0 5px 0 rgba(255, 255, 255, 0.8), 2px 5px 5px rgba(0, 0, 0, 0.5);
}
.container-register form h1 {
  text-transform: uppercase;
  margin-top: 3rem;
}
.container-register form .firstname, .container-register form .lastname {
  width: 60%;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2rem;
}
.container-register form .firstname div, .container-register form .lastname div {
  width: 100%;
  height: 100%;
}
.container-register form .email {
  width: 60%;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2rem;
}
.container-register form .email div {
  width: 100%;
  height: 100%;
}
.container-register form .password {
  width: 60%;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2rem;
}
.container-register form .password div {
  width: 100%;
  height: 100%;
}
.container-register form .type {
  height: 50px;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.container-register form .type div {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.container-register form .type div label {
  margin-bottom: 1rem;
}
.container-register form .type div select {
  height: 100%;
  width: 100%;
}
.container-register form .endDate {
  height: 50px;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.container-register form .endDate div {
  width: 100%;
  height: 100%;
}
.container-register form .endDate div label {
  margin-bottom: 1rem;
}
.container-register form .agree {
  width: 60%;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2rem;
}
.container-register form .agree div {
  width: 100%;
  height: 100%;
}
.container-register form .agree div label {
  margin-bottom: 1rem;
}
.container-register form input {
  height: 25px;
  width: 100%;
  border: none;
  border-bottom: 3px solid #65ACFF;
  outline: none;
  color: black;
  font-size: 1.2rem;
}
.container-register form input::placeholder {
  color: black;
  font-size: 1.2rem;
}
.container-register form select {
  height: 25px;
  width: calc(100%/3);
  outline: none;
}
.container-register form button {
  height: 50px;
  width: 40%;
  padding: 5px;
  margin-top: 5rem;
  border: none;
  background: #65ACFF;
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5%;
  box-shadow: 0 5px 0 rgba(101, 172, 255, 0.7);
  outline: none;
}
.container-register form button:hover {
  box-shadow: none;
}

/*# sourceMappingURL=style.css.map */
