.col-justify {
  text-align: justify;
  -ms-text-justify: distribute-all-lines;
  text-justify: distribute-all-lines;
  line-height: 0;
}
.col-justify:after {
  content: "";
  display: inline-block;
  width: 100%;
  border: none;
  line-height: 0 !important;
}
.col-justify .col {
  display: inline-block;
  margin-bottom: -6px;
  text-align: left;
  vertical-align: top;
  line-height: 145%;
}
.col-2 .col {
  width: 48%;
}
.col-3 .col {
  width: 32%;
}
.col-4 .col {
  width: 24%;
}
.col-5 .col {
  width: 18%;
}
.col-6 .col {
  width: 15%;
}
.col-justify .col.text-center,
.col-justify .col.text-align-center {
  text-align: center;
}

/* modern/flex implementation of col justify */

.flex {
  display: flex;
}
.flex-inline {
  display: inline-flex;
}

.flex.align-items-start { /* top */
  align-items: flex-start;
}
.flex.align-items-center {
  align-items: center;
}
.flex.align-items-baseline {
  align-items: baseline;
}
.flex.align-items-stretch {
  align-items: stretch;
}
.flex.align-items-end { /* bottom */
  align-items: flex-end;
}

.flex.justify-evenly {
  justify-content: space-evenly;
}
.flex.justify-between {
  justify-content: space-between;
}

.flex.direction-column {
  flex-direction: column;
}

.flex.wrap {
  flex-wrap: wrap;
}
.flex.wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex > *,
.flex.flex-grow-1 > * {
  flex-grow: 1;
}
.flex .flex-grow-2 {
  flex-grow: 2;
}
.flex .flex-grow-3 {
  flex-grow: 3;
}
.flex .flex-grow-4 {
  flex-grow: 4;
}
.flex .flex-grow-5 {
  flex-grow: 5;
}
.flex .flex-grow-6 {
  flex-grow: 6;
}

.flex.flex-gap-6 > * + * {
    margin-left: 6px;
}


.btn-util {
    display: inline-table;
    position: relative;
    padding: 22px 30px;
    background-color: #00558c;
    font-size: 22px;
    line-height: 120%;
    cursor: pointer;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500 !important;
    font-style: normal;
    color: #ffffff !important;
    text-align: center;
    border: 1px solid transparent !important;
    border-radius: 2px;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}
.btn-util:focus {
  outline: none;
}
.btn-util:hover{
  background-color: #ffffff;
  color: #00558c !important;
  border: 1px solid #00558c !important;
  text-decoration: none !important;
}
.btn-util.no-hover:hover {
    background-color: #00558c;
    color: #ffffff !important;
    border: 1px solid transparent !important;
    text-decoration: none !important;
}
.btn-util.border-1-solid-fff {
  border: 1px solid #ffffff;
}
.btn-util.invert {
  background-color: #ffffff;
  color: #00558c;
  border: 1px solid #00558c;
}
.btn-util.invert:hover {
  background-color: #00558c;
  color: #ffffff;
  border: 1px solid transparent;
}
.btn-util.sky{
  background-color: #69c5f4;
  color: #ffffff;
}
.btn-util.sky:hover {
  background-color: #ffffff;
  color: #69c5f4;
  border: 1px solid #69c5f4;
}

.hide {
  display: none !important;
}
.show {
  display: block !important;
}

.color-steel-blue,
.steel-blue {
  color: #425563;
}
.color-blue,
.blue {
  color: #00558c;
}
.bg-fafafa {
  background-color: #fafafa;
}
.bg-before-fafafa:before {
  background-color: #fafafa;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  right: -100%;
}
.bg-f4f4f4 {
  background-color: #f4f4f4;
}
.bg-before-f4f4f4:before {
  background-color: #f4f4f4;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  right: -100%;
}
.bg-blue {
  background-color: #00558c;
}
.bg-blue-important {
  background-color: #00558c !important;
}
.bg-white {
  background-color: #ffffff;
}
.bg-light-gray {
  background-color: #eeeeee;
}
.bg-lightest-gray {
  background-color: #fafafa;
}
.color-sky,
.sky {
  color: #69c5f4;
}
.bg-sky {
  background-color: #69c5f4;
}
.bg-sky-important {
  background-color: #69c5f4 !important;
}
.color-grey-light {
  color: #c1c6c8;
}
.white,
.color-white {
  color: #ffffff;
}
.white-important,
.color-white-important {
  color: #ffffff !important;
}
.mustard,
.color-mustard {
  color: #f1be48;
}
.mustard-important {
  color: #f1be48 !important;
}
.bg-mustard {
  background-color: #f1be48;
}
.bg-gray-lightest {
  background-color: #f4f4f4;
}
.black,
.color-black {
  color: #000000;
}
.ibm,
.font-ibm,
.ff-ibm {
  font-family: 'IBM Plex Sans', sans-serif;
}
.lato,
.font-lato,
.ff-lato {
  font-family: 'Lato', sans-serif;
}
.overflow-hidden {
  overflow: hidden;
}
.absolute,
.position-absolute {
  position: absolute;
}
.relative,
.position-relative {
  position: relative;
}
.bottom-0 {
  bottom: 0;
}
.bottom-30 {
  bottom: 30px;
}
.block {
  display: block;
}
.block-important {
  display: block !important;
}
.inline {
  display: inline;
}
.inline-block {
  display: inline-block;
}
.table {
  display: table;
}
.table-cell {
  display: table-cell;
}
.table-row {
  display: table-row;
}
.none {
  display: none;
}
.visibility-hidden,
.hidden {
  visibility: hidden;
}
.text-center,
.align-center,
.text-align-center {
  text-align: center;
}
.text-left,
.align-left {
  text-align: left;
}
.text-right,
.align-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-middle-transform {
  position: relative;
  top: 50%;
  transform: translateY(-50%); 
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.center-important {
  display: block !important;
  margin: 0 auto !important;
}
.center-table {
  display: table;
  margin: 0 auto;
}
.text-height-40 {
  line-height: 40px;
}
.text-top,
.vertical-align-top {
  vertical-align: top;
}
.text-mid,
.vertical-align-mid {
  vertical-align: middle;
}
.text-hover-underline:hover {
  text-decoration: underline;
}
.font-weight-500,
.weight-500 {
  font-weight: 500;
}
.font-weight-900,
.weight-900 {
  font-weight: 900;
}
.height-auto {
  height: auto;
}
.max-none {
  max-width: none;
}
.max-100 {
  max-width: 100%;
}
.max-100-important {
  max-width: 100% !important;
}
.max-50 {
  max-width: 50%;
}
.max-50-important {
  max-width: 50% !important;
}
.min-width-75-important {
  min-width: 75px !important;
}
.width-75-perc {
  width: 75%;
}
.width-100 {
  width: 100%;
}
.width-auto {
  width: auto;
}
.bold {
  font-weight: bold;
}
.normal {
  font-weight: normal;
}
.italic {
  font-style: italic;
}
.cursor-pointer {
  cursor: pointer;
}
.fs-10 {
  font-size: 10px;
}
.fs-11 {
  font-size: 11px;
}
.fs-12 {
  font-size: 12px;
}
.fs-13 {
  font-size: 13px;
}
.fs-14 {
  font-size: 14px;
}
.fs-15 {
  font-size: 15px;
}
.fs-15-important {
  font-size: 15px !important;
}
.fs-16 {
  font-size: 16px;
}
.fs-17 {
  font-size: 17px;
}
.fs-18 {
  font-size: 18px;
}
.fs-18-important {
  font-size: 18px !important;
}
.fs-19 {
  font-size: 19px;
}
.fs-20 {
  font-size: 20px;
}
.fs-20-important {
  font-size: 20px !important;
}
.fs-22 {
  font-size: 22px;
}
.fs-24 {
  font-size: 24px;
}
.fs-26 {
  font-size: 26px;
}
.fs-27 {
  font-size: 27px;
}
.fs-28 {
  font-size: 28px;
}
.fs-30 {
  font-size: 30px;
}
.fs-32 {
  font-size: 32px;
}
.fs-36 {
  font-size: 36px;
}
.fs-40 {
  font-size: 40px;
}
.line-height-0 {
  line-height: 0;
}
.line-height-0-important {
  line-height: 0 !important;
}
.line-height-12 {
  line-height: 12px;
}
.line-height-20 {
  line-height: 20px;
}
.line-height-36 {
  line-height: 36px;
}
.line-height-95-important {
  line-height: 95% !important;
}
.line-height-100 {
  line-height: 100%;
}
.line-height-130 {
  line-height: 130%;
}
.line-height-145 {
  line-height: 145%;
}
.letter-spacing-1 {
  letter-spacing: 1px;
}
.margin-0 {
  margin: 0;
}
.margin-top-5 {
  margin-top: 5px;
}
.margin-top-5-important {
  margin-top: 5px !important;
}
.margin-top-10 {
  margin-top: 10px;
}
.margin-top-10-important {
  margin-top: 10px !important;
}
.margin-top-15 {
  margin-top: 15px;
}
.margin-top-30 {
  margin-top: 30px;
}
.margin-top-30-important {
  margin-top: 30px !important;
}
.margin-top-60 {
  margin-top: 60px;
}
.margin-top-90 {
  margin-top: 90px;
}
.margin-right-5 {
  margin-right: 5px;
}
.margin-right-10 {
  margin-right: 10px;
}
.margin-right-15 {
  margin-right: 15px;
}
.margin-right-30 {
  margin-right: 30px;
}
.margin-right-30-important {
  margin-right: 30px !important;
}
.margin-right-60 {
  margin-right: 60px;
}
.margin-bottom-neg6 {
  margin-bottom: -6px;
}
.margin-bottom-0 {
  margin-bottom: 0;
}
.margin-bottom-0-important {
  margin-bottom: 0 !important;
}
.margin-bottom-5 {
  margin-bottom: 5px;
}
.margin-bottom-6 {
  margin-bottom: 6px;
}
.margin-bottom-10 {
  margin-bottom: 10px;
}
.margin-bottom-15 {
  margin-bottom: 15px;
}
.margin-bottom-15-important {
  margin-bottom: 15px !important;
}
.margin-bottom-20 {
  margin-bottom: 20px;
}
.margin-bottom-30 {
  margin-bottom: 30px;
}
.margin-bottom-30-important {
  margin-bottom: 30px !important;
}
.margin-bottom-40 {
  margin-bottom: 40px;
}
.margin-bottom-45 {
  margin-bottom: 45px;
}
.margin-bottom-60 {
  margin-bottom: 60px;
}
.margin-bottom-75 {
  margin-bottom: 75px;
}
.margin-bottom-90 {
  margin-bottom: 90px;
}
.margin-bottom-120 {
  margin-bottom: 120px;
}
.margin-left-5 {
  margin-left: 5px;
}
.margin-left-15 {
  margin-left: 15px;
}
.margin-left-25 {
  margin-left: 25px;
}
.margin-left-30 {
  margin-left: 30px;
}
.margin-left-45 {
  margin-left: 45px;
}
.margin-left-60 {
  margin-left: 60px;
}
.margin-top-neg-15 {
  margin-top: -15px;
}
.margin-top-neg-10 {
  margin-top: -10px;
}
.margin-top-neg-24 {
  margin-top: -24px;
}
.margin-top-neg-30 {
  margin-top: -30px;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.float-none {
  float: none;
}
.float-none-important {
  float: none !important;
}
.padding-0 {
  padding: 0;
}
.padding-10 {
  padding: 10px;
}
.padding-15 {
  padding: 15px;
}
.padding-20 {
  padding: 20px;
}
.padding-30 {
  padding: 30px;
}
.padding-left-15 {
  padding-left: 15px;
}
.padding-left-30 {
  padding-left: 30px;
}
.padding-right-10 {
  padding-right: 10px;
}
.padding-right-15 {
  padding-right: 15px;
}
.padding-right-30 {
  padding-right: 30px;
}
.padding-bottom-15 {
  padding-bottom: 15px;
}
.padding-bottom-25 {
  padding-bottom: 25px;
}
.padding-bottom-30 {
  padding-bottom: 30px;
}
.padding-bottom-45 {
  padding-bottom: 45px;
}
.padding-top-0 {
  padding-top: 0;
}
.padding-top-15 {
  padding-top: 15px;
}
.padding-top-30 {
  padding-top: 30px;
}
.padding-top-60 {
  padding-top: 60px;
}
.color-dark-gray,
.color-333 {
  color: #333333;
}
.color-666 {
  color: #666666;
}
.color-808080 {
  color: #808080;
}
.capitalize {
  text-transform: capitalize;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.no-transform {
  text-transform: none !important;
}
.underline,
.hover-underline:hover,
.hover-underline-a a:hover {
  text-decoration: underline;
}
.no-decoration,
.no-hover-decoration:hover {
  text-decoration: none !important;
}
.hover-no-underline:hover {
  text-decoration: none;
}
.transition-all {
  transition: all 0.25s;
}
.border-1-solid-999 {
  border: 1px solid #999;
}
.border-1-solid-gray-light {
  border: solid 1px #e0e0e0;
}
.border-none {
  border: none !important;
}
.list-style-disc {
  list-style-type: disc;
}
.column-count-2 {
  column-count: 2;
}
.column-count-3 {
  column-count: 3;
}
.column-gap-60 {
  column-gap: 60px;
}
.rotate-180 {
  -webkit-transform: rotate(180deg);
  /* Chrome and other webkit browsers */
  -moz-transform: rotate(180deg);
  /* FF */
  -o-transform: rotate(180deg);
  /* Opera */
  -ms-transform: rotate(180deg);
  /* IE9 */
  transform: rotate(180deg);
}
.transition-none {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
.transition-none-important {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
.opacity-0 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
.opacity-1 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.mobile-hide {
  display: block;
}
.mobile-show {
  display: none;
}

@media (max-width: 768px) {
    
  .mobile-hide {
    display: none !important;
  }
  .mobile-show {
    display: block !important;
  }
  
  .col-justify .col {
    display: block;
    width: 100%;
    max-width: none;
    /*margin-bottom: X;*/
    min-height: auto;
  }

    .flex {
        flex-direction: column;
    }
    .flex-mobile {
        display: flex;
    }
    .flex .flex-item,
    .flex > * {
        margin-bottom: 20px;
    }
    .flex.flex-gap-6 > * + * {
        margin-left: 0;
    }
}

@media (max-width: 568px) {
    
    .text-middle-transform {
        transform: translateY(0);
    }
}