/**
 * Returns value from colors map
 */
/**
 * Turns pixels to rems
 * We typically set out HTML font size to 62.5% which helps us have a base-10 value to work with.
 * So the following mixin accepts a pixel value that is then turned into a corresponding rem value.
 */
/**
 * Function for converting a px based font-size to rem.
 *
 * @param $size - the value in pixel you want to convert
 *
 * e.g. p {to-rem(12);}
 *
 */
/**
 * Returns value from colors map
 */
/**
 * Turns pixels to rems
 * We typically set out HTML font size to 62.5% which helps us have a base-10 value to work with.
 * So the following mixin accepts a pixel value that is then turned into a corresponding rem value.
 */
/**
 * Function for converting a px based font-size to rem.
 *
 * @param $size - the value in pixel you want to convert
 *
 * e.g. p {to-rem(12);}
 *
 */
.rich-text-two-columns-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.rich-text-two-columns-container .layout-inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 0 4rem;
  gap: 2rem;
}
@media only screen and (max-width: 959px) {
  .rich-text-two-columns-container .layout-inner-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.rich-text-two-columns-container .layout-inner-container .container-left,
.rich-text-two-columns-container .layout-inner-container .container-right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 959px) {
  .rich-text-two-columns-container .layout-inner-container .container-left,
.rich-text-two-columns-container .layout-inner-container .container-right {
    margin-top: 4rem;
  }
}
.rich-text-two-columns-container .layout-inner-container .title-left,
.rich-text-two-columns-container .layout-inner-container .title-right {
  font-family: "tpgalphabet-Bold", sans-serif !important;
  font-weight: bold !important;
}
.rich-text-two-columns-container .layout-inner-container .body-left, .rich-text-two-columns-container .layout-inner-container .body-right {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
}
.rich-text-two-columns-container .layout-inner-container .link {
  margin-top: 2rem;
  display: inline-block;
}
.rich-text-two-columns-container .layout-inner-container .link a {
  text-align: center;
  border-radius: 2.5rem;
  padding: 1.2rem 2.4rem;
  background-color: #fd7512;
  background: -webkit-gradient(linear, left top, right top, from(#fd7512), to(#e04a11));
  background: -o-linear-gradient(left, #fd7512 0%, #e04a11);
  background: linear-gradient(90deg, #fd7512 0%, #e04a11);
  color: white;
}
.rich-text-two-columns-container .layout-inner-container .link a:hover {
  text-decoration: none;
  background: -o-linear-gradient(229deg, #c63e01 0%, #8b1b06);
  background: linear-gradient(221deg, #c63e01 0%, #8b1b06);
}
@media only screen and (max-width: 959px) {
  .rich-text-two-columns-container .layout-inner-container .link a {
    display: block;
  }
}