/*--------------------------------------------------
	Intro
--------------------------------------------------*/
.intro {
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.4; }

/*--------------------------------------------------
	Accordions
--------------------------------------------------*/
.template--accordion {
  margin: 2em 0; }
  .template--accordion + .template--accordion {
    margin: calc(-2em + 10px) 0 2em; }
  .template--accordion h2.template--accordion__title {
    background-color: #010165;
    margin: 0;
    border: none;
    color: #fff;
    line-height: 40px;
    font-size: 1.25em;
    font-weight: 600;
    border-radius: 32px;
    padding: 12px 64px 12px 40px;
    -webkit-box-shadow: 0 8px 32px rgba(1, 1, 101, 0);
    box-shadow: 0 8px 32px rgba(1, 1, 101, 0);
    -webkit-transition: background-color 350ms ease, color 350ms ease, -webkit-box-shadow 350ms ease;
    transition: background-color 350ms ease, color 350ms ease, -webkit-box-shadow 350ms ease;
    -o-transition: background-color 350ms ease, color 350ms ease, box-shadow 350ms ease;
    transition: background-color 350ms ease, color 350ms ease, box-shadow 350ms ease;
    transition: background-color 350ms ease, color 350ms ease, box-shadow 350ms ease, -webkit-box-shadow 350ms ease; }
    .template--accordion h2.template--accordion__title:after {
      content: '\f067';
      font-family: 'FontAwesome';
      font-weight: 300;
      font-size: 1.25em;
      right: 12px;
      top: 50%;
      width: 40px;
      height: 40px;
      display: block;
      line-height: 40px;
      text-align: center;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      background-color: #010165;
      color: #fff;
      border: none;
      border-radius: 50%;
      margin-top: 0;
      -webkit-transition: color 350ms ease, background-color 350ms ease, -webkit-transform 350ms ease;
      transition: color 350ms ease, background-color 350ms ease, -webkit-transform 350ms ease;
      -o-transition: color 350ms ease, background-color 350ms ease, transform 350ms ease;
      transition: color 350ms ease, background-color 350ms ease, transform 350ms ease;
      transition: color 350ms ease, background-color 350ms ease, transform 350ms ease, -webkit-transform 350ms ease; }
  .template--accordion div.template--accordion__container {
    background: none;
    padding: 30px; }
    .template--accordion div.template--accordion__container > :first-child {
      margin-top: 0; }
    .template--accordion div.template--accordion__container > :last-child {
      margin-bottom: 0; }
  .template--accordion.active > h2.template--accordion__title {
    -webkit-box-shadow: 0 8px 32px rgba(1, 1, 101, 0.2);
    box-shadow: 0 8px 32px rgba(1, 1, 101, 0.2); }
    .template--accordion.active > h2.template--accordion__title:after {
      -webkit-transform: translateY(-50%) rotate(45deg);
      -ms-transform: translateY(-50%) rotate(45deg);
      transform: translateY(-50%) rotate(45deg); }
  .template--accordion.active > h2.template--accordion__title, .template--accordion:hover > h2.template--accordion__title {
    background-color: #010165;
    color: #fff; }
    .template--accordion.active > h2.template--accordion__title:after, .template--accordion:hover > h2.template--accordion__title:after {
      background-color: #fff;
      color: #010165; }

/*--------------------------------------------------
	Columns
--------------------------------------------------*/
@media all and (min-width: 600px) {
  .template__columns__span--4, .template__columns__span--3 {
    width: 50%; } }

@media all and (min-width: 1025px) {
  .template__columns__span--4 {
    width: 33.333%; }
  .template__columns__span--3 {
    width: 25%; } }

/*--------------------------------------------------
	Attention
--------------------------------------------------*/
.attention {
  display: block;
  background-color: #010165;
  border-radius: 20px;
  margin: 2em 0;
  padding: 15px; }
  .attention * {
    color: #fff; }
  .attention > :first-child {
    margin-top: 0; }
  .attention > :last-child {
    margin-bottom: 0; }

@media all and (min-width: 1025px) {
  .attention {
    padding: 45px; } }

/*--------------------------------------------------
	Button Link
--------------------------------------------------*/
.button__link {
  display: inline-block; }
  .button__link a {
    display: block;
    padding: 20px 30px;
    background-color: #010165;
    color: #FFF;
    line-height: 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.875em;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    text-decoration: none !important;
    -webkit-transition: background-color 350ms ease, color 350ms ease;
    -o-transition: background-color 350ms ease, color 350ms ease;
    transition: background-color 350ms ease, color 350ms ease; }
    .button__link a:hover {
      background-color: #010165;
      color: #F20000; }

/*--------------------------------------------------
	Table
--------------------------------------------------*/
.table__container {
  display: block;
  max-width: 100%;
  overflow: auto;
  margin: 20px 0; }
  .table__container table {
    border: 1px solid #010165; }
    .table__container table th {
      border: 1px solid #010165;
      background-color: #010165;
      color: #fff; }
    .table__container table td {
      border: 1px solid #010165; }

/*--------------------------------------------------
	Block Quote
--------------------------------------------------*/
blockquote {
  margin: 1em 0;
  font-style: italic;
  padding: 10px 20px;
  border-left: 5px solid #010165;
  background: #f2f2f7; }

/*--------------------------------------------------
	Link Boxes
--------------------------------------------------*/
.content__region .template--linkbox {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 280px;
  margin: 1em 0; }
  .content__region .template--linkbox a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 0px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 5; }
  .content__region .template--linkbox .link__box__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    background: #010165;
    -webkit-transition: background .4s ease;
    -o-transition: background .4s ease;
    transition: background .4s ease; }
    .content__region .template--linkbox .link__box__bg img {
      max-width: none;
      -o-object-fit: cover;
      object-fit: cover;
      width: 100%;
      height: 100%;
      -webkit-transition: -webkit-transform .4s ease;
      transition: -webkit-transform .4s ease;
      -o-transition: transform .4s ease;
      transition: transform .4s ease;
      transition: transform .4s ease, -webkit-transform .4s ease; }
  .content__region .template--linkbox .link__box__container {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    color: #FFF;
    text-align: center;
    z-index: 3; }
    .content__region .template--linkbox .link__box__container:before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 200%;
      opacity: .85;
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
      background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
      background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, black 100%);
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 100%);
      z-index: 2;
      -webkit-transition: opacity .3s ease, height .3s ease;
      -o-transition: opacity .3s ease, height .3s ease;
      transition: opacity .3s ease, height .3s ease; }
    .content__region .template--linkbox .link__box__container .link__box__container__header {
      position: relative;
      padding: 1em;
      z-index: 2; }
    .content__region .template--linkbox .link__box__container h3 {
      position: relative;
      font-size: 18px;
      margin: 0;
      color: #FFF;
      font-weight: 700;
      padding: 0 1em; }
    .content__region .template--linkbox .link__box__container p {
      padding: 0 5%; }
    .mason--admin .content__region .template--linkbox .link__box__container {
      position: static; }
  .content__region .template--linkbox:hover .link__box__bg img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  .content__region .template--linkbox:hover .link__box__container:before {
    opacity: 1;
    height: 140%; }

@media all and (min-width: 769px) {
  .content__region .template--linkbox {
    height: 320px; } }

@media all and (min-width: 1301px) {
  .content__region .template--linkbox {
    height: 380px; } }

.template--twoboxes, .template--threeboxes, .template--fourboxes, .template--fiveboxes {
  margin: 1em -10px; }
  .template--twoboxes .template--linkbox, .template--threeboxes .template--linkbox, .template--fourboxes .template--linkbox, .template--fiveboxes .template--linkbox {
    margin: 0;
    border: 10px solid #FFF; }

.mason--admin .content__region .template--linkbox {
  height: auto !important;
  background: rgba(1, 1, 101, 0.5); }
  .mason--admin .content__region .template--linkbox a {
    position: relative;
    opacity: 1;
    background: #EF5B25;
    color: #FFF !important;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 20px;
    height: 40px;
    cursor: pointer; }
  .mason--admin .content__region .template--linkbox .link__box__container {
    position: static;
    -webkit-transform: translate(0) scale(1);
    -ms-transform: translate(0) scale(1);
    transform: translate(0) scale(1);
    padding: 30px; }
    .mason--admin .content__region .template--linkbox .link__box__container:before {
      display: none; }
    .mason--admin .content__region .template--linkbox .link__box__container .link__box__container__header {
      position: static;
      -webkit-transform: translate(0) scale(1);
      -ms-transform: translate(0) scale(1);
      transform: translate(0) scale(1);
      padding: 0; }
  .mason--admin .content__region .template--linkbox .link__box__bg {
    width: 100%;
    position: relative;
    height: auto;
    display: block;
    border: 1px solid #EF5B25;
    background: transparent; }
    .mason--admin .content__region .template--linkbox .link__box__bg > * {
      width: 100%; }
    .mason--admin .content__region .template--linkbox .link__box__bg img {
      display: block;
      -webkit-transform: scale(1) !important;
      -ms-transform: scale(1) !important;
      transform: scale(1) !important;
      opacity: 1 !important;
      max-width: none;
      -o-object-fit: cover;
      object-fit: cover;
      width: 100%;
      height: 100%; }
    .mason--admin .content__region .template--linkbox .link__box__bg:after {
      display: none; }

@media all and (min-width: 415px) {
  .template--twoboxes .template--linkbox {
    width: 50%;
    float: left; }
  .template--threeboxes .template {
    margin: 0; }
  .template--threeboxes .template--linkbox {
    width: 50%;
    float: left; }
  .template--threeboxes .template--linkbox:first-child {
    width: 100%;
    height: 200px; }
  .template--fourboxes .template--linkbox {
    width: 50%;
    float: left; }
  .template--fiveboxes .template--linkbox {
    width: 50%;
    float: left; }
  .template--fiveboxes .template--linkbox:first-child {
    width: 100%;
    height: 200px; } }

@media all and (min-width: 1025px) {
  .template--threeboxes .template {
    margin: 0; }
  .template--threeboxes .template--linkbox {
    width: 50%;
    float: left; }
  .template--threeboxes .template--linkbox:first-child {
    width: 100%;
    height: 380px; }
  .template--fourboxes .template--linkbox {
    height: 300px; }
  .template--fiveboxes .template--linkbox {
    width: 33.333%;
    height: 380px; }
  .template--fiveboxes .template--linkbox:first-child {
    width: 50%;
    height: 300px; }
    .template--fiveboxes .template--linkbox:first-child + div {
      width: 50%;
      height: 300px; } }
