.display-flex {
  display: flex;
  flex-wrap: nowrap;
}

.flex-layout {
  flex-direction: column-reverse;
  @media screen and (min-width: 800px) {
    flex-direction: row;
  }
}

.valign-center {
  justify-content: center;
  @media screen and (min-width: 800px) {
    align-items: center;
  }
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-gap {
  gap: 15px;
}

.col, .flex {
  flex: 1 1 50%;
}

.flex {
  max-width: calc(50% - 15px);
}
.p-30 {
  padding: 30px;
}

.mt-20 {
  margin-top: 20px;
}

.pum-title {
  margin-top: 0;
  font-family:'GothamNarrow-Black' !important;
  font-weight: 450!important;
}

.pum-content {
  font-size: 16px !important;
  line-height: 143% !important;
  font-weight: 600!important;
}

.btn-blue-outline {
  display: block;
  text-align: center;
  border: 4px solid #2B5798;
  color: #2B5798;
  padding: 7px 15px;
  font-size: 18px;
  font-family: 'GothamNarrow-Black';
}

.btn-blue-outline:hover {
  text-decoration: none;
  background: #62C9F2E5;
  color: #000;
}

.btn-blue-outline-gray {
  background: #ddd;
}

.align-center {
  margin: 0 auto;
  text-align: center;
}

.btn-blank {
  background: transparent;
  border: none;
  color: #337AB7;
  display: inline-block;
  text-align: center;
  font-size: 17px;
  border-bottom: 4px solid #fff
}

.btn-blank:hover {
  border-bottom: 4px solid #62C9F2E5;
}

.btn-blank i {
  margin-left: 4px;
}

em, i {
  font-style: italic;
}

strong, b {
  font-weight: bold;
}

.show-desktop {
  display: none;
  @media screen and (min-width: 800px) {
    display: block;
  }
}

.show-mobile {
  display: block;
  @media screen and (min-width: 800px) {
    display: none;
  }
}
