@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  scroll-behavior: smooth;
}

header nav {
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  background-color: #f5f5f5;
  transition: 0.5s;
  z-index: 1000 !important;
}
header nav.active {
  background-color: #030a44;
}
header nav .toggle {
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: 0.5s;
}
header nav .toggle.active i {
  color: #ff9900;
}
header nav .toggle i {
  font-size: 40px;
}
header nav .menu {
  position: fixed;
  top: 68px;
  left: -100%;
  display: block;
  padding: 25px 50px 100px;
  text-align: center;
  width: 100%;
  height: calc(100vh - 68px);
  background: linear-gradient(to bottom right, #030a44, #172388);
  transition: 0.5s;
  margin-bottom: 0;
  order: 1;
  z-index: 1000 !important;
}
header nav .menu.active {
  left: 0;
}
header nav .menu li {
  list-style: none;
  position: relative;
}
header nav .menu li a {
  position: relative;
  display: inline-block;
  color: #f5f5f5;
  font-size: 16px;
  font-weight: 600;
  margin: 10px;
  text-decoration: none;
}
header nav .menu li a.certificationBtn {
  background: linear-gradient(to bottom right, #ff9900, #e27335);
  display: inline-block;
  color: #f5f5f5;
  margin-top: 10px;
  padding: 8px 16px;
  font-weight: 600;
  border-radius: 10px;
}
header nav .menu li a.certificationBtn img {
  height: 16px;
}
header nav .menu li .logoItem {
  height: 100px;
}
header nav .menu .contactNav {
  bottom: 0;
  left: 50px;
  right: 50px;
}
header nav .menu .contactNav .contactBx .contactInfo li a {
  font-size: 10px;
  margin: 5px;
}
header nav .menu .contactNav .copyBx {
  margin-top: 25px;
}
header nav .menu .contactNav .copyBx p {
  color: #f5f5f5;
  font-size: 10px;
}
header nav .menu .contactNav .copyBx p:first-of-type {
  margin-bottom: 10px;
}
header nav .menu .contactNav .copyBx p a {
  text-decoration: none;
}
header nav .menu .contactNav .copyBx p a img {
  width: 100px;
}
header nav .logo {
  transition: 0.5s;
  order: 2;
}
header nav .logo.active {
  display: none;
}
header nav .logo img {
  height: 60px;
}
header nav .logInBtn {
  order: 3;
}
header nav .logInBtn img {
  width: 52px;
}
header nav .logInBtn span {
  display: none;
  font-weight: 600;
}
header nav .dropdown {
  order: 3;
}
header nav .dropdown .btn {
  border-radius: 50%;
  padding: 5px;
  background: transparent;
  border: 1px solid #ff9900;
}
header nav .dropdown .btn:active, header nav .dropdown .btn[aria-expanded=true] {
  background-color: transparent !important;
  border-color: #ff9900 !important;
}
header nav .dropdown .btn:focus {
  box-shadow: none !important;
}
header nav .dropdown .btn::after {
  content: "";
  display: none;
}
header nav .dropdown .btn img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
header nav .dropdown .dropdown-menu {
  border-radius: 15px;
  background-color: #2b2b2b;
}
header nav .dropdown .dropdown-menu .dropdown-item {
  color: #f5f5f5;
}
header nav .dropdown .dropdown-menu .dropdown-item i {
  color: #acacac;
  margin-right: 10px;
}
header nav .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
  color: #ff9900;
}
header nav .dropdown .dropdown-menu .dropdown-item:hover i {
  color: #ff9900;
}
header nav #contact-alert {
  position: fixed;
  left: 50%;
  top: 20%;
  transform: translate(-50%, 20%);
}
header nav .contactPopUp {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90vh;
  background: #f5f5f5;
  z-index: 10000;
  box-shadow: 0 0 0 100vh rgba(255, 255, 255, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  border-radius: 25px !important;
  overflow: auto;
}
header nav .contactPopUp.active {
  visibility: visible;
  opacity: 1;
}
header nav .contactPopUp .container-fluid .row .col-lg-5 {
  background: linear-gradient(to bottom right, rgba(3, 10, 68, 0.9), rgba(23, 35, 136, 0.9)), url(../content/images/ctaBackground.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  min-height: 90vh;
  padding: 15px;
}
header nav .contactPopUp .container-fluid .row .col-lg-5 img {
  width: 100px;
  margin-bottom: 30px;
}
header nav .contactPopUp .container-fluid .row .col-lg-5 h2 {
  color: #f5f5f5;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
}
header nav .contactPopUp .container-fluid .row .col-lg-5 p {
  color: #f5f5f5;
  font-weight: 600;
  margin-bottom: 30px;
}
header nav .contactPopUp .container-fluid .row .col-lg-5 a {
  text-decoration: none;
  color: #f5f5f5;
  font-weight: 600;
  font-size: 10px;
  display: inline-block;
}
header nav .contactPopUp .container-fluid .row .col-lg-5 .sci {
  margin-top: 30px;
}
header nav .contactPopUp .container-fluid .row .col-lg-5 .sci li {
  display: inline-block;
  margin: 10px;
}
header nav .contactPopUp .container-fluid .row .col-lg-5 .sci li a i {
  font-size: 24px;
}
header nav .contactPopUp .container-fluid .row .col-lg-5 .sci li a:hover i {
  color: #ff9900;
}
header nav .contactPopUp .container-fluid .row .col-lg-7 {
  padding-left: 0;
  padding-right: 0;
}
header nav .contactPopUp .container-fluid .row .col-lg-7 .container-fluid {
  padding-top: 15px;
  padding-bottom: 15px;
}
header nav .contactPopUp .container-fluid .row .col-lg-7 .container-fluid form .row {
  margin-top: 10px;
}
header nav .contactPopUp .container-fluid .row .col-lg-7 .container-fluid form .row .col-6 {
  padding-left: 5px;
  padding-right: 5px;
}
header nav .contactPopUp .container-fluid .row .col-lg-7 .container-fluid form .row .col-6 input {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #acacac;
  font-weight: 600;
}
header nav .contactPopUp .container-fluid .row .col-lg-7 .container-fluid form .row .col-12 {
  padding-left: 5px;
  padding-right: 5px;
}
header nav .contactPopUp .container-fluid .row .col-lg-7 .container-fluid form .row .col-12 input {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #acacac;
  font-weight: 600;
}
header nav .contactPopUp .container-fluid .row .col-lg-7 .container-fluid form .row .col-12 input[type=submit] {
  background: linear-gradient(to bottom right, #ff9900, #e27335);
  color: #f5f5f5;
  font-weight: 600;
  border: none;
  margin-bottom: 10px;
}
header nav .contactPopUp .container-fluid .row .col-lg-7 .container-fluid form .row .col-12 textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #acacac;
  font-weight: 600;
  height: 200px;
  resize: none;
}
header nav .contactPopUp h2 {
  font-size: 48px;
  color: #312747;
}
header nav .contactPopUp p {
  font-size: 20px;
  color: #312747;
}
header nav .contactPopUp .inputBox {
  margin-top: 20px;
}
header nav .contactPopUp .inputBox input {
  padding: 10px;
  outline: none;
  width: 300px;
  font-size: 18px;
  border: 1px solid gray;
}
header nav .contactPopUp .inputBox input[type=submit] {
  padding: 10px;
  outline: none;
  width: 140px;
  color: white;
  background: #ff0083;
  border: 1px solid #ff0083;
  letter-spacing: 2px;
  box-sizing: border-box;
  cursor: pointer;
}
header nav .contactPopUp .close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
header nav .updatePopUp {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-height: 90vh;
  padding: 30px 10px;
  background: #f5f5f5;
  z-index: 10000;
  box-shadow: 0 0 0 100vh rgba(255, 255, 255, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  border-radius: 25px !important;
  overflow-x: hidden;
}
header nav .updatePopUp.active {
  visibility: visible;
  opacity: 1;
}
header nav .updatePopUp h2 {
  font-size: 24px;
  color: #040c54;
  font-weight: 800;
}
header nav .updatePopUp .container-fluid .row .col-12 .coverBx {
  width: 100%;
  height: 150px;
  position: relative;
  margin-bottom: 100px;
}
header nav .updatePopUp .container-fluid .row .col-12 .coverBx label {
  display: contents;
}
header nav .updatePopUp .container-fluid .row .col-12 .coverBx .coverImgBx {
  background: url(../content/images/registrationBackground.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
header nav .updatePopUp .container-fluid .row .col-12 .coverBx .coverImgBx:hover {
  background: #040c54 !important;
}
header nav .updatePopUp .container-fluid .row .col-12 .coverBx .coverImgBx:hover i {
  display: block;
}
header nav .updatePopUp .container-fluid .row .col-12 .coverBx .profileImgBx {
  background: url(../content/images/profilePictureAvatar.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  bottom: -25%;
  transform: translateX(-50%);
  border: 5px solid #f5f5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav .updatePopUp .container-fluid .row .col-12 .coverBx .profileImgBx:hover {
  background: #040c54 !important;
}
header nav .updatePopUp .container-fluid .row .col-12 .coverBx .profileImgBx:hover i {
  display: block;
}
header nav .updatePopUp .container-fluid .row .col-12 .coverBx i {
  display: none;
  color: #f5f5f5;
  font-size: 3rem;
}
header nav .updatePopUp .container-fluid .row .col-12 .coverBx #profile_settings_pic_img {
  display: none;
}
header nav .updatePopUp .container-fluid .row .col-12 .coverBx #banner_profile_pic_img {
  display: none;
}
header nav .updatePopUp .container-fluid .row .col-12 form {
  text-align: center;
}
header nav .updatePopUp .container-fluid .row .col-12 form input {
  display: inline-block;
  width: 100%;
  border-radius: 10px;
  color: #2b2b2b;
  background-color: #f5f5f5;
  padding: 5px 10px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 10px;
  border: 1px solid #5b5b5b;
}
header nav .updatePopUp .container-fluid .row .col-12 form input[type=radio] {
  accent-color: #ff9900;
  transform: scale(2);
}
header nav .updatePopUp .container-fluid .row .col-12 form label {
  color: #5b5b5b;
  font-weight: 600;
}
header nav .updatePopUp .container-fluid .row .col-12 form h3 {
  font-size: 16px;
  color: #2b2b2b;
  font-weight: 600;
}
header nav .updatePopUp .container-fluid .row .col-12 form .logInBtn {
  display: inline-block;
  width: 100%;
  border-radius: 10px;
  color: #f5f5f5;
  background: linear-gradient(to bottom right, #ff9900, #e27335);
  padding: 10px 0;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  margin: 10px 0;
  border: none;
}
header nav .updatePopUp p {
  font-size: 20px;
  color: #312747;
}
header nav .updatePopUp .inputBox {
  margin-top: 20px;
}
header nav .updatePopUp .inputBox input {
  padding: 10px;
  outline: none;
  width: 300px;
  font-size: 18px;
  border: 1px solid gray;
  margin-top: 10px;
  width: 100%;
}
header nav .updatePopUp .inputBox input[type=submit] {
  padding: 10px;
  outline: none;
  width: 140px;
  color: white;
  background: #ff0083;
  border: 1px solid #ff0083;
  letter-spacing: 2px;
  box-sizing: border-box;
  cursor: pointer;
}
header nav .updatePopUp .close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

@media (min-width: 769px) {
  header nav .toggle {
    display: none !important;
  }
  header nav .menu {
    position: relative;
    display: flex;
    padding: 0;
    background: transparent;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
  }
  header nav .menu li a {
    position: relative;
    display: inline-block;
    margin: 0 25px;
    color: #acacac;
    text-decoration: none;
    padding-bottom: 5px;
  }
  header nav .menu li a:hover {
    color: #172388;
  }
  header nav .menu li a.active {
    color: #172388;
  }
  header nav .menu li a.active::after {
    position: absolute;
    content: "";
    height: 0.1875rem;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ff9900;
    border-radius: 5px;
  }
  header nav .menu li img {
    display: none;
  }
  header nav .menu li .certificationBtn {
    display: none !important;
  }
  header nav .menu .contactNav {
    display: none;
  }
  header nav .logo {
    order: -1;
  }
  header nav .logo img {
    height: 100px;
  }
  header nav .logInBtn {
    display: inline-block;
    border: 1px solid #acacac;
    border-radius: 5px;
    padding: 5px;
  }
  header nav .logInBtn:hover {
    background-color: #172388;
    border: 1px solid #172388;
  }
  header nav .logInBtn:hover span {
    color: #f5f5f5;
  }
  header nav .logInBtn img {
    width: 16px;
    margin-right: 5px;
  }
  header nav .logInBtn span {
    display: inline;
    color: #acacac;
  }
}
@media (min-width: 992px) {
  header nav .contactPopUp .container-fluid .row .col-lg-5 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  header nav .contactPopUp .container-fluid .row .col-lg-7 {
    padding-left: 15px;
    padding-right: 15px;
  }
  header nav .contactPopUp .container-fluid .row .col-lg-7 .container-fluid form .row .col-12 {
    text-align: right;
  }
  header nav .contactPopUp .container-fluid .row .col-lg-7 .container-fluid form .row .col-12 input[type=submit] {
    width: 25%;
  }
  header nav .updatePopUp {
    width: 50%;
  }
}

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