body {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: sans-serif;
  margin: 0;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

label {
  /* Resets the margins that Bootstrap randomly adds. Without this, labels
    don't center vertically no matter what you do, so they don't line up with
    the input fields, and it looks crazy. */
  margin: 0;
}

input[type="checkbox"] {
  /* Resets the margins that Bootstrap randomly adds. Without this, labels
    don't center vertically no matter what you do, so they don't line up with
    the input fields, and it looks crazy. */
  margin: 0;
}

p {
  /* Paragraphs already have internal padding. Bootstrap's added margins
    makes them weirdly spaced out and looks terrible. Let's get rid of them. */
  margin: 0;
}

.hidden {
  display: none;
}

.italic {
  font-style: italic;
}

.field {
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

#vueApp {
  flex: 1 0 auto;
}

a {
  color: #5533ff;
}

.header,
.footer {
  align-items: center;
  background-color: #e0e0f0;
  display: flex;
  padding: 10px;
  padding-right: 25px;
  flex-shrink: 0;
}

.footer {
  margin-top: 10px;
}

.companyBox {
  align-items: center;
  display: flex;
  color: black;
  padding-right: 15px;
  text-decoration: none;
}

.header .companyBox img {
  height: 120px;
}

.footer .companyBox img {
  height: 120px;
}

.companyBox .name {
  color: #5533ff;
  margin: 0;
}

.header .companyBox .name {
  font-size: 36px;
}

.footer .companyBox .name {
  font-size: 26px;
}

.companyBox .slogan {
  margin: 0;
}

.header .companyBox .slogan {
  font-size: 15px;
}

.footer .companyBox .slogan {
  font-size: 12px;
}

.companyDetails .address {
  margin-left: 50px;
  margin-top: 15px;
}

.techStack {
  margin-left: auto;
}

.footer .companyDetails {
  margin-right: 5px;
}

.techStack .title {
  font-size: 18px;
}

.techStack .item,
.companyDetails .address p {
  margin-bottom: 5px;
  margin-top: 5px;
}

.techStack .item {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  color: #1abc9c;
  padding: 5px;
}

.techStack .item img {
  margin-right: 5px;
  height: 20px;
}

.techStack .item span {
  margin-top: 3px;
}

.navigationMenu {
  margin-left: auto;
}

.navigationMenu a,
.navigationMenu a:visited,
.address a,
.address a:visited {
  color: #5533ff;
}

.header a,
.header a:visited,
.footer a,
.footer a:visited {
  text-decoration: none;
}

.navigationMenu a.selected,
.navigationMenu a.selected:visited {
  border-width: 2px;
}

.footer .navigationMenu a,
.footer .navigationMenu .signUpBox {
  padding-top: 4px;
  padding-bottom: 4px;
}

.footer .navigationMenu .linkWrapper {
  margin: 5px;
  margin-bottom: 15px;
}

.pageTitle,
.pageSubtitle {
  /* These headers should already be in some type of container that has its own padding. No need for margin top. */
  margin-top: 0px;

  text-align: center;
}

.imageLink {
  text-decoration: none;
}

.signUpBox .form {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.signUpBox .button,
.formField button {
  background-color: #5533ff;
  border: none;
  border-radius: 3px;
  color: #ffffff;
  padding: 8px;
  width: 210px;
  margin-left: 5px;
}

.formField button {
  padding-top: 12px;
}

.signUpBox .headline {
  margin-left: 5px;
}

.signUpBox .button {
  margin-right: 0px;
  width: 50%;
}

.signUpBox input {
  padding: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  box-sizing: border-box;
}

.signUpBox .formField {
  display: flex;
  flex-direction: column;
  width: 50%;
  flex-wrap: wrap;
  align-items: start;
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 210px;
  max-width: 210px;
  margin-left: 5px;
}

.signUpBox .button {
  display: flex;
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 210px;
  max-width: 210px;
}

.signUpBox .formField .inputWrapper {
  display: flex;
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
}

.signUpBox .formField input[type="text"],
.signUpBox .formField input[type="email"],
.signUpBox .formField textarea,
.signUpBox .button {
  font-size: 14px;
  display: flex;
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 210px;
  max-width: 210px;
}

.signUpBox .formField input[type="text"],
.signUpBox .formField input[type="email"],
.signUpBox .formField textarea {
  width: 100%;
}

.pageContent {
  margin: 20px;
}

.pageContentNarrow {
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 0;
  margin-top: 10px;
  max-width: 1400px;
  padding-left: 20px;
  padding-right: 20px;
  background-size: auto;
}

.pageContentMediumWidth {
  margin-left: 10%;
  margin-right: 10%;
  margin-bottom: 20px;
  margin-top: 45px;
}

#teamMembers {
  padding: 1em;
  margin: 2em auto;
}

#teamMembersSectionTitle {
  text-align: center;
  margin: 1em;
}

#teamMembersList {
  display: flex;
  gap: 1em;
}

.nice-gray-box-shadow {
  box-shadow: 1px 1px 3px 1px #ccc;
}

.teamMember {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 1em;
}

.teamMember .memberName {
  text-align: center;
  font-size: 1.6rem;
  margin: 0;
}

.teamMember .memberTitle {
  text-align: center;
  margin: 0;
  font-size: 1.4em;
}

.memberPortrait {
  border: 1px solid #ccc;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 1em;
}

.pageContentIndex {
  display: flex;
  flex-direction: column;

  /*
  Prevents things from overlapping and looking insane on Safari.
  Needs to be done because Steve Jobs decided that things should randomly overlap, by default.
  */
  flex: 1 0 auto;

  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.pageContentDownload {
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.center {
  text-align: center;
}

.justify {
  text-align: justify;
}

.contactForm .formField {
  margin-bottom: 10px;
}

.formField .row {
  display: flex;
}

.formField input[type="text"],
.formField input[type="email"],
.formField textarea {
  font-family: sans-serif;
  border-style: solid;
  border-radius: 3px;
  border-width: 2px;
}

.contactForm input[type="text"],
.contactForm input[type="email"],
.contactForm textarea {
  font-size: 18px;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 5px;
  padding-bottom: 2px;
  width: 100%;
}

.formField input[type="text"],
.formField input[type="email"],
.formField textarea {
  border-color: #5533ff;
}

.formField.optional input[type="text"],
.formField.optional input[type="email"],
.formField.optional textarea {
  border-color: #bbbbbb;
}

.formField button {
  font-family: sans-serif;
  font-size: 18px;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.validationErrorDisplay,
.errorMessageDisplay,
.errorMessageUi {
  color: #cc2222;
  margin-bottom: 5px;
  margin-top: 5px;
}

.successMessageDisplay,
.successMessageUi {
  color: #22cc22;
  margin-bottom: 5px;
  margin-top: 5px;
}

.successMessageDisplay,
.successMessageUi,
.errorMessageDisplay,
.errorMessageUi {
  border-style: solid;
  border-width: 2px;
  padding: 5px;
}

.successMessageUi,
.errorMessageUi {
  margin-top: 10px;
}

.caseStudyServices,
.caseStudyVerticals,
.blogCategories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.caseStudyPage .caseStudyServices,
.caseStudyPage .caseStudyVerticals {
  justify-content: center;
  margin-top: 20px;
}

.searchBox,
.searchBox .caseStudyServices,
.searchBox .caseStudyVerticals,
.searchBox .blogCategories {
  margin-bottom: 25px;
}

.caseStudy {
  display: inline-block;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 20%;
  margin-bottom: 25px;
}

.caseStudies .caseStudy {
  border-style: solid;
  border-width: 2px;
  border-color: #000000;
  margin-right: 25px;
}

.caseStudy[data-has-url="true"] {
  border-color: #5533ff;
}

.caseStudy[data-has-url="false"] {
  cursor: default;
  pointer-events: none;
  color: #000000;
}

.caseStudyDescription {
  margin-bottom: 10px;
}

.caseStudyImage {
  max-height: 200px;
  display: block;
  margin: auto;
}

.taxonomyItemsTitle {
  display: inline-flex;
}

.searchTaxonomyItemsTitle {
  padding-top: 3px;
  margin-right: 10px;
}

.caseStudy .caseStudyServices .taxonomyItemsTitle {
  color: #1abc9c;
}

.caseStudyServices .item,
.caseStudyVerticals .item,
.searchBox .item,
.blogCategories .item {
  display: inline-flex;
  align-items: center;
  padding-right: 8px;
  margin-right: 10px;
}

.caseStudyServices .item,
.searchBox .item,
.blogCategories .item {
  padding-bottom: 5px;
}

.caseStudyServices .taxonomyItemsTitleBox,
.caseStudyVerticals .taxonomyItemsTitleBox {
  padding-right: 5px;
  margin-right: 0px;
}

.searchBox .item,
.blogCategories .item {
  border-style: solid;
  border-width: 2px;
  cursor: pointer;
  padding-bottom: 5px;
  padding-left: 8px;
  padding-top: 5px;
}

.post .blogCategories .item {
  padding-top: 8px;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.6);
}

.blogPosts .post {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  display: flex;
  text-decoration: none;
}

.searchBox .item .title {
  margin-left: 5px;
  padding-top: 3px;
}

.caseStudy .caseStudyVerticals .item {
  padding-bottom: 0px;
}

.caseStudyServices .item:last-child {
  margin-right: 0px;
}

.caseStudyServices .item,
.blogCategories .item {
  border-color: #069878;
  color: #069878;
}

.caseStudyServices .item[data-is-selected="true"],
.blogCategories .item[data-is-selected="true"] {
  background-color: #1abc9c50;
}

.caseStudyVerticals .item {
  border-color: #5533ff;
  color: #5533ff;
}

.caseStudyVerticals .item[data-is-selected="true"] {
  background-color: #5533ff50;
}

.taxonomyItemsTitle {
  padding-top: 3px;
}

.caseStudyServices .item,
.caseStudyVerticals .item,
.searchBox .blogCategories .item {
  margin-bottom: 10px;
}

.caseStudyServices .item img,
.caseStudyVerticals .item img,
.searchBox .item img {
  height: 24px;
}

.caseStudyTitle {
  padding-bottom: 20px;
  font-size: 22px;
}

.caseStudies {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
  margin-left: 25px;
  justify-content: center;
}

.blogPosts {
  display: flex;
  margin-bottom: 20px;
}

.post {
  border-width: 2px;
  border-style: solid;
  margin-right: 20px;
  margin-top: 20px;
}

.post:last-child,
.post.featured {
  margin-right: 0px;
}

input[readonly] {
  pointer-events: none;
  background-color: #cccccc;
}

.products {
  flex-direction: column;
}

.companyServices,
.products {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.products .product,
.companyServices .companyService {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.companyServices .companyService {
  flex-basis: 30%;
  flex-grow: 0;
  flex-shrink: 0;
  margin-bottom: 10px;
}

.companyServices .companyService:nth-of-type(3n) {
  margin-right: 0;
}

.companyServices .companyService:nth-of-type(3n + 1) {
  margin-left: 0;
}

.companyService {
  display: flex;
  flex-direction: column;
  border-style: solid;
  border-width: 2px;
  margin-right: 10px;
  text-align: center;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  background-size: cover;
}

.product {
  display: flex;
  flex-direction: column;
  border-style: solid;
  border-width: 2px;
  margin-bottom: 10px;
  text-align: center;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
}

.companyService:last-child {
  margin-right: 0px;
}

.companyService .title,
.product .title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.inlineTitle {
  font-weight: bold;
}

.companyService .description {
  margin-top: 10px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.companyService .aspects {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.companyService .aspect {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 5px;
  align-self: center;
}

.companyService .aspect:hover {
  text-decoration: underline;
}

.companyService .aspect .popup {
  display: none;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 40px;
  right: 40px;
  color: #000000;
  border-color: #000000;
  border-style: solid;
  background-color: #ffff99;
  padding: 20px;
  text-align: justify;
}

.popupCloseButton {
  margin-left: 20px;
  width: 24px;
  height: 24px;
}

.product .problem {
  margin-bottom: 10px;
  text-align: left;
}

.product .solution {
  margin-bottom: 10px;
  text-align: left;
}

.caseStudySection .title {
  font-weight: bold;
  margin-bottom: 10px;
}

.caseStudyPage .caseStudySections {
  display: flex;
}

.caseStudyPage .caseStudySection {
  padding: 20px;
  text-align: left;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
}

.managementLink {
  display: inline-flex;
  margin: auto;
  margin-bottom: 20px;
}

.blogPostPage .post {
  margin-bottom: 20px;
}

.searchTaxonomyItemsList {
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
}

.autoMargin {
  margin-left: auto;
  margin-right: auto;
}

.red {
  color: #f02222;
}

.buttonBar {
  margin-top: 10px;
}

.booyaBox {
  box-shadow: 0px 0px 2px 2px #d0d0d0;
  background: white;
  padding: 30px;
  margin: 30px;
  font-family: "Raleway", sans-serif;
  border-radius: 5px;
}
