/* Fonts */
@font-face {
  font-family: 'IBMPlexSans';
  src: url('src/fonts/IBMPlexSans/IBMPlexSans-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Basic resets */
body,
html {
  padding: 0;
  margin: 0;
  color: #000000;
  background-color: #ffffff;
  font-size: 16px;
  font-family: 'IBMPlexSans', sans-serif;
  line-height: 1.6;
}
h1 {
  font-size: 4.1rem;
  line-height: 1.167;
}
h2 {
  font-size: 2.5rem;
  line-height: 1.27;
  font-style: italic;
}
h3 {
  font-size: 1.6rem;
  line-height: 1.29;
  font-style: italic;
}
h4 {
  font-size: 1rem;
  line-height: 1.14;
}
h5 {
  font-size: 0.9rem;
  line-height: 1;
}
.dN {
  display: none;
}
a {
  color: #0f5ddd;
}
a:hover,
a:focus {
  color: #000000;
}
p {
  margin-top: 1.8rem;
}
img {
  max-width: 100%;
  width: auto;
  height: auto;
}
img[src$='.svg'] {
  width: 250px;
}
iframe {
  background: #b1b1b1;
}
blockquote {
  margin: 1rem 0;
}
.SkipLink {
  height: 0;
  position: absolute;
  width: auto;
  overflow: hidden;
}
.SkipLink:focus {
  height: auto;
  z-index: 10;
}

/* Basic Layout */
#page {
  padding: 1.8rem;
}
#main-wrapper {
  margin: 0 auto;
  max-width: 67.2rem;
}
/* Navigation */
nav {
  border-bottom: 4px solid #b1b1b1;
  padding-bottom: 1.8rem;
}
nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}
nav > ul > li {
  margin-right: 0.5rem;
}
nav li {
  margin-top: 0.25rem;
}
nav li > ul {
  padding: 0;
  list-style: none;
}
nav li > ul > li {
  padding-left: 1rem;
}
nav span {
  background: transparent;
  color: inherit;
  padding: 0;
  font-weight: normal;
  text-decoration: underline;
  border-radius: 0;
}
footer > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}
footer > ul > li {
  margin-right: 0.5rem;
}
footer li {
  margin-top: 0.25rem;
}
footer li > ul {
  padding: 0;
  list-style: none;
}
footer li > ul > li {
  padding-left: 1rem;
}
footer span {
  background: transparent;
  color: inherit;
  padding: 0;
  font-weight: normal;
  text-decoration: underline;
  border-radius: 0;
}

/* Lists */
ol li {
  margin-top: 0.5rem;
}
/* Form */
form {
  margin: 1.8rem 0;
}
.form-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1rem;
}
input,
select,
textarea {
  background-color: transparent;
  color: #000000;
  border: none;
  border-bottom: 2px solid #000000;
  padding: 0.5rem;
}
input {
  padding: 0.5rem 0;
}
textarea {
  border: 2px solid #000000;
}
button,
input[type='submit'] {
  margin-top: 1rem;
  background-color: #1a2a3d;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.2s;
}
button:hover,
button:focus,
input[type='submit']:hover,
input[type='submit']:focus {
  background-color: #1a2a3d;
}
.ContactForm-Confirm {
  display: none;
}
/* Entity references */
.views-row,
.testimonial-section {
  border-bottom: 2px solid #b1b1b1;
  padding-bottom: 1.8rem;
  margin: 1.8rem 0;
}
.views-row:first-child,
.testimonial-section:first-child {
  border-top: 2px solid #b1b1b1;
  padding-top: 1.8rem;
}
.testimonial-section .views-row {
  border: none;
  margin: 0;
  padding: 0;
}
/* Cards */
.card {
  display: inline-block;
  width: 350px;
  padding: 1rem;
  margin: 1rem;
  border: 2px solid #b1b1b1;
}