/*
0 - 600px:          Phone
600- 900px:         Tablet Portrait
900 - 1200px:       Tablet Landscape
(1200 - 1800px)     is where our normal styles apply
1800px + :          Big Desktop
*/
/*
$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: BASE + Typography > generl layout + grid > page layout > components
*/
/* ===== Viewports ===== */
/* ===== Margins & Paddings ===== */
body {
  margin: 0px;
  padding: 0px;
  font-size: 1rem;
  background-color: #ffffff;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  text-transform: inherit;
}

h1 {
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 700;
}

h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.strong {
  font-weight: 700;
  list-style: none;
}

a {
  color: #27509B;
  text-decoration: underline;
}
a:hover, a:active {
  color: inherit;
}

ul li {
  font-size: 1rem;
}
ul.key-features li, ul.your-application li {
  margin: 0 0 1rem 0;
}

ol,
ul {
  padding-left: 1rem;
}

ol li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

p a,
li a {
  text-decoration: underline;
  font-family: "Open Sans", sans-serif;
}
p a:hover,
li a:hover {
  text-decoration: underline;
}

::marker {
  color: #27509B;
  font-family: "Open Sans", sans-serif;
}

*:focus-visible {
  outline-offset: 1px;
}

img {
  max-width: 100%;
}

table {
  width: 100%;
}
table tr td {
  padding: 0.75rem 1rem;
}

legend {
  display: none;
}

.tooltipContainer {
  position: relative;
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.8rem;
  }
}
section {
  margin: 1rem 0 3rem 0;
}

.docNote {
  margin-left: 2.3rem;
}

::marker {
  color: #27509B;
  font-family: "Open Sans", sans-serif;
}

@media screen and (max-width: 992px) {
  .hideOnMobile {
    display: none;
  }
}
#Homepage #Banner .logo img {
  width: 12rem;
  margin-bottom: 1.5rem;
}
#Homepage #Banner h1 {
  margin-bottom: 2rem;
}
#Homepage .bannerText {
  padding: 2rem 1rem 2rem 0;
}
@media screen and (max-width: 576px) {
  #Homepage .logo {
    text-align: center;
  }
}
#Homepage #Intro .introText {
  padding: 0 2rem 0 0;
}
#Homepage #Intro ul {
  padding-left: 0;
}
#Homepage #Intro li {
  list-style-type: none;
}
#Homepage #Intro li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.4rem;
  content: "";
  content: "\f1c1";
  padding-left: 0;
  padding-right: 1rem;
  color: #27509B;
}
#Homepage #Intro .keyDocs a {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #Homepage #Intro .keyDocs {
    margin-top: 2rem;
  }
  #Homepage #Intro .introText {
    padding: 1rem;
  }
}

.footer {
  padding: 2rem 0 1rem 0;
  background-color: #000;
  color: #ffffff;
}
.footer p {
  font-size: 0.8rem;
}
.footer p a {
  color: #ffffff;
}

a.btn {
  text-decoration: none;
}

.btn {
  padding: 0.75rem;
  margin: 1rem 0;
  border-radius: 0;
  border: 1px solid #ffffff;
}
.btn.btn-primary {
  background: #ffffff;
  color: #27509B;
}
.btn.btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 768px) {
  .btn {
    width: 97%;
  }
}

.bannerStrap {
  background: #27509B;
}

#Masthead {
  overflow: hidden;
  background-color: #27509B;
  color: #ffffff;
}
#Masthead .image {
  position: relative;
}
#Masthead .image img {
  height: 100%;
  max-height: 100%;
  display: block;
}