@charset "UTF-8";
/* || Properties for the entire page || */
* {
  margin: 0;
  padding: 0;
  font-size-adjust: none;
}

.login-page {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.login-page .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  width: 90%;
  max-width: 900px;
  box-sizing: border-box;
  overflow: hidden;
}
.login-page .container .info-box {
  max-width: 400px;
  color: white;
  border-left: 1px solid #27A7DF;
  display: flex;
  flex-direction: column;
  flex-shrink: 1;
  padding-left: 32px;
}
.login-page .container .info-box h1 {
  color: #FFF;
  font-family: "Arial Nova";
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: 74px;
  letter-spacing: -1.56px;
  margin-bottom: 24px;
  margin-top: 0;
}
.login-page .container .info-box .info-box-text {
  color: #FFF;
  font-family: Arial;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 24px;
}
.login-page .container .login-box {
  border-radius: 8px;
  width: 280px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border: 3px solid rgba(217, 225, 231, 0.45);
  background: #FFF;
  box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  overflow: hidden;
}
.login-page .container .login-box img {
  width: 150px;
  height: 66px;
  text-align: center;
}
.login-page .container .login-box h2 {
  color: #050505;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 12px;
}
.login-page .container .login-box p {
  color: #809FB8;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 12px;
}
.login-page .container .login-box label {
  color: #005A8C;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
.login-page .container .login-box input {
  width: 90%;
  display: flex;
  padding: 8px 12px;
  margin-top: 5px;
  align-self: stretch;
  gap: 8px;
  border: 1px solid #BFBFBF;
  border-radius: 4px;
  background: #FFF;
  margin-bottom: 12px;
  font-size: 14px;
}
.login-page .container .login-box .forgot-password {
  display: block;
  text-align: left;
  font-size: 12px;
  color: #007BFF;
  margin-top: 5px;
  text-decoration: none;
}
.login-page .container .login-box #login-message {
  font-size: 14px;
  margin-top: 10px;
  padding: 8px;
  text-align: center;
  border-radius: 4px;
  display: none;
}
.login-page .container .login-box .remember-me {
  display: flex;
  align-items: center;
  justify-items: center;
  margin-top: 10px;
}
.login-page .container .login-box .remember-me label {
  color: #809FB8;
  align-items: center;
  font-family: "Proxima Nova";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 19px;
}
.login-page .container .login-box .remember-me input {
  margin-right: 5px;
  width: 16px;
  height: 16px;
  align-items: center;
}

.login-btn {
  width: 100%;
  border-radius: 4px;
  font-size: 16px;
  margin-top: 15px;
  cursor: pointer;
  height: 50px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  border: 2px solid #FF750A;
  background: #FFF;
  color: #000;
  font-weight: 700;
  -webkit-text-decoration: None;
          text-decoration: None;
}

.login-btn:hover {
  background: #FF750A;
  color: #FFF;
}

/* || Loader styling */
#loadingDiv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(245, 247, 252, 0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loadingDiv .loader-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
}

.modal {
  display: none;
  position: fixed;
  z-index: 400;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.modal .modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  border-top: 4px solid #FF750A;
  width: 50%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease-in-out;
  font-family: "Arial Nova", Arial, Helvetica, sans-serif;
}
.modal .modal-content h2,
.modal .modal-content input,
.modal .modal-content p {
  padding: 12px;
}
.modal .modal-content p {
  font-size: 16px;
}
.modal .modal-content a {
  text-decoration: none;
  color: #005A8C;
  cursor: pointer;
}
.modal .modal-content #forgot-password-message {
  font-size: 14px;
  margin-top: 10px;
  padding: 8px;
  text-align: center;
  border-radius: 4px;
  display: none;
}
.modal .close-btn {
  float: right;
  font-size: 32px;
  cursor: pointer;
  font-weight: bold;
  color: #333;
  transition: color 0.2s ease-in-out;
  margin: 0;
}
.modal .close-btn:hover {
  color: #ff4500;
}

#forgot-email {
  width: 90%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
  padding: 8px 12px;
  margin-top: 5px;
  border: 1px solid #BFBFBF;
  font-size: 14px;
  transition: border-color 0.3s ease-in-out;
}

#forgot-email:focus {
  border-color: #007BFF;
  outline: none;
  box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
}

.success-message {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}

.error-message {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}

.hidden {
  display: none;
}

.avatar {
  width: 38px;
  height: 38px;
  background-color: #7DCAEC;
  color: #FFF;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-transform: uppercase;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

.login-logo {
  display: flex;
  flex-direction: row;
}
.login-logo img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  margin-top: 16px;
  margin-right: 8px;
}
.login-logo a {
  -webkit-text-decoration: None;
          text-decoration: None;
}
.login-logo p {
  color: #FFF;
  font-family: Arial;
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 5px;
  margin-top: 5px;
}
.login-logo p span {
  color: #FFF;
  font-family: Arial;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 1.167px;
}

.small-font p {
  font-size: 24px;
  line-height: 24px;
  margin-top: 0px;
  letter-spacing: 2px;
}
.small-font img {
  width: 28px;
  height: 28px;
  margin-top: 8px;
  margin-left: 16px;
}

/* || Toparea styling -> Breadcrumb */
#toparea {
  display: flex;
  align-items: center;
  width: 100%;
  height: 6vh;
  position: fixed;
  top: 0;
  padding: 8px 0px;
  z-index: 23;
  font-family: Arial;
  flex-shrink: 0;
  background: #005A8C;
}
#toparea a {
  text-decoration: none;
  cursor: pointer;
}

/* || This section styles the toparea -> help, and user profile menu. */
#toparea-buttons {
  display: flex;
  margin-right: 32px;
  position: relative;
  justify-content: flex-end;
}
#toparea-buttons .toparea-menu {
  border: none;
  padding: 8px;
  color: #FFF;
  margin-right: 8px;
  cursor: pointer;
}
#toparea-buttons .toparea-menu span {
  font-size: 14px;
  color: #FFF;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}
#toparea-buttons .help-dropdown-class,
#toparea-buttons .user-dropdown-class {
  display: none;
  position: absolute;
  background-color: #FFF;
  border: 1px solid #CCCCCC;
  list-style: none;
  top: 100%;
  z-index: 20;
  border-radius: 8px;
  padding: 10px 0;
  margin: 0;
  min-width: 180px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.2s ease-in-out, transform 0.1s ease-in-out;
  opacity: 0;
  transform: translateY(-5px);
}
#toparea-buttons .help-dropdown-class li a,
#toparea-buttons .user-dropdown-class li a {
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #282828;
  line-height: 2;
  margin-left: 12px;
  display: block;
  padding: 5px 0;
  transition: color 0.2s ease-in-out;
}
#toparea-buttons .help-dropdown-class li:hover,
#toparea-buttons .user-dropdown-class li:hover {
  cursor: pointer;
  background-color: #CCC;
}
#toparea-buttons .help-dropdown-class {
  right: 100px;
}
#toparea-buttons .user-dropdown-class {
  right: 0;
}
#toparea-buttons .show-dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* || a footer bar at the very bottom of the page. */
footer {
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  height: 2vh;
  background: #002d46;
  color: white;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px 5vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.5px;
  z-index: 5;
}
footer img {
  width: 87px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(87deg) brightness(103%) contrast(103%);
}
footer a,
footer span {
  font-size: 12px;
  white-space: nowrap;
  color: #FFF;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease-in-out;
}

/* || styling for main landing page. */
.main-landing-page {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.main-landing-page #main-landing-page-midarea {
  display: -webkit-grid;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 16px;
}
.main-landing-page #main-landing-page-midarea .first-subsection {
  grid-row: 1/2;
  position: relative;
  display: grid;
  grid-template-columns: 0.5fr 1.25fr 3fr;
  align-items: flex-start;
  max-height: 350px;
  min-height: 250px;
  gap: 30px;
  background-color: #005A8C;
}
.main-landing-page #main-landing-page-midarea .first-subsection .image-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
  grid-column: 2/3;
  z-index: 100;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-landing-page #main-landing-page-midarea .first-subsection .image-container img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  aspect-ratio: 1/1;
}
.main-landing-page #main-landing-page-midarea .first-subsection .main-figure-text {
  grid-column: 3/4;
  position: relative;
  color: #FFF;
  font-family: "Arial Nova", Arial, Helvetica, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-style: normal;
  font-weight: 400;
  line-height: clamp(40px, 4vw, 60px);
  margin-top: 7vh;
  padding-left: 16px;
  z-index: 0;
}
.main-landing-page #main-landing-page-midarea .first-subsection .main-figure-text svg {
  width: 100%;
  height: 2px;
  display: block;
}
.main-landing-page #main-landing-page-midarea .first-subsection .main-figure-text .index-subtext {
  color: #FFF;
  font-family: Arial;
  font-size: clamp(14px, 1.5vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  white-space: normal;
  margin-top: 16px;
  letter-spacing: 1px;
  width: 80%;
}
.main-landing-page #main-landing-page-midarea .third-subsection {
  display: flex;
  flex-direction: column;
  max-width: 90%;
  width: 100%;
  margin-left: 5%;
}

/* || Section Title Styling || */
.catalog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.catalog-container .catalog-card {
  background: white;
  border-right: 1px solid #606060;
  padding: 16px 16px 40px 16px;
  position: relative;
  min-height: 200px;
  max-height: 300px;
  overflow: hidden;
}
.catalog-container .catalog-card h3 {
  font-family: "Arial Nova", Arial, sans-serif;
  margin-bottom: 12px;
  color: #197FAB;
  font-feature-settings: "liga" off, "clig" off;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  min-height: 48px;
  line-height: 24px;
}
.catalog-container .catalog-card p {
  font-size: 14px;
  color: #3f3f3f;
  text-align: left;
  font-feature-settings: "liga" off, "clig" off;
  font-family: Arial;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.catalog-container .catalog-card .learn-more {
  position: absolute;
  font-family: "Arial Nova", Arial, sans-serif;
  bottom: 8px;
  left: 20px;
  font-feature-settings: "liga" off, "clig" off;
  font-size: 14px;
  font-weight: bold;
  color: #005A8C;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.catalog-container .catalog-card .learn-more svg {
  background-color: #005A8C;
  padding: 4px;
  border-radius: 12px;
  width: 14px;
  height: 14px;
}
.catalog-container .catalog-card .learn-more:hover {
  color: #FF750A;
}
.catalog-container .catalog-card .learn-more:hover svg {
  background-color: #FF750A;
}

/* || Dialog box styling */
.dialog {
  display: none;
  position: fixed;
  z-index: 400;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease-in-out;
}
.dialog .dialog-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  background: white;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  border-top: 4px solid #FF750A;
  font-family: "Arial Nova", Arial, Helvetica, sans-serif;
}
.dialog .dialog-message {
  color: #282828;
  margin-bottom: 16px;
  line-height: 1.5;
  font-size: 16px;
}
.dialog .dialog-buttons {
  display: flex;
  justify-content: flex-end;
  text-align: center;
}
.dialog .btn-yes,
.dialog .btn-no {
  margin: 8px;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  display: flex;
  height: 30px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  color: #FFF;
  border: none;
  border-radius: 4px;
  gap: 10px;
  background-color: #FF750A;
}
.dialog .btn-yes:hover,
.dialog .btn-no:hover {
  color: #fff;
  background-color: #B93F00;
}

/* || Ask an Analyst Page || */
#ask_analyst_page {
  margin: 0 10%;
  margin-top: 4%;
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
#ask_analyst_page .askAnalyst {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  overflow: hidden;
}
#ask_analyst_page .askAnalyst iframe {
  flex: 1;
  border: none;
}

/* || Technical Support Popup Container (Hidden by Default) || */
.popup-container {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transition: bottom 0.4s ease-in-out;
  z-index: 401;
  visibility: hidden;
  /* || Popup Content || */
}
.popup-container .popup-content {
  width: 600px;
  max-width: 90%;
  background: white;
  padding: 30px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  /* || Form Styling || */
}
.popup-container .popup-content .technicalSupport-Heading {
  font-family: "Arial Nova", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #005A8C;
  display: block;
  margin-bottom: 20px;
  text-align: left;
}
.popup-container .popup-content .technicalSupport-div {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  padding-right: 32px;
}
.popup-container .popup-content .technicalSupport-label {
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  color: #005A8C;
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 20px;
}
.popup-container .popup-content .technicalSupport-input,
.popup-container .popup-content textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #CCC;
  border-radius: 5px;
  background-color: white;
}
.popup-container .popup-content .technicalSupport-input:focus,
.popup-container .popup-content textarea:focus {
  border: 2px solid #005A8C;
  outline: none;
}
.popup-container .popup-content .technicalSupport-finalMessage {
  font-family: "Arial Nova", Arial, Helvetica, sans-serif;
  padding-top: 8px;
  font-size: 12px;
  font-weight: bold;
  color: green;
  display: none;
  text-align: left;
}
.popup-container .popup-content .technicalSupport-disclaimer a {
  color: #005A8C;
  text-decoration: none;
  font-weight: bold;
  font-size: 11px;
}
.popup-container .popup-content .technicalSupport-disclaimer a:hover {
  text-decoration: underline;
}
.popup-container .popup-content .technicalSupport-disclaimer {
  font-family: "Arial Nova", Arial, Helvetica, sans-serif;
  font-size: 11px;
  color: #b2b2b2;
  text-align: left;
  margin: 0;
}
.popup-container .popup-content .errors {
  font-family: "Arial Nova", Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: red;
  margin-top: 4px;
}

/* || Show Popup (Active Class) - Technical support || */
.popup-container.show {
  bottom: 0;
  visibility: visible;
}
.popup-container.show .popup-content {
  transform: translateY(0);
}

/* || Technical support page - Close Button || */
.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 18px;
  cursor: pointer;
  color: #FF750A;
}

/* || Buttons || */
.section-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.section-footer .footbar-buttons {
  font-family: "Arial Nova", Arial, Helvetica, sans-serif;
  background-color: #FF750A;
  color: white;
  padding: 12px 20px;
  border: none;
  font-size: 14px;
  font-weight: bold;
  border-radius: none;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}
.section-footer .footbar-buttons:hover {
  background-color: #ff4500;
}

.footer-buttons {
  display: inline-flex;
  height: 16px;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border: 2px solid #27A7DF;
  background: #FFF;
  cursor: pointer;
  color: #000;
  text-align: center;
  font-family: Arial;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  margin-left: 40px;
  margin-bottom: 16px;
}
.footer-buttons img {
  width: 12px;
  aspect-ratio: 1;
}

.footer-buttons:hover {
  background-color: #27A7DF;
  color: white;
}
.footer-buttons:hover svg,
.footer-buttons:hover img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(254deg) brightness(102%) contrast(107%);
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ********************    || MEDIA QUERIES 768px – 2000px ||   ************ */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* || Medium devices (≥768px) */
@media screen and (min-width: 768px) {
  body {
    font-size-adjust: 0.7;
  }
  #toparea {
    justify-content: space-between;
  }
  .catalog-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .first-subsection {
    grid-template-columns: 1fr 1.5fr 2fr;
    text-align: left;
  }
}
/* || Large devices (<=1024px) */
@media screen and (max-width: 1024px) {
  .third-subsection {
    margin-top: 48px;
  }
  .catalog-card {
    height: 275px;
  }
  .main-landing-page {
    overflow: hidden;
  }
  .main-landing-page #main-landing-page-midarea .first-subsection {
    grid-template-columns: 1fr;
    padding: 30px 4vw;
  }
  .main-landing-page #main-landing-page-midarea .first-subsection .image-container {
    display: none !important;
  }
  .main-landing-page #main-landing-page-midarea .first-subsection .main-figure-text {
    padding-left: 0;
    text-align: left;
  }
}
/* || Large devices (≥1200px) */
@media screen and (min-width: 1200px) {
  #toparea {
    justify-content: space-between;
  }
  .catalog-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1200px) {
  footer {
    justify-content: flex-start;
    gap: 8px;
  }
  .small-font {
    margin-left: 8px;
  }
  .small-font p {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 2px;
  }
  .small-font img {
    width: 16px;
    height: 16px;
  }
  .index-subtext {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
  }
  .section-title {
    text-align: left;
  }
}/*# sourceMappingURL=styles.css.map */