/**
 * Media Queries
 */
/**
 * Standard Colors
 */
.btn-inverse {
  background: #2CD5C4;
  color: #071D49 !important;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
  border-radius: 25px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 20px;
  line-height: 1.5rem;
  text-decoration: none !important;
  background: #fff !important;
  border: 2px solid #071D49 !important;
  padding: 8px 18px !important;
}
.btn-inverse:hover {
  background: #d7efe7;
}
.btn-inverse:hover {
  background: #c6e6e1 !important;
}
.multiple-callout {
  /**
   * may need to "fill" column's space if the block is set to more columns than callouts
   * otherwise space-between causes a gap in the center
   *
   * 3 columns
   * - 1 callout: fine, will left align
   * - 2 callouts: will have gap, need to "fill 1"
   * 4 columns
   * - 1 callout: fine, will left align
   * - 2 callouts: will have gap, need to "fill 2"
   * - 3 callouts: will have gap, need to "fill 1"
   **/
}
.multiple-callout.no-padding-top {
  padding-top: 0;
}
.multiple-callout.no-padding-bottom {
  padding-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .multiple-callout .callout-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.multiple-callout .callout {
  display: flex;
  flex-direction: column;
  margin: 1.5rem 0;
  width: 100%;
}
@media only screen and (max-width: 782px) {
  .multiple-callout .callout.has-icon {
    padding-top: 3rem;
  }
  .multiple-callout .callout.has-icon:first-child {
    padding-top: 0;
  }
}
.multiple-callout .content,
.multiple-callout .description-wrap {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.multiple-callout .link-wrap {
  margin-top: auto;
}
.multiple-callout .img-wrap {
  /* min-height needed for <=IE11 flex bug issue, see: https://github.com/philipwalton/flexbugs/issues/75 */
  min-height: 1px;
}
.multiple-callout .img-wrap img {
  display: block;
  height: auto;
  width: 100%;
}
.multiple-callout .icon-wrap img {
  height: auto;
  width: 80px;
}
.multiple-callout .content {
  flex-grow: 1;
}
.multiple-callout .content .description-wrap {
  margin-right: 10px;
}
.multiple-callout .content .description-wrap .link-wrap {
  padding-left: 0;
  padding-top: 1em;
}
.multiple-callout .content .description-wrap p + .link-wrap {
  padding-top: 0;
}
.multiple-callout .callout.bottom .description-wrap {
  justify-content: flex-end;
}
.multiple-callout .callout.bottom .link-wrap {
  margin-top: 0;
}
.multiple-callout.has-icon h5,
.multiple-callout.has-icon .h5 {
  color: #2cd5c4 !important;
}
.multiple-callout.cards .callout {
  background: #F2F1F0;
  border-radius: 5px;
}
.multiple-callout.cards .content {
  padding: 1em;
}
.multiple-callout.cards h3,
.multiple-callout.cards h4 {
  color: inherit !important;
  font-size: 1em !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}
.multiple-callout.cards h3 {
  margin-bottom: 0.5em;
}
.multiple-callout.cards h3 a {
  color: #006271;
  font-weight: bold;
  text-decoration: none;
}
.multiple-callout.cards h3 a:hover {
  text-decoration: underline;
}
.multiple-callout.cards h4 {
  color: #686868 !important;
}
.multiple-callout.cards.bg-color-gray-light .callout,
.multiple-callout.cards.bg-color-teal-light .callout,
.multiple-callout.cards.bg-color-blue-dark .callout {
  background: #fff;
  color: #25282A !important;
}
.multiple-callout.cards.bg-color-gray-light h2,
.multiple-callout.cards.bg-color-teal-light h2,
.multiple-callout.cards.bg-color-blue-dark h2,
.multiple-callout.cards.bg-color-gray-light h3,
.multiple-callout.cards.bg-color-teal-light h3,
.multiple-callout.cards.bg-color-blue-dark h3,
.multiple-callout.cards.bg-color-gray-light h4,
.multiple-callout.cards.bg-color-teal-light h4,
.multiple-callout.cards.bg-color-blue-dark h4,
.multiple-callout.cards.bg-color-gray-light h6,
.multiple-callout.cards.bg-color-teal-light h6,
.multiple-callout.cards.bg-color-blue-dark h6,
.multiple-callout.cards.bg-color-gray-light .h2,
.multiple-callout.cards.bg-color-teal-light .h2,
.multiple-callout.cards.bg-color-blue-dark .h2,
.multiple-callout.cards.bg-color-gray-light .h3,
.multiple-callout.cards.bg-color-teal-light .h3,
.multiple-callout.cards.bg-color-blue-dark .h3,
.multiple-callout.cards.bg-color-gray-light .h4,
.multiple-callout.cards.bg-color-teal-light .h4,
.multiple-callout.cards.bg-color-blue-dark .h4,
.multiple-callout.cards.bg-color-gray-light .h6,
.multiple-callout.cards.bg-color-teal-light .h6,
.multiple-callout.cards.bg-color-blue-dark .h6 {
  color: #071D49 !important;
}
.multiple-callout.cards.bg-color-gray-light h5,
.multiple-callout.cards.bg-color-teal-light h5,
.multiple-callout.cards.bg-color-blue-dark h5,
.multiple-callout.cards.bg-color-gray-light .h5,
.multiple-callout.cards.bg-color-teal-light .h5,
.multiple-callout.cards.bg-color-blue-dark .h5 {
  color: #006271 !important;
}
.multiple-callout.tiles {
  background: #F2F1F0;
}
.multiple-callout.tiles .callout {
  padding: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .multiple-callout.tiles .callout {
    padding: 2.5rem;
  }
}
.multiple-callout.tiles .callout.has-img {
  border-radius: 5px;
  padding: 1.5rem 1.5rem 160px 1.5rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .multiple-callout.tiles .callout.has-img {
    padding: 2.5rem 150px 150px 2.5rem;
  }
}
.multiple-callout.tiles .callout.has-img .img-wrap {
  bottom: 0;
  height: 200px;
  overflow: hidden;
  position: absolute;
  right: 0;
  width: 200px;
}
@supports (object-fit: contain) {
  .multiple-callout.tiles .callout.has-img .img-wrap img {
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    width: 100%;
  }
}
.multiple-callout.tiles .default {
  background: #fff;
}
.multiple-callout.tiles .alternate {
  background: #d7efe7;
}
@media only screen and (min-width: 768px) {
  .multiple-callout.col-2 .callout {
    margin: 2% 0;
    width: 48%;
  }
}
@media only screen and (min-width: 768px) {
  .multiple-callout.col-3 {
    /* may need to fill 1 column - see note above */
  }
  .multiple-callout.col-3.col-fill-1 .callout-inner::after {
    content: '';
  }
  .multiple-callout.col-3.col-fill-1 .callout-inner::after,
  .multiple-callout.col-3 .callout {
    margin: 2.5% 0;
    width: 30%;
  }
}
@media only screen and (min-width: 768px) {
  .multiple-callout.col-4 {
    /* may need to fill 1 or 2 columns - see note above */
  }
  .multiple-callout.col-4.col-fill-1 .callout-inner::after,
  .multiple-callout.col-4.col-fill-2 .callout-inner::after {
    content: '';
  }
  .multiple-callout.col-4.col-fill-1 .callout-inner::after,
  .multiple-callout.col-4 .callout {
    margin: 2% 0;
    width: 22%;
  }
  .multiple-callout.col-4.col-fill-2 .callout-inner::after {
    width: 48%;
  }
}
