@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');*/

body {
  min-height: 100vh;
  font-family: "Raleway", "Verdana", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.3rem;
  font-weight: 300;
  font-style: normal;
  background-color: #023047;
  color: #ffffff;
  line-height: 1.5;
}

.wrapper {
  position: relative;
  max-inline-size: 1000px;
  block-size: 100%;
  margin-inline: auto;
  filter: none;
}

.primary-top-bar {
  display: flex;
  justify-content: space-between;
}

.axon-logo {
  block-size: 60px;
  margin-block: 10px 3px;
  padding-inline: 20px;
}

.primary-navigation {
  inline-size: 60%;
  display: inline-block;
  margin-block-start: auto;
  margin-block-end: 4px ;
}

.primary-navigation a{
  text-decoration: none;
}

.primary-navigation a:hover, 
.primary-navigation a:focus-visible {
  color: #fb8500;
}

.login-icon {
  height: 20px;
}

.login-button {
  color: #ffffff;
  margin-block: 26px 20px;
  padding-inline: 20px;
  text-decoration: none;
  @media(max-width: 730px){
    display:none;
  }
}

.login-button:hover,
.login-button:focus-visible {
  color: #fb8500;
}

.primary-topbar {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: space-evenly;
}

.primary-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: rgba(2, 48, 71, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.primary-sidebar li {
  margin-inline-start: 20px;
  margin-block-start: 20px;
  width: 100%;
}
.primary-sidebar a {
  width: 100%;
}

.primary-menu-button {
  display: none;
}

@media(max-width: 730px){
  .hideOnMobile{
    display: none;
  }
  .primary-menu-button {
    display: block;
  }
  .primary-navigation {
    inline-size: 10%;
    margin-block: 26px 20px;
    margin-inline-end: 10px;
  }
}
@media(max-width: 430px){
  .primary-sidebar{
    width: 100vw;
  }
  .footer-policies{
    flex-direction: column;
    align-items: center;
    margin-block-end: 10px;
  }
}

ul li {
  display: inline-block;
}

strong {
  font-weight: 500;
}

h1, h2 {
  font-size: clamp(40px, 5.6vw, 60px);
  font-weight: 200;
}

.word-highlight {
  color: #fb8500;
}

.word-highlight-green {
  color: #38C642;
}

.icon-logo {
  height: 35px;
  width: 35px;
}

footer {
  font-size: 14px;
  min-height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer ul {
  margin-block: auto;
  margin-inline: 30px;
  display:flex;
  justify-content: center;
}
footer li {
  padding-inline: 10px;
}

@media(max-width: 750px){
  footer{
    flex-direction: column;
  }
}

.primary-menu-button,
.primary-sidebar-close {
  cursor: pointer;
}

.main_subpage_title {
  padding-block: 18px;
  padding-inline-start: 20px;
  text-align: left;
  font-size: 3.0rem;
  font-weight: 250;
}

/* This is the branded banner that can appear just above the footer. */
.brand-banner {
  background-color: #010D13;
  border-bottom: #DCEAF7 3px solid;
}
.brand-banner-content {
  color: white;
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
}
.brand-banner p {
  padding-block: 15px;
}
.brand-banner-p1 {
  padding-inline-start: 30px;
  margin-block-end: 25px;
}
.brand-banner-p2 {
  padding-inline-end: 30px;
  margin-block-start: 25px;
}
@media(max-width: 750px){
  .brand-banner{
    display: none;
  }
}
