@charset "UTF-8";
/*!
Theme Name:     MyCygnet Theme
Theme URI:      http://mixd.co.uk
Description:    A responsive wordpress theme
Author:         Rory Ashford-Bentley
Author URI:     http://mixd.co.uk
Version:        0.0.1
*/
body:after {
  box-sizing: border-box;
  position: fixed;
  display: block;
  bottom: 10px;
  right: 10px;
  padding: 5px 28px 5px 20px;
  font-size: 12px;
  color: #777;
  border-radius: 3px;
  background-color: #f7f7f7;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  z-index: 100000;
}

.grid {
  box-sizing: border-box;
  display: flex;
  margin-left: -24px;
  flex-direction: row;
  flex: 0 1 auto;
  flex-wrap: wrap;
}

.grid > * {
  box-sizing: border-box;
  padding-left: 24px;
  position: relative;
}

.grid--no-gutter {
  margin-left: 0;
}

.grid--no-gutter > * {
  padding-left: 0;
}

.grid--v-top {
  align-items: flex-start;
}

.grid--v-center {
  align-items: center;
}

.grid--v-bottom {
  align-items: flex-end;
}

.grid--v-stretch {
  align-items: stretch;
}

.grid--v-baseline {
  align-items: stretch;
}

.grid--align-start {
  justify-content: flex-start;
}

.grid--align-end {
  justify-content: flex-end;
}

.grid--align-center {
  justify-content: center;
}

.grid--align-space-between {
  justify-content: space-between;
}

.grid--align-space-around {
  justify-content: space-around;
}

.grid__item--fit {
  flex: 1 0;
}

.grid__item--flex {
  display: flex;
}

.grid__item--1-12 {
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}

.grid__item--1-6, .grid__item--2-12 {
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

.grid__item--1-4, .grid__item--3-12 {
  flex-basis: 25%;
  max-width: 25%;
}

.grid__item--1-3, .grid__item--2-6, .grid__item--4-12 {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}

.grid__item--5-12 {
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}

.grid__item--1-2, .grid__item--2-4, .grid__item--3-6, .grid__item--6-12 {
  flex-basis: 50%;
  max-width: 50%;
}

.grid__item--7-12 {
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}

.grid__item--2-3, .grid__item--4-6, .grid__item--8-12 {
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}

.grid__item--3-4, .grid__item--9-12 {
  flex-basis: 75%;
  max-width: 75%;
}

.grid__item--5-6, .grid__item--10-12 {
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

.grid__item--11-12 {
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}

.grid__item--1-1, .grid__item--2-2, .grid__item--3-3, .grid__item--4-4, .grid__item--6-6, .grid__item--12-12 {
  flex-basis: 100%;
  max-width: 100%;
}

.grid__item--push--1-12 {
  margin-left: 8.3333333333%;
}

.grid__item--push--1-6, .grid__item--push--2-12 {
  margin-left: 16.6666666667%;
}

.grid__item--push--1-4, .grid__item--push--3-12 {
  margin-left: 25%;
}

.grid__item--push--1-3, .grid__item--push--2-6, .grid__item--push--4-12 {
  margin-left: 33.3333333333%;
}

.grid__item--push--5-12 {
  margin-left: 41.6666666667%;
}

.grid__item--push--1-2, .grid__item--push--2-4, .grid__item--push--3-6, .grid__item--push--6-12 {
  margin-left: 50%;
}

.grid__item--push--7-12 {
  margin-left: 58.3333333333%;
}

.grid__item--push--2-3, .grid__item--push--4-6, .grid__item--push--8-12 {
  margin-left: 66.6666666667%;
}

.grid__item--push--3-4, .grid__item--push--9-12 {
  margin-left: 75%;
}

.grid__item--push--5-6, .grid__item--push--10-12 {
  margin-left: 83.3333333333%;
}

.grid__item--push--11-12 {
  margin-left: 91.6666666667%;
}

/*@if($omega){
    @include grid-omega($item_prefix, $suffix);
}*/
@media (min-width: 500px) {
  .grid {
    box-sizing: border-box;
    display: flex;
    margin-left: -36px;
    flex-direction: row;
    flex: 0 1 auto;
    flex-wrap: wrap;
  }
  .grid > * {
    box-sizing: border-box;
    padding-left: 36px;
    position: relative;
  }
  .grid--no-gutter--s {
    margin-left: 0;
  }
  .grid--no-gutter--s > * {
    padding-left: 0;
  }
  .grid--v-top--s {
    align-items: flex-start;
  }
  .grid--v-center--s {
    align-items: center;
  }
  .grid--v-bottom--s {
    align-items: flex-end;
  }
  .grid--v-stretch--s {
    align-items: stretch;
  }
  .grid--v-baseline--s {
    align-items: stretch;
  }
  .grid--align-start--s {
    justify-content: flex-start;
  }
  .grid--align-end--s {
    justify-content: flex-end;
  }
  .grid--align-center--s {
    justify-content: center;
  }
  .grid--align-space-between--s {
    justify-content: space-between;
  }
  .grid--align-space-around--s {
    justify-content: space-around;
  }
  .grid__item--fit--s {
    flex: 1 0;
  }
  .grid__item--flex--s {
    display: flex;
  }
  .grid__item--1-12--s {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .grid__item--1-6--s, .grid__item--2-12--s {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .grid__item--1-4--s, .grid__item--3-12--s {
    flex-basis: 25%;
    max-width: 25%;
  }
  .grid__item--1-3--s, .grid__item--2-6--s, .grid__item--4-12--s {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .grid__item--5-12--s {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .grid__item--1-2--s, .grid__item--2-4--s, .grid__item--3-6--s, .grid__item--6-12--s {
    flex-basis: 50%;
    max-width: 50%;
  }
  .grid__item--7-12--s {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .grid__item--2-3--s, .grid__item--4-6--s, .grid__item--8-12--s {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .grid__item--3-4--s, .grid__item--9-12--s {
    flex-basis: 75%;
    max-width: 75%;
  }
  .grid__item--5-6--s, .grid__item--10-12--s {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .grid__item--11-12--s {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .grid__item--1-1--s, .grid__item--2-2--s, .grid__item--3-3--s, .grid__item--4-4--s, .grid__item--6-6--s, .grid__item--12-12--s {
    flex-basis: 100%;
    max-width: 100%;
  }
  .grid__item--push--1-12--s {
    margin-left: 8.3333333333%;
  }
  .grid__item--push--1-6--s, .grid__item--push--2-12--s {
    margin-left: 16.6666666667%;
  }
  .grid__item--push--1-4--s, .grid__item--push--3-12--s {
    margin-left: 25%;
  }
  .grid__item--push--1-3--s, .grid__item--push--2-6--s, .grid__item--push--4-12--s {
    margin-left: 33.3333333333%;
  }
  .grid__item--push--5-12--s {
    margin-left: 41.6666666667%;
  }
  .grid__item--push--1-2--s, .grid__item--push--2-4--s, .grid__item--push--3-6--s, .grid__item--push--6-12--s {
    margin-left: 50%;
  }
  .grid__item--push--7-12--s {
    margin-left: 58.3333333333%;
  }
  .grid__item--push--2-3--s, .grid__item--push--4-6--s, .grid__item--push--8-12--s {
    margin-left: 66.6666666667%;
  }
  .grid__item--push--3-4--s, .grid__item--push--9-12--s {
    margin-left: 75%;
  }
  .grid__item--push--5-6--s, .grid__item--push--10-12--s {
    margin-left: 83.3333333333%;
  }
  .grid__item--push--11-12--s {
    margin-left: 91.6666666667%;
  }
  /*@if($omega){
      @include grid-omega($item_prefix, $suffix);
  }*/
}
@media (min-width: 800px) {
  .grid {
    box-sizing: border-box;
    display: flex;
    margin-left: -36px;
    flex-direction: row;
    flex: 0 1 auto;
    flex-wrap: wrap;
  }
  .grid > * {
    box-sizing: border-box;
    padding-left: 36px;
    position: relative;
  }
  .grid--no-gutter--m {
    margin-left: 0;
  }
  .grid--no-gutter--m > * {
    padding-left: 0;
  }
  .grid--v-top--m {
    align-items: flex-start;
  }
  .grid--v-center--m {
    align-items: center;
  }
  .grid--v-bottom--m {
    align-items: flex-end;
  }
  .grid--v-stretch--m {
    align-items: stretch;
  }
  .grid--v-baseline--m {
    align-items: stretch;
  }
  .grid--align-start--m {
    justify-content: flex-start;
  }
  .grid--align-end--m {
    justify-content: flex-end;
  }
  .grid--align-center--m {
    justify-content: center;
  }
  .grid--align-space-between--m {
    justify-content: space-between;
  }
  .grid--align-space-around--m {
    justify-content: space-around;
  }
  .grid__item--fit--m {
    flex: 1 0;
  }
  .grid__item--flex--m {
    display: flex;
  }
  .grid__item--1-12--m {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .grid__item--1-6--m, .grid__item--2-12--m {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .grid__item--1-4--m, .grid__item--3-12--m {
    flex-basis: 25%;
    max-width: 25%;
  }
  .grid__item--1-3--m, .grid__item--2-6--m, .grid__item--4-12--m {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .grid__item--5-12--m {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .grid__item--1-2--m, .grid__item--2-4--m, .grid__item--3-6--m, .grid__item--6-12--m {
    flex-basis: 50%;
    max-width: 50%;
  }
  .grid__item--7-12--m {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .grid__item--2-3--m, .grid__item--4-6--m, .grid__item--8-12--m {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .grid__item--3-4--m, .grid__item--9-12--m {
    flex-basis: 75%;
    max-width: 75%;
  }
  .grid__item--5-6--m, .grid__item--10-12--m {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .grid__item--11-12--m {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .grid__item--1-1--m, .grid__item--2-2--m, .grid__item--3-3--m, .grid__item--4-4--m, .grid__item--6-6--m, .grid__item--12-12--m {
    flex-basis: 100%;
    max-width: 100%;
  }
  .grid__item--push--1-12--m {
    margin-left: 8.3333333333%;
  }
  .grid__item--push--1-6--m, .grid__item--push--2-12--m {
    margin-left: 16.6666666667%;
  }
  .grid__item--push--1-4--m, .grid__item--push--3-12--m {
    margin-left: 25%;
  }
  .grid__item--push--1-3--m, .grid__item--push--2-6--m, .grid__item--push--4-12--m {
    margin-left: 33.3333333333%;
  }
  .grid__item--push--5-12--m {
    margin-left: 41.6666666667%;
  }
  .grid__item--push--1-2--m, .grid__item--push--2-4--m, .grid__item--push--3-6--m, .grid__item--push--6-12--m {
    margin-left: 50%;
  }
  .grid__item--push--7-12--m {
    margin-left: 58.3333333333%;
  }
  .grid__item--push--2-3--m, .grid__item--push--4-6--m, .grid__item--push--8-12--m {
    margin-left: 66.6666666667%;
  }
  .grid__item--push--3-4--m, .grid__item--push--9-12--m {
    margin-left: 75%;
  }
  .grid__item--push--5-6--m, .grid__item--push--10-12--m {
    margin-left: 83.3333333333%;
  }
  .grid__item--push--11-12--m {
    margin-left: 91.6666666667%;
  }
  /*@if($omega){
      @include grid-omega($item_prefix, $suffix);
  }*/
}
@media (min-width: 1000px) {
  .grid {
    box-sizing: border-box;
    display: flex;
    margin-left: -36px;
    flex-direction: row;
    flex: 0 1 auto;
    flex-wrap: wrap;
  }
  .grid > * {
    box-sizing: border-box;
    padding-left: 36px;
    position: relative;
  }
  .grid--no-gutter--l {
    margin-left: 0;
  }
  .grid--no-gutter--l > * {
    padding-left: 0;
  }
  .grid--v-top--l {
    align-items: flex-start;
  }
  .grid--v-center--l {
    align-items: center;
  }
  .grid--v-bottom--l {
    align-items: flex-end;
  }
  .grid--v-stretch--l {
    align-items: stretch;
  }
  .grid--v-baseline--l {
    align-items: stretch;
  }
  .grid--align-start--l {
    justify-content: flex-start;
  }
  .grid--align-end--l {
    justify-content: flex-end;
  }
  .grid--align-center--l {
    justify-content: center;
  }
  .grid--align-space-between--l {
    justify-content: space-between;
  }
  .grid--align-space-around--l {
    justify-content: space-around;
  }
  .grid__item--fit--l {
    flex: 1 0;
  }
  .grid__item--flex--l {
    display: flex;
  }
  .grid__item--1-12--l {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .grid__item--1-6--l, .grid__item--2-12--l {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .grid__item--1-4--l, .grid__item--3-12--l {
    flex-basis: 25%;
    max-width: 25%;
  }
  .grid__item--1-3--l, .grid__item--2-6--l, .grid__item--4-12--l {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .grid__item--5-12--l {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .grid__item--1-2--l, .grid__item--2-4--l, .grid__item--3-6--l, .grid__item--6-12--l {
    flex-basis: 50%;
    max-width: 50%;
  }
  .grid__item--7-12--l {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .grid__item--2-3--l, .grid__item--4-6--l, .grid__item--8-12--l {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .grid__item--3-4--l, .grid__item--9-12--l {
    flex-basis: 75%;
    max-width: 75%;
  }
  .grid__item--5-6--l, .grid__item--10-12--l {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .grid__item--11-12--l {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .grid__item--1-1--l, .grid__item--2-2--l, .grid__item--3-3--l, .grid__item--4-4--l, .grid__item--6-6--l, .grid__item--12-12--l {
    flex-basis: 100%;
    max-width: 100%;
  }
  .grid__item--push--1-12--l {
    margin-left: 8.3333333333%;
  }
  .grid__item--push--1-6--l, .grid__item--push--2-12--l {
    margin-left: 16.6666666667%;
  }
  .grid__item--push--1-4--l, .grid__item--push--3-12--l {
    margin-left: 25%;
  }
  .grid__item--push--1-3--l, .grid__item--push--2-6--l, .grid__item--push--4-12--l {
    margin-left: 33.3333333333%;
  }
  .grid__item--push--5-12--l {
    margin-left: 41.6666666667%;
  }
  .grid__item--push--1-2--l, .grid__item--push--2-4--l, .grid__item--push--3-6--l, .grid__item--push--6-12--l {
    margin-left: 50%;
  }
  .grid__item--push--7-12--l {
    margin-left: 58.3333333333%;
  }
  .grid__item--push--2-3--l, .grid__item--push--4-6--l, .grid__item--push--8-12--l {
    margin-left: 66.6666666667%;
  }
  .grid__item--push--3-4--l, .grid__item--push--9-12--l {
    margin-left: 75%;
  }
  .grid__item--push--5-6--l, .grid__item--push--10-12--l {
    margin-left: 83.3333333333%;
  }
  .grid__item--push--11-12--l {
    margin-left: 91.6666666667%;
  }
  /*@if($omega){
      @include grid-omega($item_prefix, $suffix);
  }*/
}
@media (min-width: 1200px) {
  .grid {
    box-sizing: border-box;
    display: flex;
    margin-left: -36px;
    flex-direction: row;
    flex: 0 1 auto;
    flex-wrap: wrap;
  }
  .grid > * {
    box-sizing: border-box;
    padding-left: 36px;
    position: relative;
  }
  .grid--no-gutter--xl {
    margin-left: 0;
  }
  .grid--no-gutter--xl > * {
    padding-left: 0;
  }
  .grid--v-top--xl {
    align-items: flex-start;
  }
  .grid--v-center--xl {
    align-items: center;
  }
  .grid--v-bottom--xl {
    align-items: flex-end;
  }
  .grid--v-stretch--xl {
    align-items: stretch;
  }
  .grid--v-baseline--xl {
    align-items: stretch;
  }
  .grid--align-start--xl {
    justify-content: flex-start;
  }
  .grid--align-end--xl {
    justify-content: flex-end;
  }
  .grid--align-center--xl {
    justify-content: center;
  }
  .grid--align-space-between--xl {
    justify-content: space-between;
  }
  .grid--align-space-around--xl {
    justify-content: space-around;
  }
  .grid__item--fit--xl {
    flex: 1 0;
  }
  .grid__item--flex--xl {
    display: flex;
  }
  .grid__item--1-12--xl {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .grid__item--1-6--xl, .grid__item--2-12--xl {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .grid__item--1-4--xl, .grid__item--3-12--xl {
    flex-basis: 25%;
    max-width: 25%;
  }
  .grid__item--1-3--xl, .grid__item--2-6--xl, .grid__item--4-12--xl {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .grid__item--5-12--xl {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .grid__item--1-2--xl, .grid__item--2-4--xl, .grid__item--3-6--xl, .grid__item--6-12--xl {
    flex-basis: 50%;
    max-width: 50%;
  }
  .grid__item--7-12--xl {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .grid__item--2-3--xl, .grid__item--4-6--xl, .grid__item--8-12--xl {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .grid__item--3-4--xl, .grid__item--9-12--xl {
    flex-basis: 75%;
    max-width: 75%;
  }
  .grid__item--5-6--xl, .grid__item--10-12--xl {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .grid__item--11-12--xl {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .grid__item--1-1--xl, .grid__item--2-2--xl, .grid__item--3-3--xl, .grid__item--4-4--xl, .grid__item--6-6--xl, .grid__item--12-12--xl {
    flex-basis: 100%;
    max-width: 100%;
  }
  .grid__item--push--1-12--xl {
    margin-left: 8.3333333333%;
  }
  .grid__item--push--1-6--xl, .grid__item--push--2-12--xl {
    margin-left: 16.6666666667%;
  }
  .grid__item--push--1-4--xl, .grid__item--push--3-12--xl {
    margin-left: 25%;
  }
  .grid__item--push--1-3--xl, .grid__item--push--2-6--xl, .grid__item--push--4-12--xl {
    margin-left: 33.3333333333%;
  }
  .grid__item--push--5-12--xl {
    margin-left: 41.6666666667%;
  }
  .grid__item--push--1-2--xl, .grid__item--push--2-4--xl, .grid__item--push--3-6--xl, .grid__item--push--6-12--xl {
    margin-left: 50%;
  }
  .grid__item--push--7-12--xl {
    margin-left: 58.3333333333%;
  }
  .grid__item--push--2-3--xl, .grid__item--push--4-6--xl, .grid__item--push--8-12--xl {
    margin-left: 66.6666666667%;
  }
  .grid__item--push--3-4--xl, .grid__item--push--9-12--xl {
    margin-left: 75%;
  }
  .grid__item--push--5-6--xl, .grid__item--push--10-12--xl {
    margin-left: 83.3333333333%;
  }
  .grid__item--push--11-12--xl {
    margin-left: 91.6666666667%;
  }
  /*@if($omega){
      @include grid-omega($item_prefix, $suffix);
  }*/
}
.wrapper {
  width: 90%;
  max-width: 1260px;
  margin: 0 auto;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.gfield_label {
  font-weight: bold;
}

.ginput_container_fileupload {
  display: flex;
  padding-top: 2rem;
}

.gform_drop_area {
  border: 1px black solid;
  padding: 2.5rem;
  flex-grow: 8;
}
.gform_drop_area button {
  padding: 0.5rem;
}

.gform_fileupload_rules {
  margin: 1rem;
  flex-grow: 1;
}

.gform_fileupload_rules {
  display: flex;
  align-items: center;
}

/**
 * Login Styles
 *
 * Please note: the specificity is higher than usual due to WP's login styles.
 */
.login {
  background-color: #005994;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  border-left: unset;
  border-right: unset;
}

#login {
  display: block;
  width: 90%;
  max-width: 55rem;
  margin: 0 auto;
  padding: 1.6rem;
  background: #f8f9fd;
  font-size: 2.2rem;
  border-radius: 0 2rem 0 2rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}

#login h1 a {
  display: block;
  width: 36.5rem;
  height: 4.9rem;
  padding: 0;
  background-image: url("assets/imgs/cygnet-logo-colour.svg");
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
  text-decoration: none;
  pointer-events: none;
  text-indent: -9999px;
  margin-bottom: 2rem;
}

#login h2 {
  font-size: 1.9rem;
}

#login form {
  background: none;
  border: 0;
  box-shadow: unset;
  padding: 0;
}
#login form > p {
  margin: 0;
}

.login-wrapper {
  border: 0.1rem solid #aeb7bd;
  border-radius: 0.4rem;
  background: white;
  padding: 1.6rem;
  margin-top: 1.2rem;
}
.login-wrapper label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0;
}
.login-wrapper .input {
  margin-bottom: 1.2rem;
}
.login-wrapper #login_error {
  background: #fdf3f2;
  border: 0.1rem solid #bc204b;
  border-radius: 0.3rem;
  font-size: 1.6rem;
  padding: 0 0.4rem;
  margin-bottom: 0.8rem;
}

.login-toggle__button {
  font-family: "ITC Avant Garde Gothic W01", Helvetica, Arial, sans-serif;
  margin: 1.6rem 0 0;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #005994;
  text-decoration: underline;
  cursor: pointer;
}

.wp-hide-pw {
  display: none !important;
}

.privacy-policy-page-link {
  display: none;
}

.forgetmenot {
  display: none;
}

.language-switcher {
  display: none;
}

#nav {
  font-size: 1.4rem;
  margin: 0;
}

.submit .button {
  width: 100%;
  margin-bottom: 1.2rem;
}

.login-wrapper.login-wrapper--hidden {
  display: none;
}

.wp-pwd .caps-warning {
  display: none;
  position: relative;
  background-color: #fff9c4;
  border: 0.1rem solid #ffc72c;
  border-radius: 0.3rem;
  color: #000;
  padding: 0.8rem 1.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  top: -0.4rem;
  margin-bottom: 0.8rem;
}
@media (min-width: 800px) {
  .wp-pwd .caps-warning {
    font-size: 1.9rem;
  }
}

.wp-pwd .caps-icon {
  display: inline-flex;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.wp-pwd .caps-warning-text {
  vertical-align: middle;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

html {
  line-height: 1.5;
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "ITC Avant Garde Gothic W01", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}

.debug:after {
  box-sizing: border-box;
  position: fixed;
  display: block;
  bottom: 10px;
  right: 10px;
  padding: 5px 28px 5px 20px;
  font-size: 12px;
  font-weight: bold;
  color: #777;
  border-radius: 3px;
  background-color: #f7f7f7;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  z-index: 100000;
}
@media (min-width: 500px) {
  .debug:after {
    content: "small ($s 500px) ";
    background: linear-gradient(to right, #f7f7f7, #f7f7f7 90%, #0277bd 90%, #0277bd 100%);
  }
}
@media (min-width: 800px) {
  .debug:after {
    content: "medium ($m 800px)";
    background: linear-gradient(to right, #f7f7f7, #f7f7f7 90%, #00695c 90%, #00695c 100%);
  }
}
@media (min-width: 1000px) {
  .debug:after {
    content: "large ($l 1000px)";
    background: linear-gradient(to right, #f7f7f7, #f7f7f7 90%, #d81b60 90%, #d81b60 100%);
  }
}
@media (min-width: 1200px) {
  .debug:after {
    content: "xtra large ($xl 1200px)";
    background: linear-gradient(to right, #f7f7f7, #f7f7f7 90%, #6a1b9a 90%, #6a1b9a 100%);
  }
}

form {
  *zoom: 1;
  margin: 0 0 2.4rem 0;
}
form:before, form:after {
  content: "";
  display: table;
}
form:after {
  clear: both;
}
.cms-area form li {
  *zoom: 1;
  margin-top: 1.8rem;
}
.cms-area form li:before, .cms-area form li:after {
  content: "";
  display: table;
}
.cms-area form li:after {
  clear: both;
}
.cms-area form li:first-child {
  margin-top: 0;
}
.cms-area form li:last-child {
  margin-bottom: 1.8rem;
}

fieldset {
  margin-bottom: 2.4rem;
  padding: 0 1.8rem;
}
fieldset:last-child {
  margin-top: 0;
}

legend {
  font-size: 1.25em;
  margin-bottom: 2.4rem;
  padding: 0;
}

label {
  display: block;
  padding-bottom: 0.6rem;
}

input[type=checkbox],
input[type=radio] {
  vertical-align: baseline;
  background: none;
  border: none;
  height: 1.5rem;
  width: 1.5rem;
}

input[type=text] {
  -webkit-appearance: none;
}

input,
select,
textarea,
.select {
  box-sizing: border-box;
  width: 100%;
  padding: 1.2rem;
  border: 1px solid;
  border-radius: 0;
  color: #000000;
  background-color: #fff;
  border-color: #a3a3a3;
  position: relative;
  margin: 0;
  font-size: 1.8rem;
  font-family: inherit;
}
.gfield_error input,
.gfield_error select,
.gfield_error textarea,
.gfield_error .select {
  border-color: #bc204b;
}

.select {
  position: relative;
  background: white url("./assets/imgs/select.svg") 98% 50% no-repeat;
  background-size: 1.4rem;
  padding: 1rem 1.2rem;
}

/* $. Gravity Forms
\*----------------------------------------------------------------*/
.gfield_checkbox {
  position: relative;
}
.gfield_checkbox li {
  position: relative;
}
.gfield_checkbox label {
  padding: 0 0 0 3rem;
  display: inline-block;
  vertical-align: baseline;
}
.gfield_checkbox input[type=checkbox],
.gfield_checkbox input[type=radio] {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.gsection {
  margin-top: 1.2rem;
  margin-bottom: 2.4rem;
}

.gfield_radio li {
  display: inline-block;
}
.gfield_radio li label {
  display: inline;
  margin-right: 2rem;
  padding-left: 1rem;
}

.gfield_required {
  font-weight: normal;
  font-size: 1.4rem;
  color: #bc204b;
  margin-left: 0.6rem;
}

@media (min-width: 800px) {
  .gfield_date_dropdown_year,
  .gfield_date_dropdown_month,
  .gfield_date_dropdown_day {
    display: inline-block;
    width: 30%;
  }
}

.gfield_date_dropdown_month {
  margin: 1rem 0;
}
@media (min-width: 800px) {
  .gfield_date_dropdown_month {
    margin: 0 1rem;
  }
}

.gfield_consent_label {
  display: contents;
}

.gform_button_select_files {
  font-size: 1.5rem;
  border-radius: 2rem;
  padding: 0.7rem 1.6rem;
  border: none;
  background-color: #005994;
  color: #fff;
}
.gform_button_select_files:hover {
  background-color: #003a61;
}

.gform_confirmation_message {
  font-size: 1.8rem;
}

.validation_message {
  font-size: 1.6rem;
  background-color: #bc204b;
  color: #ffffff;
  display: inline-block;
  padding: 0.3rem 0.6rem;
  position: relative;
  top: -0.2rem;
  float: right;
}
.ginput_container_textarea + .validation_message {
  top: -1rem;
}

#gform_wrapper_3 .gfield_label {
  font-weight: bold;
}

p,
ul,
ol,
input,
textarea {
  font-size: 1.8rem;
}

a {
  text-decoration: none;
  display: inline-block;
  color: #005994;
}

a:hover {
  color: #005994;
}

p a,
p a:visited {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
}

h6 {
  font-weight: 500;
}

.cms-area h2, .beta {
  font-size: 3.2rem;
}
@media (min-width: 500px) {
  .cms-area h2, .beta {
    font-size: 3.4rem;
  }
}
@media (min-width: 800px) {
  .cms-area h2, .beta {
    font-size: 3.6rem;
  }
}
@media (min-width: 1000px) {
  .cms-area h2, .beta {
    font-size: 3.8rem;
  }
}
@media (min-width: 1200px) {
  .cms-area h2, .beta {
    font-size: 4rem;
  }
}

.cms-area h3, .gamma,
.cms-area .gsection_title {
  font-size: 2.8rem;
}
@media (min-width: 500px) {
  .cms-area h3, .gamma,
  .cms-area .gsection_title {
    font-size: 3rem;
  }
}
@media (min-width: 800px) {
  .cms-area h3, .gamma,
  .cms-area .gsection_title {
    font-size: 3.2rem;
  }
}
@media (min-width: 1000px) {
  .cms-area h3, .gamma,
  .cms-area .gsection_title {
    font-size: 3.4rem;
  }
}
@media (min-width: 1200px) {
  .cms-area h3, .gamma,
  .cms-area .gsection_title {
    font-size: 3.6rem;
  }
}

.cms-area h4, .delta, .mwm-aal-title {
  font-size: 2.6rem;
}
@media (min-width: 500px) {
  .cms-area h4, .delta, .mwm-aal-title {
    font-size: 2.8rem;
  }
}
@media (min-width: 800px) {
  .cms-area h4, .delta, .mwm-aal-title {
    font-size: 3rem;
  }
}
@media (min-width: 1000px) {
  .cms-area h4, .delta, .mwm-aal-title {
    font-size: 3.2rem;
  }
}
@media (min-width: 1200px) {
  .cms-area h4, .delta, .mwm-aal-title {
    font-size: 3.4rem;
  }
}

.cms-area h5, .epsilon {
  font-size: 2.2rem;
}
@media (min-width: 500px) {
  .cms-area h5, .epsilon {
    font-size: 2.4rem;
  }
}
@media (min-width: 800px) {
  .cms-area h5, .epsilon {
    font-size: 2.6rem;
  }
}
@media (min-width: 1000px) {
  .cms-area h5, .epsilon {
    font-size: 2.8rem;
  }
}
@media (min-width: 1200px) {
  .cms-area h5, .epsilon {
    font-size: 3rem;
  }
}
.cms-area h5.list-title, .epsilon.list-title {
  margin-bottom: 1.8rem;
}

.cms-area h6, .zeta {
  font-size: 1.4rem;
}
@media (min-width: 500px) {
  .cms-area h6, .zeta {
    font-size: 1.6rem;
  }
}
@media (min-width: 800px) {
  .cms-area h6, .zeta {
    font-size: 1.8rem;
  }
}
@media (min-width: 1000px) {
  .cms-area h6, .zeta {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .cms-area h6, .zeta {
    font-size: 2.2rem;
  }
}

.cms-area > h2,
.cms-area > h3,
.cms-area > h4,
.cms-area > h5,
.beta, .gamma, .delta, .mwm-aal-title, .epsilon,
.gsection_title {
  border-bottom: 1px solid #a3a3a3;
  margin-bottom: 2.4rem;
}

.beta, .gamma, .delta, .mwm-aal-title, .epsilon {
  margin-top: 4.2rem;
  margin-bottom: 3.6rem;
}

ul, ol {
  margin-left: 2.4rem;
}
ul li, ol li {
  margin-top: 0.8rem;
}
ul li:first-child, ol li:first-child {
  margin-top: 0;
}

strong {
  font-weight: 500;
}

.screen-reader-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
}

.cms-area {
  max-width: 900px;
}
.cms-area p,
.cms-area ul, .cms-area ol,
.cms-area table {
  font-size: 1.4rem;
}
@media (min-width: 500px) {
  .cms-area p,
  .cms-area ul, .cms-area ol,
  .cms-area table {
    font-size: 1.6rem;
  }
}
@media (min-width: 800px) {
  .cms-area p,
  .cms-area ul, .cms-area ol,
  .cms-area table {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .cms-area p,
  .cms-area ul, .cms-area ol,
  .cms-area table {
    font-size: 2rem;
  }
}
.cms-area p,
.cms-area ul, .cms-area ol,
.cms-area table,
.cms-area img {
  margin-bottom: 2.4rem;
}
.cms-area img {
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.cms-area .intro {
  font-weight: 500;
}
.cms-area .beta, .cms-area .gamma, .cms-area .delta, .cms-area .mwm-aal-title, .cms-area .epsilon {
  margin-top: 0;
}
.cms-area .special {
  margin-bottom: 1.2rem;
}
.cms-area .special ul, .cms-area .special ol {
  list-style: none;
  margin-left: 0;
  margin-bottom: 3.6rem;
}
.cms-area .special + ol,
.cms-area .special + ul,
.cms-area .list--unset {
  list-style: none;
  margin-left: 0;
}
.cms-area .list--unset a:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 14px;
  margin-right: 0.4rem;
  background-image: url("./assets/imgs/arrow-right-green.svg");
  background-repeat: no-repeat;
}
.cms-area .list--unset a:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 14px;
  margin-right: 0.4rem;
  background-image: url("./assets/imgs/arrow-right-green.svg");
}
.cms-area *:last-child {
  margin-bottom: 0;
}
.cms-area form ul {
  list-style: none;
  margin: 0;
}
.cms-area .wp-caption {
  margin-bottom: 2.4rem;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  overflow: hidden;
}
.cms-area .wp-caption img {
  border-radius: 0;
  margin-bottom: 0;
}
.cms-area .wp-caption-text {
  padding: 1.8rem;
  background-color: #f1f1f1;
  font-size: 1.6rem;
}

.cms-area--full {
  max-width: 100%;
}

.cms-area--push-bottom {
  margin-bottom: 2.4rem;
}

.cms-area--small p,
.cms-area--small ul, .cms-area--small ol,
.cms-area--small table {
  font-size: 1.4rem;
}
@media (min-width: 500px) {
  .cms-area--small p,
  .cms-area--small ul, .cms-area--small ol,
  .cms-area--small table {
    font-size: 1.6rem;
  }
}
.cms-area--small p,
.cms-area--small blockquote,
.cms-area--small ul, .cms-area--small ol,
.cms-area--small table,
.cms-area--small img {
  margin-bottom: 2rem;
}

.flexible {
  position: relative;
  overflow: hidden;
  margin: 0;
  display: block;
}
.flexible > iframe,
.flexible > object,
.flexible > embed,
.flexible .flexible__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cms-area .flexible--video,
.cms-area .flexible--map {
  margin-bottom: 3.6rem;
}

.flexible--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.flexible--letterbox:after {
  padding-top: 56.25%;
  display: block;
  content: "";
}

.flexible--old:after {
  padding-top: 75%;
  display: block;
  content: "";
}

.flexible--square:after {
  padding-top: 100%;
  display: block;
  content: "";
}

.code {
  position: relative;
  width: 100%;
  display: block;
  padding: 1.8rem;
  margin-bottom: 2.4rem;
  font-size: 1.6rem;
  background: #333333;
  color: #ffffff;
  resize: vertical;
  border: 0;
  height: auto;
  outline: none;
  letter-spacing: 1px;
  line-height: 1.2;
  border-top: 3rem solid #000000;
  box-shadow: inset 0 0 2px 0 black;
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
}
.code:after {
  font-size: "ITC Avant Garde Gothic W01", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  content: "Example";
  position: absolute;
  top: -3rem;
  left: 0;
  padding: 0 1.2rem;
  height: 3rem;
  line-height: 3rem;
  background: #005994;
  color: #ffffff;
  letter-spacing: 0;
}
.code span {
  color: #ffc72c;
}

table {
  width: 100%;
  border: 0;
}

tr {
  border: 0;
}

td, th {
  padding: 1.2rem;
  border: 1px solid rgb(229.5, 229.5, 229.5);
  vertical-align: top;
}

tr:nth-child(odd) td {
  background: rgb(242.25, 242.25, 242.25);
}

th {
  font-weight: 500;
  background: #005994;
  color: #ffffff;
  text-align: left;
  border-color: #005994;
}

.clear {
  *zoom: 1;
}
.clear:before, .clear:after {
  content: "";
  display: table;
}
.clear:after {
  clear: both;
}

img {
  max-width: 100%;
}
img[width] {
  width: auto !important;
}
img[height] {
  height: auto !important;
}

svg {
  max-width: 100%;
}

.cms-area .gallery a {
  display: block;
  margin-bottom: 2.4rem;
}
.cms-area .gallery a:last-child {
  margin-bottom: 2.4rem;
}

.gallery__item {
  width: 100%;
  background-size: cover;
  background-position: center;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.gallery__item:after {
  padding-top: 75%;
  display: block;
  content: "";
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  height: 100%;
  left: 0;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s, visibility 0s linear 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s, visibility 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  text-align: center;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translate3d(0, 0, 0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  height: 100%;
  margin-right: -0.25em;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--next {
  z-index: 99995;
}

.fancybox-slide--image {
  overflow: visible;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px 6px 0 6px;
}

.fancybox-slide--iframe {
  padding: 44px 44px 0;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0 0 6px 0;
  max-width: 100%;
  overflow: auto;
  padding: 0;
  padding: 24px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  margin: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-drag .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-dragging .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--html .fancybox-content {
  margin-bottom: 6px;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  margin: 0;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
  height: calc(100% - 44px);
  margin-bottom: 44px;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  vertical-align: top;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  outline: none;
  padding: 10px;
  transition: color 0.2s;
  vertical-align: top;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:focus,
.fancybox-button:hover {
  color: #fff;
}

.fancybox-button.disabled,
.fancybox-button.disabled:hover,
.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
}

.fancybox-button svg {
  display: block;
  overflow: visible;
  position: relative;
  shape-rendering: geometricPrecision;
}

.fancybox-button svg path {
  fill: transparent;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 3;
}

.fancybox-button--play svg path:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg path:nth-child(1) {
  display: none;
}

.fancybox-button--play svg path,
.fancybox-button--share svg path,
.fancybox-button--thumbs svg path {
  fill: currentColor;
}

.fancybox-button--share svg path {
  stroke-width: 1;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  height: 38px;
  opacity: 0;
  padding: 6px;
  position: absolute;
  top: 50%;
  width: 38px;
}

.fancybox-show-nav .fancybox-navigation .fancybox-button {
  transition: opacity 0.25s, visibility 0s, color 0.25s;
}

.fancybox-navigation .fancybox-button::after {
  content: "";
  left: -25px;
  padding: 50px;
  position: absolute;
  top: -25px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  right: 6px;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #555;
  cursor: pointer;
  height: 44px;
  margin: 0;
  padding: 6px;
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  z-index: 10;
}

.fancybox-close-small svg {
  fill: transparent;
  opacity: 0.8;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: stroke 0.1s;
}

.fancybox-close-small:focus {
  outline: none;
}

.fancybox-close-small:hover svg {
  opacity: 1;
}

.fancybox-slide--image .fancybox-close-small,
.fancybox-slide--video .fancybox-close-small,
.fancybox-slide--iframe .fancybox-close-small {
  color: #ccc;
  padding: 5px;
  right: -12px;
  top: -44px;
}

.fancybox-slide--image .fancybox-close-small:hover svg,
.fancybox-slide--video .fancybox-close-small:hover svg,
.fancybox-slide--iframe .fancybox-close-small:hover svg {
  background: transparent;
  color: #fff;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
  display: none;
}

/* Caption */
.fancybox-caption {
  bottom: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 25px 44px 25px 44px;
  right: 0;
}

.fancybox-caption::before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAEtCAQAAABjBcL7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHRJREFUKM+Vk8EOgDAIQ0vj/3+xBw8qIZZueFnIKC90MCAI8DlrkHGeqqGIU6lVigrBtpCWqeRWoHDNqs0F7VNVBVxmHRlvoVqjaYkdnDIaivH2HqZ5+oZj3JUzWB+cOz4G48Bg+tsJ/tqu4dLC/4Xb+0GcF5BwBC0AA53qAAAAAElFTkSuQmCC);
  background-repeat: repeat-x;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -25px;
  z-index: -1;
}

.fancybox-caption::after {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  content: "";
  display: block;
  left: 44px;
  position: absolute;
  right: 44px;
  top: 0;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 0.8s infinite linear;
  animation: fancybox-rotate 0.8s infinite linear;
  background: transparent;
  border: 6px solid rgba(100, 100, 100, 0.5);
  border-radius: 100%;
  border-top-color: #fff;
  height: 60px;
  left: 50%;
  margin: -30px 0 0 -30px;
  opacity: 0.6;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 60px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-360deg);
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #fff;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs > ul {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x > ul {
  overflow: hidden;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs > ul > li {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1);
}

.fancybox-thumbs > ul > li {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fancybox-thumbs > ul > li:before {
  border: 4px solid #4ea7f9;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs .fancybox-thumbs-active:before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs > ul > li {
    max-width: calc(100% - 10px);
  }
}
/**
 * Component: Header
 */
.header {
  border-bottom: 0.2rem solid #692e57;
}
@media (min-width: 800px) {
  .header {
    padding-bottom: 1.2rem;
  }
  .header .wrapper {
    position: relative;
  }
}
@media (min-width: 1000px) {
  .header {
    padding-bottom: 1.8rem;
  }
}

.header__inner {
  position: relative;
}
@media (min-width: 800px) {
  .header__inner {
    width: 90%;
    max-width: 1260px;
    margin: 0 auto;
  }
}

.header__upper {
  padding: 2.4rem 5%;
  position: relative;
  height: 40px;
  box-sizing: content-box;
}
@media (min-width: 800px) {
  .header__upper {
    box-sizing: border-box;
    height: auto;
    padding: 7rem 0 2.4rem;
  }
}
@media (min-width: 1000px) {
  .header__upper {
    height: auto;
    padding-bottom: 0rem;
  }
}

.header__search {
  display: none;
}
.is-active-search .header__search {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 2.4rem 5%;
  background-color: #ffffff;
  z-index: 10;
}
@media (min-width: 800px) {
  .is-active-search .header__search {
    position: relative;
    top: auto;
    left: auto;
    z-index: 0;
    padding: 0;
    margin-bottom: 2.4rem;
    background-color: transparent;
  }
}
@media (min-width: 1000px) {
  .is-active-search .header__search {
    position: absolute;
  }
}
@media (min-width: 800px) {
  .header__search {
    display: flex;
    max-width: 257px;
    float: right;
    position: relative;
    top: auto;
    left: auto;
    z-index: 0;
    padding: 0;
    margin-bottom: 2.4rem;
    background-color: transparent;
  }
}
@media (min-width: 1000px) {
  .header__search {
    display: flex;
    float: none;
    position: absolute;
    top: 6.6rem;
    right: 0;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .header__search {
    top: 6.8rem;
  }
}

.header__logo {
  width: 100%;
  margin-top: 0.6rem;
  max-width: 220px;
}
.header__logo a,
.header__logo svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 800px) {
  .header__logo {
    max-width: 300px;
    float: left;
  }
}
@media (min-width: 1000px) {
  .header__logo {
    width: 275px;
    height: 35px;
    position: relative;
    float: none;
    margin-top: 6rem;
  }
  .header__logo a {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (min-width: 1200px) {
  .header__logo {
    width: 365px;
    max-width: 100%;
    height: 49px;
  }
}

.header__toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 800px) {
  .header__toggle {
    display: none;
  }
}

.header__btn {
  border: 0;
  padding: 1rem;
  margin: 0;
  display: block;
  background-color: #692e57;
  outline: 0;
  cursor: pointer;
}
.header__btn svg {
  width: 24px;
  height: 24px;
}
.header__btn .on {
  display: none;
}
.header__btn .text {
  display: none;
}

.header__btn--nav {
  background-color: #005994;
}
.is-active-nav .header__btn--nav .on {
  display: block;
}
.is-active-nav .header__btn--nav .off {
  display: none;
}

.header__btn--search {
  background-color: #692e57;
}
.is-active-search .header__btn--search .on {
  display: block;
}
.is-active-search .header__btn--search .off {
  display: none;
}

/**
 * Component: Logo
 */
.logo {
  display: block;
}

.cygnet-logo__path--my {
  fill: #b4c929;
}

.cygnet-logo__path--cygnet {
  fill: #005994;
}

/**
 * Component: Navigation
 */
.navigation {
  display: none;
}
.is-active-nav .navigation {
  display: block;
}
@media (min-width: 800px) {
  .navigation {
    display: block;
  }
}

@media (min-width: 800px) {
  .navigation__upper {
    display: flex;
    width: 100%;
  }
}
@media (min-width: 1000px) {
  .navigation__upper {
    display: block;
    position: absolute;
    bottom: 0.4rem;
    right: 0;
    width: calc(100% - 300px);
  }
}
@media (min-width: 1200px) {
  .navigation__upper {
    width: calc(100% - 400px);
    bottom: 0.8rem;
  }
}

@media (min-width: 800px) {
  .navigation__lower {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #692e57;
    padding: 0 1rem;
    border-top-right-radius: 2rem;
    border-bottom-left-radius: 2rem;
    margin: 1rem 0 2rem;
    display: flex;
    justify-content: space-between;
  }
}

.navigation__primary,
.navigation__secondary,
.navigation__tertiary {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.8rem;
}
.navigation__primary ul,
.navigation__secondary ul,
.navigation__tertiary ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
}
.navigation__primary ul a,
.navigation__secondary ul a,
.navigation__tertiary ul a {
  padding: 0.3rem 1.2rem;
}
.navigation__primary ul a:before,
.navigation__secondary ul a:before,
.navigation__tertiary ul a:before {
  content: "- ";
}
.navigation__primary li,
.navigation__secondary li,
.navigation__tertiary li {
  margin: 0;
}
.navigation__primary .tertiary-menu__item--parent > a,
.navigation__secondary .tertiary-menu__item--parent > a,
.navigation__tertiary .tertiary-menu__item--parent > a {
  padding-bottom: 0;
}
.navigation__primary a,
.navigation__secondary a,
.navigation__tertiary a {
  padding: 0.6rem 1.2rem;
  background-color: #692e57;
  color: #ffffff;
  display: block;
}
.navigation__primary svg,
.navigation__secondary svg,
.navigation__tertiary svg {
  display: none;
}

@media (min-width: 800px) {
  .navigation__primary {
    font-size: 2.6rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
  }
  .navigation__primary svg {
    display: inline-block;
  }
  .navigation__primary li {
    margin-left: 2.1rem;
  }
  .navigation__primary li:first-child {
    margin-left: 0;
  }
  .navigation__primary a {
    background-color: transparent;
    color: #005994;
    padding: 0;
  }
}
@media (min-width: 1000px) {
  .navigation__primary {
    font-size: 2rem;
    display: block;
    text-align: right;
  }
  .navigation__primary li {
    display: inline-block;
  }
}
@media (min-width: 1280px) {
  .navigation__primary {
    font-size: 2.6rem;
  }
}
.navigation__primary svg {
  margin-top: -0.6rem;
}

.navigation__secondary {
  color: #ffffff;
}
.navigation__secondary svg {
  display: none;
}
.navigation__secondary a {
  background-color: #692e57;
  color: #ffffff;
}
@media (min-width: 800px) {
  .navigation__secondary {
    display: flex;
    font-size: 1.8rem;
  }
}

.navigation__secondary__item {
  margin-top: 0;
}
@media (min-width: 800px) {
  .navigation__secondary__item > a {
    position: relative;
    padding: 0.6rem 1.2rem;
    background-color: transparent;
  }
  .navigation__secondary__item > a:after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0.2rem;
    height: 1.6rem;
    background: white;
  }
}
.navigation__secondary__item:last-child a:after {
  background: transparent;
}

.navigation__tertiary svg {
  display: inline-block;
  width: 16px;
  height: 10px;
}

.navigation__tertiary {
  color: #ffffff;
}
.navigation__tertiary svg {
  display: none;
}
@media (min-width: 800px) {
  .navigation__tertiary {
    display: flex;
    font-size: 1.8rem;
  }
}

.navigation__tertiary__sub-menu svg {
  display: none;
}
@media (min-width: 800px) {
  .navigation__tertiary__sub-menu {
    display: none;
    position: absolute;
    top: 3.9rem;
    right: 0;
    z-index: 10;
    width: 100%;
    max-width: 279px;
    list-style: none;
    margin: 0;
    font-size: 1.6rem;
  }
  .navigation__tertiary__sub-menu svg {
    display: none;
  }
  .navigation__tertiary__sub-menu li {
    margin: 0;
  }
  .navigation__tertiary__sub-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    background-color: #692e57;
    color: #ffffff;
  }
  .navigation__tertiary__sub-menu a:focus, .navigation__tertiary__sub-menu a:active, .navigation__tertiary__sub-menu a:hover {
    background-color: rgb(96.1341059603, 42.1158940397, 79.6539735099);
  }
}

@media (min-width: 800px) {
  .navigation__tertiary__item {
    margin-top: 0;
  }
  .navigation__tertiary__item > a {
    position: relative;
    padding: 0.6rem 1.2rem;
    color: #ffffff;
    background-color: transparent;
    border-left: 0.2rem solid white;
  }
}

@media (min-width: 800px) {
  .navigation__tertiary__item {
    margin-top: 0;
  }
  .navigation__tertiary__item > a {
    position: relative;
    padding: 0.6rem 1.2rem;
    color: #ffffff;
    background-color: transparent;
    border-left: 0.2rem solid white;
  }
  .navigation__tertiary__item--parent > svg {
    display: inline-block;
  }
  .navigation__tertiary__item--parent:hover .navigation__tertiary__sub-menu {
    display: block;
  }
}
/**
 * Component: Search
 */
.form--search .form__inner {
  position: relative;
  padding-right: 22px;
}
.form--search .form__label {
  display: none;
}
.form--search .form__input,
.form--search .form__button {
  outline: 0;
}
.form--search .form__input {
  font-family: "ITC Avant Garde Gothic W01", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 2rem;
  padding: 1.2rem 2rem;
  width: 100%;
  border: 1px solid #a3a3a3;
  border-right: 0;
}
@media (min-width: 800px) {
  .form--search .form__input {
    font-size: 1.8rem;
  }
}
@media (min-width: 1000px) {
  .form--search .form__input {
    margin-bottom: 0;
  }
}
.form--search .form__button {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: #692e57;
  padding: 1.2rem;
  border: 0;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  z-index: 2;
}

/**
 * Component: Footer
 */
/**
 * Title:
 *    Footer
 * Description:
 *    Used to define the sites main footer at the bottom of the page.
 *    Don't use this as a place to put generic <footer> tags.
 * Sections:
 *    $. Footer
 *    $. Copyright
 */
/* $. Footer
\*----------------------------------------------------------------*/
.footer {
  margin-top: 4.8rem;
}

.footer__upper {
  padding: 2.4rem 0;
  border-top: 1px solid #bdc0b6;
  border-bottom: 1px solid #bdc0b6;
  text-align: center;
}
@media (min-width: 800px) {
  .footer__upper {
    text-align: left;
  }
}

/**
 * Component: Social
 */
@media (min-width: 800px) {
  .social {
    text-align: right;
  }
}

.social__title {
  font-size: 2.4rem;
  font-weight: 600;
  margin: 2.4rem 0 1.2rem;
}
@media (min-width: 800px) {
  .social__title {
    margin: 0;
  }
}

.social__links {
  margin-left: 0;
}
.social__links li {
  display: inline;
  list-style: none;
  margin-left: 0.2rem;
}
.social__links li:first-child {
  margin-left: 0;
}

/**
 * Component: Copyright
 */
.copyright {
  display: block;
  text-align: center;
  margin: 2.4rem 0;
  font-size: 1.4rem;
}
@media (min-width: 500px) {
  .copyright {
    font-size: 1.6rem;
  }
}
.copyright span {
  display: block;
}
@media (min-width: 800px) {
  .copyright {
    text-align: right;
  }
  .copyright span {
    display: inline-block;
    line-height: 1;
  }
  .copyright span:first-child {
    margin-right: 1.2rem;
    padding-right: 1.6rem;
    border-right: 1px solid;
  }
}

/**
 * Component: CTA
 */
.cta {
  margin-top: 2.4rem;
  padding: 2.4rem;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.cta *:last-child {
  margin-bottom: 0 !important;
}
.cta .btn, .cta .submit .button, .submit .cta .button {
  margin-top: 2.4rem;
}

.cta__container {
  max-width: 800px;
  margin: 0 auto;
}

.cta__title {
  line-height: 1.2;
  margin-bottom: 1.2rem;
  font-size: 2.6rem;
}
@media (min-width: 500px) {
  .cta__title {
    font-size: 2.8rem;
  }
}
@media (min-width: 800px) {
  .cta__title {
    font-size: 3rem;
  }
}
@media (min-width: 1000px) {
  .cta__title {
    font-size: 3.2rem;
  }
}
@media (min-width: 1200px) {
  .cta__title {
    font-size: 3.4rem;
  }
}

.cta__text {
  font-size: 1.6rem;
}
@media (min-width: 500px) {
  .cta__text {
    font-size: 1.8rem;
  }
}
@media (min-width: 800px) {
  .cta__text {
    font-size: 2rem;
  }
}
@media (min-width: 1000px) {
  .cta__text {
    font-size: 2.2rem;
  }
}

.cta--center,
.cta--centre {
  text-align: center;
}

.cta--blue,
.cta--red,
.cta--purple,
.cta--orange {
  color: #ffffff;
}
.cta--blue a:not(.btn),
.cta--red a:not(.btn),
.cta--purple a:not(.btn),
.cta--orange a:not(.btn) {
  color: #ffffff;
  text-decoration: underline;
}

.cta--yellow,
.cta--lime {
  color: #000000;
}
.cta--yellow a:not(.btn),
.cta--lime a:not(.btn) {
  color: #000000;
  text-decoration: underline;
}

.cta--blue {
  background-color: #005994;
}

.cta--red {
  background-color: #bc204b;
}

.cta--purple {
  background-color: #692e57;
}

.cta--orange {
  background-color: #e57200;
}

.cta--lime {
  background-color: #b4c929;
}

.cta--yellow {
  background-color: #ffc72c;
}

/**
 * Component: Filter
 */
.filter {
  padding: 2.4rem;
  margin-bottom: 3.6rem;
  background-color: #f1f1f1;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}

@media (min-width: 800px) {
  .filter--inline .filter__submit,
  .filter--inline .filter__input {
    margin: 0;
  }
  .filter--inline .filter__input input {
    min-height: 56px;
  }
}

.filter__title {
  font-weight: 500;
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
}

.filter__submit {
  margin-top: 1.2rem;
}

.filter__contain {
  border: 0;
  padding: 0;
  margin: 0;
}

.filter__input {
  margin-bottom: 1.2rem;
}
.filter__input select {
  width: 100%;
  font-size: 2rem;
}

.filter__label {
  display: block;
  font-size: 2rem;
}

.filter__reset {
  margin-top: 0.6rem;
  font-size: 1.8rem;
  text-align: center;
}

/**
 * Component: Title
 */
.loop {
  margin-top: 3.6rem;
}
.loop:first-child {
  margin-top: 0;
}

.loop__image {
  margin-bottom: 1.2rem;
  display: block;
}
.loop__image img {
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.loop--locations .loop__image {
  display: none;
}
@media (min-width: 800px) {
  .loop--locations .loop__image {
    display: block;
  }
}

.loop__date {
  color: #a3a3a3;
  font-size: 1.6rem;
}
@media (min-width: 500px) {
  .loop__date {
    font-size: 1.8rem;
  }
}

.loop__title {
  font-weight: 300;
  font-size: 2.2rem;
}
@media (min-width: 500px) {
  .loop__title {
    font-size: 2.4rem;
  }
}
@media (min-width: 800px) {
  .loop__title {
    font-size: 2.6rem;
  }
}
@media (min-width: 1000px) {
  .loop__title {
    font-size: 2.8rem;
  }
}
@media (min-width: 1200px) {
  .loop__title {
    font-size: 3rem;
  }
}
.loop--locations .loop__title {
  line-height: 1;
  margin-bottom: 0.6rem;
}

.loop__subtitle {
  font-weight: 500;
  font-size: 2.2rem;
}

.loop__excerpt {
  margin-top: 0.6rem;
  font-size: 1.4rem;
}
@media (min-width: 500px) {
  .loop__excerpt {
    font-size: 1.6rem;
  }
}
@media (min-width: 800px) {
  .loop__excerpt {
    font-size: 1.8rem;
  }
}

.loop__article-button {
  margin-top: 2.4rem;
}

/**
 * Component: Title
 */
.meta {
  margin-bottom: 3.6rem;
  font-size: 1.6rem;
}
@media (min-width: 500px) {
  .meta {
    font-size: 1.8rem;
  }
}
@media (min-width: 1000px) {
  .meta {
    font-size: 2rem;
  }
}

.meta--inline {
  border-top: 1px solid #a3a3a3;
  border-bottom: 1px solid #a3a3a3;
  padding: 2.4rem 0;
}
.meta--inline .meta__item {
  margin-bottom: 2.4rem;
}
.meta--inline .meta__item:last-child {
  margin-bottom: 0;
}
.meta--inline .meta__key--title {
  font-weight: 500;
}

.meta--block {
  padding: 2.4rem;
  background-color: #f1f1f1;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.meta--block .meta__item {
  margin-top: 1.2rem;
}
.meta--block .meta__item:first-child {
  margin-top: 0;
}
.meta--block .meta__item--button {
  margin-top: 3.6rem;
}
.meta--block .meta__key,
.meta--block .meta__value {
  display: inline-block;
}
.meta--block .meta__key {
  min-width: 100px;
}
@media (min-width: 500px) {
  .meta--block .meta__key {
    min-width: 107px;
  }
}
@media (min-width: 1000px) {
  .meta--block .meta__key {
    min-width: 114px;
  }
}

.meta--listing {
  margin: 0;
  font-size: 1.8rem;
}
@media (min-width: 500px) {
  .meta--listing {
    font-size: 2rem;
  }
}
@media (min-width: 1000px) {
  .meta--listing {
    font-size: 2.2rem;
  }
}
.meta--listing .meta__item {
  margin-top: 0.6rem;
}
.meta--listing .meta__item:first-child {
  margin-top: 0;
}
.meta--listing .meta__item--address {
  font-size: 1.6rem;
}
@media (min-width: 500px) {
  .meta--listing .meta__item--address {
    font-size: 1.8rem;
  }
}
@media (min-width: 1000px) {
  .meta--listing .meta__item--address {
    font-size: 2rem;
  }
}
.meta--listing dt,
.meta--listing dd {
  display: table-cell;
  vertical-align: middle;
}
.meta--listing span {
  margin-left: 1.2rem;
  font-size: 1.4rem;
}
@media (min-width: 500px) {
  .meta--listing span {
    font-size: 1.6rem;
  }
}
@media (min-width: 1000px) {
  .meta--listing span {
    font-size: 1.8rem;
  }
}
.meta--listing .meta__key--icon {
  padding-right: 0.8rem;
}

.meta__key--icon {
  width: 30px;
  height: 30px;
}

.meta__key--title:after {
  content: ":";
}

/**
 * Component: Title
 */
.loop-featured {
  position: relative;
  display: block;
  margin-bottom: 3.6rem;
  background-size: cover;
  color: #ffffff;
  text-align: center;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.loop-featured:after {
  padding-top: 76.0925449871%;
  display: block;
  content: "";
}
.loop-featured:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  background-color: rgba(0, 0, 0, 0.33);
}
.loop-featured:focus, .loop-featured:active, .loop-featured:hover {
  color: #ffffff;
}
.loop-featured:focus:before, .loop-featured:active:before, .loop-featured:hover:before {
  background-color: rgba(0, 0, 0, 0.66);
}

.loop-featured__title {
  font-weight: 300;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 0 2.4rem;
  transform: translateY(-50%);
  font-size: 3rem;
}

.loop-featured__icon {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
}

/**
 * Component: Title
 */
.link--normal {
  font-size: 1.6rem;
}
@media (min-width: 500px) {
  .link--normal {
    font-size: 1.8rem;
  }
}
@media (min-width: 800px) {
  .link--normal {
    font-size: 2rem;
  }
}

.link svg {
  margin-top: -0.4rem;
  margin-right: 0.4rem;
}

.link--large {
  font-size: 1.6rem;
}
.link--large a {
  color: #000000;
}
.link--large a:focus, .link--large a:active, .link--large a:hover {
  color: #000000;
}
@media (min-width: 500px) {
  .link--large {
    font-size: 1.8rem;
  }
}
@media (min-width: 1000px) {
  .link--large {
    font-size: 2rem;
  }
}
.link--large svg {
  width: 10px;
  height: 22px;
  margin-right: 0.6rem;
}

.link--bold {
  font-size: 1.6rem;
  font-weight: 500;
}
@media (min-width: 500px) {
  .link--bold {
    font-size: 1.8rem;
  }
}
@media (min-width: 800px) {
  .link--bold {
    font-size: 2rem;
  }
}

/**
 * Component: Title
 */
.loop-section-a {
  margin-bottom: 3.6rem;
  max-width: 430px;
}
.loop-section-a img {
  border-top-right-radius: 2rem;
  opacity: 0.9;
}
.loop-section-a > a {
  display: block;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.loop-section-a > a:focus img, .loop-section-a > a:active img, .loop-section-a > a:hover img {
  opacity: 1;
}
@media (min-width: 800px) {
  .loop-section-a {
    max-width: 100%;
  }
}
@media (min-width: 1000px) {
  .loop-section-a {
    max-width: 430px;
  }
}
@media (min-width: 1200px) {
  .loop-section-a {
    max-width: 100%;
  }
}

.loop-section-a__title {
  border-bottom-left-radius: 2rem;
  padding: 1.2rem 3.6rem 1.2rem 1.8rem;
  position: relative;
  top: -1px;
  font-size: 2.2rem;
}
@media (min-width: 800px) {
  .loop-section-a__title {
    font-size: 2.4rem;
  }
}
.loop-section-a__title svg {
  position: absolute;
  top: 50%;
  right: 1.8rem;
  transform: translateY(-50%);
  width: 10px;
  height: 22px;
}
.loop-section-a--no-img .loop-section-a__title {
  border-top-right-radius: 2rem;
}

.loop-section-a__list {
  list-style: none;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  margin: 1.2rem 0 0;
  padding: 0 0 1.2rem 1.2rem;
}
@media (min-width: 800px) {
  .loop-section-a__list {
    margin-top: 1.8rem;
    padding-bottom: 1.8rem;
  }
}

.loop-section-a--blue > a .loop-section-a__title {
  background-color: #005994;
  color: #ffffff;
}
.loop-section-a--blue > a:focus .loop-section-a__title, .loop-section-a--blue > a:active .loop-section-a__title, .loop-section-a--blue > a:hover .loop-section-a__title {
  background-color: rgb(0, 73.6655405405, 122.5);
}
.loop-section-a--blue .loop-section-a__list {
  border-bottom-color: #005994;
}

.loop-section-a--orange > a .loop-section-a__title {
  background-color: #e57200;
  color: #ffffff;
}
.loop-section-a--orange > a:focus .loop-section-a__title, .loop-section-a--orange > a:active .loop-section-a__title, .loop-section-a--orange > a:hover .loop-section-a__title {
  background-color: rgb(203.5, 101.3056768559, 0);
}
.loop-section-a--orange .loop-section-a__list {
  border-bottom-color: #e57200;
}

.loop-section-a--lime > a .loop-section-a__title {
  background-color: #b4c929;
  color: #000000;
}
.loop-section-a--lime > a:focus .loop-section-a__title, .loop-section-a--lime > a:active .loop-section-a__title, .loop-section-a--lime > a:hover .loop-section-a__title {
  background-color: rgb(161.0330578512, 179.8202479339, 36.6797520661);
}
.loop-section-a--lime .loop-section-a__list {
  border-bottom-color: #b4c929;
}

.loop-section-a--green > a .loop-section-a__title {
  background-color: #47884e;
  color: #ffffff;
}
.loop-section-a--green > a:focus .loop-section-a__title, .loop-section-a--green > a:active .loop-section-a__title, .loop-section-a--green > a:hover .loop-section-a__title {
  background-color: rgb(62.2536231884, 119.2463768116, 68.3913043478);
}
.loop-section-a--green .loop-section-a__list {
  border-bottom-color: #47884e;
}

.loop-section-a--purple > a .loop-section-a__title {
  background-color: #693c5e;
  color: #ffffff;
}
.loop-section-a--purple > a:focus .loop-section-a__title, .loop-section-a--purple > a:active .loop-section-a__title, .loop-section-a--purple > a:hover .loop-section-a__title {
  background-color: rgb(88.7727272727, 50.7272727273, 79.4727272727);
}
.loop-section-a--purple .loop-section-a__list {
  border-bottom-color: #693c5e;
}

.loop-section-a--red > a .loop-section-a__title {
  background-color: #bc204b;
  color: #ffffff;
}
.loop-section-a--red > a:focus .loop-section-a__title, .loop-section-a--red > a:active .loop-section-a__title, .loop-section-a--red > a:hover .loop-section-a__title {
  background-color: rgb(166.2090909091, 28.2909090909, 66.3068181818);
}
.loop-section-a--red .loop-section-a__list {
  border-bottom-color: #bc204b;
}

.loop-section-a--yellow > a .loop-section-a__title {
  background-color: #ffc72c;
  color: #000000;
}
.loop-section-a--yellow > a:focus .loop-section-a__title, .loop-section-a--yellow > a:active .loop-section-a__title, .loop-section-a--yellow > a:hover .loop-section-a__title {
  background-color: rgb(255, 192.2322274882, 18.5);
}
.loop-section-a--yellow .loop-section-a__list {
  border-bottom-color: #ffc72c;
}

/**
 * Component: Title
 */
.loop-section-b {
  height: calc(100% - 3rem);
  padding: 3rem;
  margin-bottom: 3rem;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}

.loop-section-b--grey {
  background-color: #f1f1f1;
}

.loop-section-b__title {
  font-size: 2.2rem;
}
@media (min-width: 800px) {
  .loop-section-b__title {
    font-size: 2.4rem;
  }
}
.loop-section-b__title svg {
  width: 10px;
  height: 22px;
}

.loop-section-b__excerpt {
  margin-top: 0.6rem;
}

/**
 * Component: Link Boxes
 */
.link-boxes {
  padding-top: 3.6rem;
  border-top: 1px solid #bdc0b6;
}

.link-boxes__item {
  padding: 2.4rem;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  background: #693c5e;
  color: #ffffff;
  height: calc(100% - 3.6rem);
  margin-bottom: 3.6rem;
}
.link-boxes__item ul {
  list-style: none;
  margin: 0;
}
.link-boxes__item ul li {
  margin-top: 0;
}
.link-boxes__item ul a {
  color: #ffffff;
  font-size: 1.4rem;
}
@media (min-width: 800px) {
  .link-boxes__item {
    height: 100%;
    margin-bottom: 0;
  }
}

.link-boxes .grid div:last-child .link-boxes__item {
  margin-bottom: 0;
  height: 100%;
}

.link-boxes__title {
  font-weight: 500;
  margin-bottom: 1.2rem;
  font-size: 2.2rem;
}

/**
 * Component: Sidebar Section
 */
.sidebar {
  margin-top: 3.6rem;
}
@media (min-width: 1000px) {
  .sidebar {
    margin-top: 0;
  }
}

.sidebar-section {
  background-color: #f1f1f1;
  padding: 3.6rem;
  margin-bottom: 3.6rem;
  height: calc(100% - 3.6rem);
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}

.sidebar-section__title {
  font-weight: 500;
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}

.sidebar-section__list {
  font-size: 2rem;
  list-style: none;
  margin: 0;
}
.sidebar-section__list .is-current > a {
  color: #000000;
}
.sidebar-section__list svg {
  margin-top: -3px;
}

.sidebar-section__item.has-children ul {
  font-size: 1.6rem;
  list-style: none;
  margin: 0 0 0 1.2rem;
}
.sidebar-section__item.has-children li a:before {
  content: "– ";
}
.sidebar-section--archive .sidebar-section__item ul {
  display: none;
}

/**
 * Component: Title
 */
.notice {
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
  height: calc(100% - 4.8rem);
  padding: 2.4rem;
  background: #f1f1f1;
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  position: relative;
}
.notice:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-right: 24px solid #f1f1f1;
  margin-top: -24px;
  position: absolute;
  top: 0;
  right: 0;
}
.notice .btn, .notice .submit .button, .submit .notice .button {
  margin-top: 1.2rem;
}

.notice--flush {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.notice--flush:before {
  display: none;
}

.notice--transparent {
  background: transparent;
}

.notice__title {
  color: #ffffff;
  font-weight: 300;
  cursor: default;
  display: block;
  padding: 0.6rem 0.6rem 0.6rem 4.4rem;
  margin-bottom: 1.2rem;
  border-radius: 2rem;
  border-bottom-right-radius: 0;
  position: relative;
  font-size: 1.6rem;
}
@media (min-width: 500px) {
  .notice__title {
    font-size: 1.8rem;
  }
}
@media (min-width: 800px) {
  .notice__title {
    font-size: 2rem;
  }
}

.notice__date {
  margin-bottom: 1.2rem;
  color: #888888;
  font-size: 1.6rem;
}
@media (min-width: 500px) {
  .notice__date {
    font-size: 1.8rem;
  }
}

.notice__icon {
  border: 2px solid #f1f1f1;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  padding: 8px;
  display: block;
  position: absolute;
  top: 0;
  left: -6px;
}
.notice__icon svg {
  display: block;
  margin: 0 auto;
}

.notice__content p {
  font-size: 1.4rem;
}
@media (min-width: 500px) {
  .notice__content p {
    font-size: 1.6rem;
  }
}

.notice--good-luck .notice__title,
.notice--good-luck .notice__icon {
  background-color: #005994;
}

.notice--congratulations .notice__title,
.notice--congratulations .notice__icon {
  background-color: #b4c929;
  color: #000000;
}

.notice--thank-you .notice__title,
.notice--thank-you .notice__icon {
  background-color: #693c5e;
}

.notice--happy-birthday .notice__title,
.notice--happy-birthday .notice__icon {
  background-color: #e57200;
}

.notice--welcome .notice__title,
.notice--welcome .notice__icon {
  background-color: #bc204b;
}

.notice-wrapper--bordered {
  padding-bottom: 2rem;
  border-bottom: 1px solid #c6cacd;
}

/**
 * Title:
 *    Breadcrumbs
 * Description:
 *    Styling the breadcrumbs component.
 * Sections:
 *    $. Variables
 *    $. Base
 */
/* $. Variables
\*----------------------------------------------------------------*/
/* $. Base
\*----------------------------------------------------------------*/
.breadcrumb {
  margin: 1.2rem 0 0;
  padding: 0;
  font-size: 1.4rem;
}

/**
 * Title:
 *    Title
 * Description:
 *
 */
.title {
  margin: 2.4rem 0;
}
@media (min-width: 500px) {
  .title {
    margin: 3rem 0;
  }
}
@media (min-width: 800px) {
  .title {
    margin: 3.6rem 0;
  }
}
@media (min-width: 1000px) {
  .title {
    margin: 4.2rem 0;
  }
}
@media (min-width: 1200px) {
  .title {
    margin: 4.8rem 0;
  }
}

.title__heading {
  color: #6a3c5f;
  line-height: 1.2;
  font-size: 3.6rem;
}
@media (min-width: 500px) {
  .title__heading {
    font-size: 3.8rem;
  }
}
@media (min-width: 800px) {
  .title__heading {
    font-size: 4rem;
  }
}
@media (min-width: 1000px) {
  .title__heading {
    font-size: 4.2rem;
  }
}
@media (min-width: 1200px) {
  .title__heading {
    font-size: 4.4rem;
  }
}
.title--small .title__heading {
  font-size: 2.6rem;
}
@media (min-width: 500px) {
  .title--small .title__heading {
    font-size: 3.2rem;
  }
}
@media (min-width: 800px) {
  .title--small .title__heading {
    font-size: 3.8rem;
  }
}
@media (min-width: 1000px) {
  .title--small .title__heading {
    font-size: 4.4rem;
  }
}
@media (min-width: 1200px) {
  .title--small .title__heading {
    font-size: 5rem;
  }
}

.title__subheading {
  color: #a3a3a3;
  font-size: 1.4rem;
}
@media (min-width: 500px) {
  .title__subheading {
    font-size: 1.6rem;
  }
}
@media (min-width: 800px) {
  .title__subheading {
    font-size: 1.8rem;
  }
}
@media (min-width: 1000px) {
  .title__subheading {
    font-size: 2rem;
  }
}

.title__excerpt {
  max-width: 900px;
  font-size: 1.4rem;
}
@media (min-width: 500px) {
  .title__excerpt {
    font-size: 1.6rem;
  }
}
@media (min-width: 800px) {
  .title__excerpt {
    font-size: 1.8rem;
  }
}
@media (min-width: 1000px) {
  .title__excerpt {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .title__excerpt {
    font-size: 2.2rem;
  }
}

.title__excerpt--wide {
  max-width: 100%;
}

/**
 * Component: Title
 */
.pagination {
  line-height: 1.25;
  display: block;
  margin-top: 3.6rem;
  padding: 1.8rem 0;
}

.pagination__button,
.pagination__number,
.pagination__count {
  font-size: 1.8rem;
}

.pagination__count,
.pagination__nav {
  display: inline-block;
}

.pagination__count {
  margin: 0 2.4rem 1.2rem 0;
}

.pagination__button svg {
  margin-top: -0.2rem;
}

.pagination__button,
.pagination__number {
  background-color: #005994;
  color: #ffffff;
  padding: 0.8rem 1.2rem;
  display: inline-block;
}
.pagination__button:focus, .pagination__button:active, .pagination__button:hover,
.pagination__number:focus,
.pagination__number:active,
.pagination__number:hover {
  background-color: #005994;
  color: #ffffff;
}

.pagination__button--next,
.pagination__button--prev,
.pagination__number {
  text-align: center;
}

.pagination__number {
  min-width: 45px;
  margin: 0 0.4rem 0.6rem;
}

.pagination__button--prev {
  margin-right: 0.4rem;
}
.pagination__button--prev svg {
  margin-right: 0.4rem;
}

.pagination__button--next {
  margin-left: 0.4rem;
}
.pagination__button--next svg {
  margin-left: 0.4rem;
}

.pagination__number--active {
  background-color: #b4c929;
  color: #000000;
  cursor: pointer;
}

/**
 * Component: Blockquote
 */
.blockquote {
  *zoom: 1;
  margin: 4.8rem 0;
  position: relative;
  padding: 2.4rem;
  color: #005994;
  background: rgb(216.75, 230.1, 238.95);
  overflow: visible;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.blockquote:before, .blockquote:after {
  content: "";
  display: table;
}
.blockquote:after {
  clear: both;
}
.blockquote:before, .blockquote:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
}
.blockquote:before {
  top: -2.4rem;
  left: 0;
  border-bottom: 2.4rem solid rgb(216.75, 230.1, 238.95);
  border-right: 2.4rem solid transparent;
}
.blockquote:after {
  top: 100%;
  right: 0;
  border-top: 2.4rem solid rgb(216.75, 230.1, 238.95);
  border-left: 2.4rem solid transparent;
}
.blockquote p {
  margin-bottom: 0;
  color: #005994;
  max-width: 100%;
  font-size: 1.8rem;
}
@media (min-width: 500px) {
  .blockquote p {
    font-size: 2rem;
  }
}
@media (min-width: 800px) {
  .blockquote p {
    font-size: 2.2rem;
  }
}
@media (min-width: 1200px) {
  .blockquote p {
    font-size: 2.4rem;
  }
}
.blockquote p:before {
  content: open-quote;
}
.blockquote p:after {
  content: close-quote;
}
.blockquote cite {
  line-height: 1.2;
  color: #000000;
  font-size: 1.4rem;
  margin-top: 0.6rem;
  display: block;
}
@media (min-width: 500px) {
  .blockquote cite {
    font-size: 1.6rem;
  }
}
@media (min-width: 800px) {
  .blockquote cite {
    font-size: 1.8rem;
  }
}
.blockquote cite strong,
.blockquote cite em {
  font-style: normal;
}
.blockquote cite strong {
  font-weight: 500;
  display: block;
}

/**
 * Component: Button
 */
.btn, .submit .button {
  display: inline-block;
  width: auto;
  margin: 0;
  padding: 1.4rem 2rem;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  font-size: 2rem;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.btn:focus, .submit .button:focus {
  box-shadow: none;
}
@media (min-width: 800px) {
  .btn, .submit .button {
    font-size: 2.2rem;
  }
}
@media (min-width: 1000px) {
  .btn, .submit .button {
    font-size: 2.4rem;
  }
}
.btn svg, .submit .button svg {
  margin-left: 0.6rem;
  width: 10px;
  height: 22px;
}

.btn--primary,
.btn--yellow {
  color: #000000;
  background-color: #ffc72c;
}
.btn--primary:focus, .btn--primary:active, .btn--primary:hover,
.btn--yellow:focus,
.btn--yellow:active,
.btn--yellow:hover {
  color: #000000;
  background-color: rgb(248, 182.1800947867, 0);
}
.btn--primary.btn--invert,
.btn--yellow.btn--invert {
  color: #000000;
  background-color: #ffffff;
}
.btn--primary.btn--invert:focus, .btn--primary.btn--invert:active, .btn--primary.btn--invert:hover,
.btn--yellow.btn--invert:focus,
.btn--yellow.btn--invert:active,
.btn--yellow.btn--invert:hover {
  color: black;
  background-color: rgb(229.5, 229.5, 229.5);
}

.btn--blue, .submit .button,
.btn--secondary {
  color: #ffffff;
  background-color: #005994;
}
.btn--blue:focus, .submit .button:focus, .btn--blue:active, .submit .button:active, .btn--blue:hover, .submit .button:hover,
.btn--secondary:focus,
.btn--secondary:active,
.btn--secondary:hover {
  color: #ffffff;
  background-color: rgb(0, 58.3310810811, 97);
}
.btn--blue.btn--invert, .submit .btn--invert.button,
.btn--secondary.btn--invert {
  color: #005994;
  background-color: #ffffff;
}
.btn--blue.btn--invert:focus, .submit .btn--invert.button:focus, .btn--blue.btn--invert:active, .submit .btn--invert.button:active, .btn--blue.btn--invert:hover, .submit .btn--invert.button:hover,
.btn--secondary.btn--invert:focus,
.btn--secondary.btn--invert:active,
.btn--secondary.btn--invert:hover {
  color: rgb(0, 58.3310810811, 97);
  background-color: rgb(229.5, 229.5, 229.5);
}

.btn--green {
  color: #ffffff;
  background-color: #47884e;
}
.btn--green:focus, .btn--green:active, .btn--green:hover {
  color: #ffffff;
  background-color: rgb(53.5072463768, 102.4927536232, 58.7826086957);
}
.btn--green.btn--invert {
  color: #47884e;
  background-color: #ffffff;
}
.btn--green.btn--invert:focus, .btn--green.btn--invert:active, .btn--green.btn--invert:hover {
  color: rgb(53.5072463768, 102.4927536232, 58.7826086957);
  background-color: rgb(229.5, 229.5, 229.5);
}

.btn--lime {
  color: #000000;
  background-color: #b4c929;
}
.btn--lime:focus, .btn--lime:active, .btn--lime:hover {
  color: #000000;
  background-color: rgb(142.0661157025, 158.6404958678, 32.3595041322);
}
.btn--lime.btn--invert {
  color: #b4c929;
  background-color: #ffffff;
}
.btn--lime.btn--invert:focus, .btn--lime.btn--invert:active, .btn--lime.btn--invert:hover {
  color: rgb(142.0661157025, 158.6404958678, 32.3595041322);
  background-color: rgb(229.5, 229.5, 229.5);
}

.btn--red {
  color: #ffffff;
  background-color: #bc204b;
}
.btn--red:focus, .btn--red:active, .btn--red:hover {
  color: #ffffff;
  background-color: rgb(144.4181818182, 24.5818181818, 57.6136363636);
}
.btn--red.btn--invert {
  color: #bc204b;
  background-color: #ffffff;
}
.btn--red.btn--invert:focus, .btn--red.btn--invert:active, .btn--red.btn--invert:hover {
  color: rgb(144.4181818182, 24.5818181818, 57.6136363636);
  background-color: rgb(229.5, 229.5, 229.5);
}

.btn--orange {
  color: #ffffff;
  background-color: #e57200;
}
.btn--orange:focus, .btn--orange:active, .btn--orange:hover {
  color: #ffffff;
  background-color: rgb(178, 88.6113537118, 0);
}
.btn--orange.btn--invert {
  color: #e57200;
  background-color: #ffffff;
}
.btn--orange.btn--invert:focus, .btn--orange.btn--invert:active, .btn--orange.btn--invert:hover {
  color: rgb(178, 88.6113537118, 0);
  background-color: rgb(229.5, 229.5, 229.5);
}

.btn--pink {
  color: #ffffff;
  background-color: #d62399;
}
.btn--pink:focus, .btn--pink:active, .btn--pink:hover {
  color: #ffffff;
  background-color: rgb(170.1686746988, 27.8313253012, 121.6626506024);
}
.btn--pink.btn--invert {
  color: #d62399;
  background-color: #ffffff;
}
.btn--pink.btn--invert:focus, .btn--pink.btn--invert:active, .btn--pink.btn--invert:hover {
  color: rgb(170.1686746988, 27.8313253012, 121.6626506024);
  background-color: rgb(229.5, 229.5, 229.5);
}

.btn--purple {
  color: #ffffff;
  background-color: #693c5e;
}
.btn--purple:focus, .btn--purple:active, .btn--purple:hover {
  color: #ffffff;
  background-color: rgb(72.5454545455, 41.4545454545, 64.9454545455);
}
.btn--purple.btn--invert {
  color: #693c5e;
  background-color: #ffffff;
}
.btn--purple.btn--invert:focus, .btn--purple.btn--invert:active, .btn--purple.btn--invert:hover {
  color: rgb(72.5454545455, 41.4545454545, 64.9454545455);
  background-color: rgb(229.5, 229.5, 229.5);
}

.btn--small {
  padding: 0.8rem 1.8rem;
  font-size: 1.8rem;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
@media (min-width: 800px) {
  .btn--small {
    font-size: 2rem;
  }
}
@media (min-width: 1000px) {
  .btn--small {
    font-size: 2rem;
  }
}
.btn--small svg {
  margin-left: 0.8rem;
  width: 8px;
  height: 18px;
}

.btn--left {
  text-align: left;
}

.btn--block, .submit .button {
  display: block;
  width: 100%;
  position: relative;
}
.btn--block svg, .submit .button svg {
  position: absolute;
  top: 50%;
  right: 1.8rem;
  transform: translateY(-50%);
}

/**
 * Component: Panel
 */
.panel, .mwm-aal-container {
  padding: 1.2rem 2.4rem 2.4rem;
  margin-bottom: 3.6rem;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.panel *:last-child, .mwm-aal-container *:last-child {
  margin-bottom: 0 !important;
}

.panel--no-title {
  padding: 2.4rem;
}

.panel--grey, .mwm-aal-container {
  background-color: #f1f1f1;
  color: #333333;
}

.panel--blue {
  background-color: #005994;
  color: #ffffff;
}

.panel--blue-light {
  background-color: rgb(216.75, 230.1, 238.95);
  color: #005994;
}

.panel--green {
  background-color: #47884e;
  color: #ffffff;
}

.panel--red,
.panel--error {
  background-color: #bc204b;
  color: #ffffff;
}

.panel--blue a,
.panel--green a {
  color: #ffffff;
  text-decoration: underline;
}

.panel--grey a, .mwm-aal-container a {
  color: #333333;
  text-decoration: underline;
}

.panel--file {
  display: block;
  margin-bottom: 2.4rem;
}

.panel__icon,
.panel__icon svg {
  width: 76px;
  height: 51px;
}

.panel__content {
  padding-left: 2.4rem;
}

.panel__title,
.cms-area .panel__title {
  font-size: 2.2rem;
}
@media (min-width: 800px) {
  .panel__title,
  .cms-area .panel__title {
    font-size: 2.4rem;
  }
}
@media (min-width: 1000px) {
  .panel__title,
  .cms-area .panel__title {
    font-size: 2.8rem;
  }
}

.panel__title,
.cms-area .panel__text {
  font-size: 1.6rem;
}
@media (min-width: 800px) {
  .panel__title,
  .cms-area .panel__text {
    font-size: 1.8rem;
  }
}

.notification {
  color: white;
  text-align: center;
  margin: 15px 0 0 0;
  background-color: #bc204b;
  margin-bottom: 1rem;
}
@media (min-width: 800px) {
  .notification {
    width: 90%;
    max-width: 1260px;
    margin: 0 auto;
    margin-top: 15px;
  }
}
@media (min-width: 1000px) {
  .notification {
    margin-bottom: 0;
  }
}

.notification--hidden {
  display: none;
}

.notification__inner {
  padding: 10px;
}
@media (min-width: 800px) {
  .notification__inner {
    padding: 15px;
  }
}
@media (min-width: 1000px) {
  .notification__inner {
    padding: 10px;
  }
}

.notification__title {
  display: inline;
  font-size: 16px;
}
@media (min-width: 1000px) {
  .notification__title {
    font-size: 19px;
  }
}
.notification__title svg {
  height: 16px;
  width: 16px;
  margin-left: 10px;
  margin-right: -3px;
}

.notification__link {
  display: inline-block;
  color: white;
  font-weight: 500;
  text-decoration: underline;
  font-size: 16px;
}
.notification__link:hover {
  text-decoration: none;
  color: white;
}
@media (min-width: 800px) {
  .notification__link {
    font-size: 19px;
  }
}

.notification__content {
  margin: 0 auto;
}
@media (min-width: 800px) {
  .notification__content {
    max-width: 85%;
  }
}
@media (min-width: 1200px) {
  .notification__content {
    max-width: 75%;
  }
}

/**
 * Component: Related content
 */
.related-content__title {
  font-weight: 500;
  border-bottom: 1px solid #a3a3a3;
  margin-bottom: 1.2rem;
}

.related-content__items {
  list-style: none;
  margin: 0;
}

.a-z-button {
  display: block;
  line-height: 1;
  font-size: 1.8rem;
  color: #005994;
  padding: 1.2rem 1.6rem;
}
@media (min-width: 800px) {
  .a-z-button {
    font-size: 2rem;
  }
}
@media (min-width: 1000px) {
  .a-z-button {
    font-size: 2.4rem;
  }
}
.a-z-button:hover {
  color: #333333;
}
.a-z-button:focus {
  color: black;
}
.a-z-button:first-of-type {
  padding-left: 0;
}

a.a-z-button {
  text-decoration: underline;
}

.a-z-button--disabled {
  color: #575757;
  pointer-events: none;
}

.a-z-nav__letters {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.6rem;
}

.a-z-nav__letter {
  height: unset;
  margin: 0;
  padding: 0.4rem 0;
  text-align: center;
}

.a-z-title {
  font-weight: 500;
  font-size: 2.4rem;
  margin-top: 2.4rem;
  margin-bottom: 0;
  color: #333333;
}

.filter-search {
  width: 42rem;
  max-width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 3.6rem;
}
.filter-search .filter-search__inner {
  position: relative;
  padding-right: 22px;
}
.filter-search .filter-search__label {
  display: none;
}
.filter-search .filter-search__input,
.filter-search .filter-search__button {
  outline: 0;
}
.filter-search .filter-search__input {
  font-family: "ITC Avant Garde Gothic W01", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 2rem;
  padding: 1.2rem 3rem 1.2rem 2rem;
  width: 100%;
  border: 1px solid #a3a3a3;
  border-right: 0;
}
@media (min-width: 800px) {
  .filter-search .filter-search__input {
    font-size: 1.8rem;
  }
}
@media (min-width: 1000px) {
  .filter-search .filter-search__input {
    margin-bottom: 0;
  }
}
.filter-search .filter-search__button {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: #692e57;
  padding: 1.2rem;
  border: 0;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  z-index: 2;
}

.letter-list {
  margin-top: 2.4rem;
}

.letter-list__heading {
  display: inline-block;
  margin: 0;
  padding: 1rem 0;
  font-size: 2rem;
  font-weight: 600;
}
@media (min-width: 800px) {
  .letter-list__heading {
    font-size: 2.4rem;
  }
}

.letter-list__items {
  list-style: none;
  margin: 0;
  border-top: solid 0.1rem #000000;
}

.letter-list__item {
  border-top: solid 0.1rem #cbcbc5;
  padding: 1.8rem 0;
  margin: 0;
  font-size: 2rem;
}
@media (min-width: 800px) {
  .letter-list__item {
    padding: 2.4rem 0;
    font-size: 2.4rem;
  }
}
.letter-list__item:last-child {
  border-bottom: solid 0.1rem #cbcbc5;
}

.letter-list__item--empty {
  margin-bottom: 0;
}

.letter-list__return-to-top {
  margin: 1.2rem 0 2rem 0;
  font-size: 1.6rem;
  text-decoration: underline;
}
@media (min-width: 800px) {
  .letter-list__return-to-top {
    margin: 1.2rem 0 2.4rem 0;
    font-size: 1.8rem;
  }
}

.card-group-grid {
  display: grid;
  list-style: none;
  padding-left: unset;
  margin-bottom: unset;
  margin-left: unset;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (min-width: 800px) {
  .card-group-grid {
    gap: 3rem;
  }
}

.card-group-grid--2-cols {
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 800px) {
  .card-group-grid--2-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.card-group-grid--3-cols {
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .card-group-grid--3-cols {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.card-group-grid--4-cols {
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .card-group-grid--4-cols {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (min-width: 1000px) {
  .card-group-grid--4-cols {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.card-group-grid--tight {
  row-gap: 1.5rem;
}
@media (min-width: 800px) {
  .card-group-grid--tight {
    row-gap: 2rem;
  }
}

.card-group-grid__item {
  display: flex;
  margin-top: 0;
}

.card-group-grid--bordered > *:nth-child(-n+1) {
  padding-top: 2.6rem;
  border-top: 1px solid #c6cacd;
}
@media (min-width: 800px) {
  .card-group-grid--bordered.card-group-grid--2-cols > *:nth-child(-n+2) {
    padding-top: 2.6rem;
    border-top: 1px solid #c6cacd;
  }
}
@media (min-width: 800px) {
  .card-group-grid--bordered.card-group-grid--3-cols > *:nth-child(-n+3) {
    padding-top: 2.6rem;
    border-top: 1px solid #c6cacd;
  }
}
@media (min-width: 800px) {
  .card-group-grid--bordered.card-group-grid--4-cols > *:nth-child(-n+2) {
    padding-top: 2.6rem;
    border-top: 1px solid #c6cacd;
  }
}
@media (min-width: 1000px) {
  .card-group-grid--bordered.card-group-grid--4-cols > *:nth-child(-n+4) {
    padding-top: 2.6rem;
    border-top: 1px solid #c6cacd;
  }
}

.card {
  height: 100%;
}

.card__img {
  display: block;
  max-width: none;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-top-right-radius: 1.7rem;
  border-bottom-left-radius: 1.7rem;
  margin-bottom: 2rem;
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__misc {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  color: #757575;
}

.card__heading {
  font-size: 2.4rem;
}

.card__text {
  margin-top: 1.2rem;
  margin-bottom: 0;
}

.card--bordered {
  padding-bottom: 2.6rem;
  border-bottom: 1px solid #c6cacd;
}

.card--video .card__img {
  position: relative;
}
.card--video .card__img:before {
  content: "";
  display: block;
  position: absolute;
  width: 61px;
  height: 61px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url("assets/imgs/play.svg") no-repeat center;
  background-size: cover;
}

.filters-reset {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.filters-reset__link {
  font-size: 1.8rem;
  text-decoration: underline;
}
.filters-reset__link:hover {
  text-decoration-thickness: 2px;
}

.filter-wide {
  padding: 2.2rem 2.6rem 2.6rem;
  margin-bottom: 4.8rem;
  background-color: #f1f1f1;
  color: #333333;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.filter-wide *:last-child {
  margin-bottom: 0 !important;
}

.filter-wide__title {
  font-weight: 300;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.filter-wide__label {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0;
}

.filter-wide__button {
  font-size: 1.8rem;
  text-align: left;
}

.filter-wide__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.filter-wide__grid:before, .filter-wide__grid:after {
  display: none;
}

.filter-wide__grid-item {
  grid-column: 1/-1;
  align-content: flex-end;
}
@media (min-width: 800px) {
  .filter-wide__grid-item {
    grid-column: span 4;
  }
}
@media (min-width: 1000px) {
  .filter-wide__grid-item {
    grid-column: span 2;
  }
}
.filter-wide__grid-item .select {
  font-size: 1.4rem;
  color: #666;
  padding: 1.2rem 1.6rem;
}

@media (min-width: 1000px) {
  .filter-wide__grid-item--wide {
    grid-column: span 5;
  }
}

.card-featured {
  background-color: #cbcbc5;
  padding: 3.6rem;
  margin-bottom: 3.6rem;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
@media (min-width: 1000px) {
  .card-featured {
    display: flex;
    gap: 3rem;
  }
}

.card-featured__img {
  flex: 1;
  margin-bottom: 2rem;
  overflow: hidden;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
@media (min-width: 1000px) {
  .card-featured__img {
    margin-bottom: 0;
  }
}

.card-featured__body {
  flex: 1;
}

.card-featured__misc {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}

.card-featured__heading {
  margin-bottom: 1rem;
  font-size: 3rem;
  line-height: 1.4;
}
@media (min-width: 1000px) {
  .card-featured__heading {
    font-size: 3.8rem;
  }
}

.card-featured__link {
  color: #000000;
}

.card-group-header {
  font-size: 3.2rem;
  font-weight: 500;
  margin-top: 6.4rem;
  margin-bottom: 1.2rem;
  color: #6a3c5f;
}

.card-group-footer {
  text-align: right;
  margin-top: 1.4rem;
}

.card-group-footer__link {
  font-size: 1.8rem;
  text-decoration: underline;
}

.card-wide {
  height: 100%;
  width: 100%;
}
@media (min-width: 1000px) {
  .card-wide {
    display: flex;
    gap: 3rem;
  }
}

.card-wide__img {
  flex: 1;
  display: none;
  max-width: none;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-top-right-radius: 1.7rem;
  border-bottom-left-radius: 1.7rem;
  align-self: flex-start;
}
.card-wide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1000px) {
  .card-wide__img {
    display: block;
    max-width: 21rem;
  }
}

.card-wide__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-wide__misc {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  padding: 0.4rem 0.8rem;
  background-color: #f1f1f1;
}

.card-wide__heading {
  font-size: 2.4rem;
}

.card-wide__text {
  margin-top: 1.2rem;
  margin-bottom: 0;
}

.card-wide__categories {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 1.6rem;
}

.card-wide--bordered {
  padding-bottom: 2.6rem;
  border-bottom: 1px solid #c6cacd;
}

.quick-links__header {
  font-size: 3rem;
  font-weight: 500;
  margin-top: 3.2rem;
  margin-bottom: 1.2rem;
  color: #6a3c5f;
}

.quick-links__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}
@media (min-width: 500px) {
  .quick-links__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1000px) {
  .quick-links__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .quick-links__list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.quick-links__list-item {
  margin-top: 0;
}

.quick-links-item {
  display: block;
  position: relative;
  height: 100%;
  min-height: 8rem;
  background-color: #005994;
  color: white;
  padding: 1.5rem 1.5rem 1.5rem 3.5rem;
  background-image: url(assets/imgs/arrow-right-yellow-lrg.svg);
  background-size: 0.8rem auto;
  background-position: left 1.8rem top 1.8rem;
  background-repeat: no-repeat;
  line-height: 1.2;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.quick-links-item:hover {
  color: white;
  background-color: rgb(0, 71.2, 118.4);
}

.quick-links-item--alt {
  background-color: #e57200;
  background-image: url(assets/imgs/arrow-right-white-lrg.svg);
}
.quick-links-item--alt:hover {
  background-color: #d16800;
}

.featured-links {
  margin-top: 6.4rem;
  margin-bottom: 6.4rem;
  background-color: #cbcbc5;
  color: #333333;
  padding: 3.4rem 4.2rem 4.2rem;
  margin-bottom: 3.6rem;
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
@media (min-width: 1000px) {
  .featured-links {
    flex-direction: row;
  }
}

.featured-links__img {
  flex: 1;
  display: block;
  max-width: none;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-top-right-radius: 1.7rem;
  border-bottom-left-radius: 1.7rem;
  align-self: flex-start;
}
.featured-links__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-links__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.featured-links__meta {
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 500;
}

.featured-links__title {
  margin-bottom: 0;
  font-size: 3rem;
  color: #005994;
}
@media (min-width: 1000px) {
  .featured-links__title {
    font-size: 3.8rem;
  }
}

.featured-links__intro {
  margin-bottom: 1rem;
}

.featured-links__footer-link {
  margin-top: auto;
  font-size: 1.6rem;
  text-decoration: underline;
}

.featured-links__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.featured-links-item {
  display: inline-block;
  color: #005994;
  padding-left: 2rem;
  background-image: url(assets/imgs/arrow-right-blue-lrg.svg);
  background-size: 0.8rem auto;
  background-position: left top 0.5rem;
  background-repeat: no-repeat;
  font-size: 1.8rem;
}
.featured-links-item:hover {
  text-decoration: underline;
}

.popular-links {
  margin-top: 6.4rem;
  margin-bottom: 6.4rem;
  padding: 5rem 0;
  background-color: #005994;
  color: #ffffff;
}

.popular-links__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.4rem;
}
@media (min-width: 1000px) {
  .popular-links__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.popular-links-group__title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.popular-links-group__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.popular-links-group__list-item {
  display: block;
  border-top: 0.1rem solid #cbcbc5;
  margin-top: 0;
}
.popular-links-group__list-item:last-of-type {
  border-bottom: 0.1rem solid #cbcbc5;
}

.popular-links-group__footer {
  text-align: right;
  margin-top: 1.8rem;
}

.popular-links-group__all {
  color: #ffffff;
  font-size: 1.8rem;
  text-decoration: underline;
}
.popular-links-group__all:hover {
  color: #ffffff;
}

.popular-links-item {
  padding: 2.4rem 0;
}

.popular-links-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.7rem;
  margin-bottom: 1rem;
}

.popular-links-item__meta-item {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  padding: 0.8rem;
  font-size: 1.6rem;
  line-height: 1;
}

.popular-links-item__title {
  font-size: 2.4rem;
}

.popular-links-item__link {
  color: #ffffff;
}
.popular-links-item__link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/**
 * Component: Banner Latest News Article
 */
.home-banner-news {
  background: #f1f1f1;
  padding: 2.4rem 0;
  margin-bottom: 2.4rem;
  margin-top: 1rem;
}
@media (min-width: 800px) {
  .home-banner-news {
    padding: 4.8rem 0;
    margin-bottom: 4.8rem;
  }
}

.home-banner-news__fig {
  display: block;
  margin-bottom: 2.4rem;
  border-radius: 50px;
}
.home-banner-news__fig img {
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}

.home-banner-news__date {
  display: block;
  color: #888888;
  font-size: 1.8rem;
  margin-bottom: 0;
}

.home-banner-news__title {
  margin-bottom: 1.8rem;
  font-size: 2.8rem;
}
@media (min-width: 500px) {
  .home-banner-news__title {
    font-size: 3rem;
  }
}
@media (min-width: 800px) {
  .home-banner-news__title {
    font-size: 2.6rem;
  }
}
@media (min-width: 1000px) {
  .home-banner-news__title {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  .home-banner-news__title {
    font-size: 3.4rem;
  }
}

.home-banner-news__text {
  margin-bottom: 2.4rem;
  font-size: 1.4rem;
}
@media (min-width: 500px) {
  .home-banner-news__text {
    font-size: 1.6rem;
  }
}
@media (min-width: 1000px) {
  .home-banner-news__text {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .home-banner-news__text {
    font-size: 2rem;
  }
}

/**
 * Component: Banner Latest News Article
 */
.home-banner-article {
  padding: 2.4rem 0;
  margin-bottom: 2.4rem;
  margin-top: 1rem;
}
@media (min-width: 800px) {
  .home-banner-article {
    padding: 4.8rem 0;
    margin-bottom: 4.8rem;
  }
}

.home-banner-article__fig {
  display: block;
  margin-bottom: 2.4rem;
  border-radius: 50px;
}
.home-banner-article__fig img {
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}

.home-banner-article__title {
  margin-bottom: 2.4rem;
  font-size: 2.4rem;
}
@media (min-width: 800px) {
  .home-banner-article__title {
    font-size: 3.6rem;
  }
}

.home-banner-article__date {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.home-banner-article__text p {
  margin-bottom: 2.4rem;
  font-size: 2.2rem;
}
.home-banner-article__text p *:last-child {
  margin-bottom: 0;
}

.home-banner-article--minor {
  background: #005994;
  color: #ffffff;
}
.home-banner-article--minor a:not(.btn) {
  color: #ffffff;
}

.home-banner-article--major {
  background: #bc204b;
  color: #ffffff;
  text-align: center;
}
.home-banner-article--major a:not(.btn) {
  color: #ffffff;
}
.home-banner-article--major .home-banner-article__title {
  text-transform: uppercase;
}
.home-banner-article--major .wrapper {
  max-width: 850px;
}

/**
 * Component: Home News
 */
.home-news {
  margin-bottom: 3.6rem;
}
@media (min-width: 1200px) {
  .home-news {
    margin-bottom: 0;
    position: relative;
    height: 100%;
  }
}

.home-news__inner {
  margin-top: 2.4rem;
}
@media (min-width: 1200px) {
  .home-news__inner {
    padding-bottom: 3.6rem;
  }
}

.home-news__btn {
  margin-top: 3.6rem;
}
@media (min-width: 1200px) {
  .home-news__btn {
    margin-top: 0;
  }
}

/**
 * Component: Home Links
 */
.home-links {
  margin-top: 3.6rem;
  padding-top: 3.6rem;
  border-top: 1px solid #bdc0b6;
}

/**
 * Component: Home Noticeboard
 */
@media (min-width: 1200px) {
  .home-noticeboard {
    margin-bottom: 0;
    position: relative;
    height: 100%;
  }
}

@media (min-width: 1200px) {
  .home-noticeboard__inner {
    padding-bottom: 3.6rem;
  }
}

.home-noticeboard__cta {
  height: auto;
}
@media (min-width: 1200px) {
  .home-noticeboard__cta {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

/**
 * Component: ICT Status Entry
 */
.ict-status-entry {
  padding: 3rem;
  margin-bottom: 3rem;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  background-color: #f1f1f1;
}

.ict-status-entry__meta {
  font-size: 1.4rem;
  color: rgb(164.5, 164.5, 164.5);
}

.ict-status-entry__message {
  margin-top: 1.2rem;
}

.ict-status-entry__badge:before {
  width: 1.4rem;
  text-align: center;
  margin-right: 0.4rem;
  display: inline-block;
  line-height: 1;
  position: relative;
  top: -2px;
  border-radius: 50%;
  padding: 0.4rem;
  font-size: 1.4rem;
  background-color: #000;
  color: #fff;
}

.ict-status-entry__badge--green:before {
  content: "G";
  background-color: #2dc937;
  color: rgb(31.006097561, 138.493902439, 37.8963414634);
}

.ict-status-entry__badge--amber:before {
  content: "A";
  background-color: #e7b416;
  color: rgb(161.152173913, 125.5731225296, 15.347826087);
}

.ict-status-entry__badge--red:before {
  content: "R";
  background-color: #cc3232;
  color: rgb(142.5590551181, 34.9409448819, 34.9409448819);
}

/**
 * Component: Status
 */
.status {
  display: block;
  margin: 1.2rem 0;
  font-weight: 300;
  font-size: 1.4rem;
}
.status strong {
  font-weight: 500;
}
@media (min-width: 500px) {
  .status {
    font-size: 1.6rem;
  }
}
@media (min-width: 800px) {
  .status {
    font-size: 1.8rem;
  }
}
@media (min-width: 1000px) {
  .status {
    font-size: 2rem;
  }
}
.status span:before {
  width: 14px;
  text-align: center;
  margin-right: 0.4rem;
  display: inline-block;
  line-height: 1;
  position: relative;
  top: -2px;
  border-radius: 50%;
  padding: 0.4rem;
  font-size: 1.4rem;
  background-color: #000000;
  color: #ffffff;
}

.status--green span:before {
  content: "G";
  background-color: #2dc937;
  color: rgb(31.006097561, 138.493902439, 37.8963414634);
}

.status--amber span:before {
  content: "A";
  background-color: #e7b416;
  color: rgb(161.152173913, 125.5731225296, 15.347826087);
}

.status--red span:before {
  content: "R";
  background-color: #cc3232;
  color: rgb(142.5590551181, 34.9409448819, 34.9409448819);
}

/**
 * Component: ICT Bar
 */
.bar {
  display: flex;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: column;
}
@media (min-width: 800px) {
  .bar {
    flex-direction: row;
  }
}

/**
 * Component: ICT Passcode Bar
 */
.passcode {
  display: flex;
  margin: 1.2rem 0;
  font-weight: 300;
}
.passcode strong {
  font-weight: 500;
}

.passcode__item {
  font-size: 1.4rem;
}
@media (min-width: 500px) {
  .passcode__item {
    font-size: 1.6rem;
  }
}
@media (min-width: 800px) {
  .passcode__item {
    font-size: 1.8rem;
    margin-left: 1.2rem;
  }
}
@media (min-width: 1000px) {
  .passcode__item {
    font-size: 2rem;
  }
}
.passcode__item--blue {
  color: #005994;
}

/**
 * Component: Staff Fundraising Title
 */
.staff-fundraising-entry {
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
  height: calc(100% - 4.8rem);
  padding: 2.4rem;
  background: #f1f1f1;
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

.staff-fundraising-entry__title {
  display: block;
  position: relative;
  padding: 0.6rem 1.6rem;
  margin-bottom: 1.2rem;
  border-radius: 2rem;
  border-bottom-right-radius: 0;
  font-weight: 300;
  font-size: 1.6rem;
}
@media (min-width: 500px) {
  .staff-fundraising-entry__title {
    font-size: 2rem;
  }
}
.staff-fundraising-entry__title--yellow {
  background: #ffc72c;
}
.staff-fundraising-entry__title--lime {
  background: #b4c929;
}
.staff-fundraising-entry__title--orange {
  background: #e57200;
  color: #ffffff;
}
.staff-fundraising-entry__title--red {
  background: #bc204b;
  color: #ffffff;
}

.staff-fundraising-entry__detail {
  margin-bottom: 0.8rem;
  color: #888888;
}

.staff-fundraising-entry__date {
  font-size: 1.6rem;
}
@media (min-width: 500px) {
  .staff-fundraising-entry__date {
    font-size: 1.8rem;
  }
}

.staff-fundraising-entry__content {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
@media (min-width: 500px) {
  .staff-fundraising-entry__content {
    font-size: 1.6rem;
  }
}

.staff-fundraising-entry__button {
  margin-top: 0.5rem;
}
.staff-fundraising-entry__button .btn, .staff-fundraising-entry__button .submit .button, .submit .staff-fundraising-entry__button .button {
  font-size: 1.6rem;
}
.staff-fundraising-entry__button svg {
  width: 7px;
  height: 19px;
}
@media (min-width: 800px) {
  .staff-fundraising-entry__button {
    margin-top: 1.5rem;
  }
}

.home-banner-slideshow {
  position: relative;
  overflow: hidden;
  margin-bottom: 4.8rem;
  margin-top: 4.8rem;
}
.home-banner-slideshow:after {
  content: "";
  display: table;
  clear: both;
}

.home-banner-slideshow__wrapper {
  position: relative;
}

.home-banner-slideshow .slide {
  position: relative;
  display: none;
  width: 100%;
  margin: 0;
  padding: 2rem 0 1.6rem 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 200px;
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}
@media (min-width: 800px) {
  .home-banner-slideshow .slide {
    padding: 4rem 0 6rem 0;
  }
}
@media (min-width: m) {
  .home-banner-slideshow .slide {
    height: 300px;
  }
}
.home-banner-slideshow .slide.is-active {
  display: block;
}

.home-banner-slideshow .slide--overlay {
  position: relative;
  width: 100%;
}
.home-banner-slideshow .slide--overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}
@media (min-width: 1000px) {
  .home-banner-slideshow .slide--overlay {
    height: 300px;
  }
}

.home-banner-slideshow .slide__caption {
  position: absolute;
  width: 100%;
  margin: 0;
  padding: 0 4rem;
  text-align: center;
  border: 0;
  background: 0;
}
@media (min-width: 800px) {
  .home-banner-slideshow .slide__caption {
    top: 50%;
    left: 50%;
    padding: 0 2rem;
    transform: translateY(-50%) translateX(-50%);
  }
}
@media (min-width: 1200px) {
  .home-banner-slideshow .slide__caption {
    padding: 0 12rem;
  }
}

.home-banner-slideshow .slide__heading {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #fff;
}
@media (min-width: 800px) {
  .home-banner-slideshow .slide__heading {
    font-size: 2.6rem;
  }
}
@media (min-width: 1000px) {
  .home-banner-slideshow .slide__heading {
    font-size: 3rem;
  }
}

/* $. Navigation
\*----------------------------------------------------------------*/
.home-banner-slideshow__nav-item {
  list-style: none;
  margin: 0;
  position: absolute;
  bottom: 1rem;
}
@media (min-width: 800px) {
  .home-banner-slideshow__nav-item {
    top: calc(50% - 4rem);
    bottom: auto;
  }
}

.home-banner-slideshow__nav-item--prev {
  left: 15%;
  margin-left: -4rem;
}
@media (min-width: 800px) {
  .home-banner-slideshow__nav-item--prev {
    left: 1rem;
    margin-left: 0;
  }
}

.home-banner-slideshow__nav-item--next {
  right: 15%;
  margin-right: -4rem;
}
@media (min-width: 800px) {
  .home-banner-slideshow__nav-item--next {
    right: 1rem;
    margin-right: 0;
  }
}

.home-banner-slideshow__nav-icon {
  width: 3rem;
  height: 3rem;
  display: block;
}
.home-banner-slideshow__nav-icon svg {
  width: 100%;
  height: 100%;
}
@media (min-width: 1000px) {
  .home-banner-slideshow__nav-icon {
    opacity: 0.5;
    transition: opacity 0.15s ease-out;
  }
  .home-banner-slideshow__nav-icon:hover, .home-banner-slideshow__nav-icon:focus {
    opacity: 1;
  }
}
@media (min-width: 800px) {
  .home-banner-slideshow__nav-icon {
    width: 4rem;
    height: 4rem;
  }
}

/** Controls **/
.home-banner-slideshow__controls {
  display: flex;
  position: relative;
  width: fit-content;
  margin: 1rem auto;
}

.home-banner-slideshow__control-button {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  border: none;
  margin: auto 0;
  padding-right: 1rem;
  height: 3.1rem;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: 3.1rem;
  background-position: right center;
  cursor: pointer;
}

.home-banner-slideshow__control-button__text {
  font-family: "ITC Avant Garde Gothic W01", Helvetica, Arial, sans-serif;
  color: #005994;
  font-size: 1.8rem;
  padding-right: 3.6rem;
}
@media (min-width: 1000px) {
  .home-banner-slideshow__control-button__text {
    font-size: 2rem;
  }
}

.home-banner-slideshow__control-button--pause {
  background-image: url("assets/imgs/pause.svg");
}

.home-banner-slideshow__control-button--play {
  background-image: url("assets/imgs/play-alt.svg");
}

/**
 * Component: Members
 */
.member {
  margin-bottom: 2.8rem;
}

.member__image {
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}

.member__meta {
  margin-bottom: 1rem;
}

.member__name {
  margin: 0;
  border-bottom: 0;
  font-weight: 300;
}

.member__role {
  font-size: 1.8rem;
  font-weight: 400;
}

/* =========================================================
 * Comments - adapted from NPCA
 * ========================================================= */
.comments-area {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 0.3rem solid #bdc0b6;
}
.comments-area > *:first-child {
  margin-top: 0;
}

.comment-form-comment {
  margin-bottom: 0;
}

ol.comment-list {
  margin: 0 0 1em;
  padding: 0;
  list-style-type: none;
  text-indent: 0;
}
ol.comment-list > li.comment {
  border-bottom: 1px solid #bdc0b6;
}
ol.comment-list li.comment {
  padding: 1.5em 1em;
  margin-top: 0;
}
ol.comment-list li.comment:last-of-type {
  margin-bottom: 0;
}
ol.comment-list li.comment a {
  font-weight: 500;
  border-bottom: solid 1px #005994;
}
ol.comment-list li.comment .comment-author .says {
  display: none;
}
ol.comment-list li.comment div.vcard {
  font-size: 1.6rem;
}
ol.comment-list li.comment div.vcard b.fn {
  font-weight: inherit;
}
ol.comment-list li.comment div.vcard img.avatar {
  float: left;
  margin: 0 2rem 1rem 0;
  border: 0.5rem solid #bdc0b6;
}
ol.comment-list li.comment div.comment-metadata {
  font-size: 1.8rem;
}
ol.comment-list li.comment div.comment-metadata .comment-edit-link {
  color: #494949;
  margin-left: 1rem;
  font-style: italic;
}
ol.comment-list li.comment div.comment-meta {
  font-size: 1.6rem;
}
ol.comment-list li.comment .comment-content {
  margin: 2rem 0;
}
ol.comment-list li.comment p {
  clear: both;
}
ol.comment-list li.comment ul {
  margin: 0 0 0 2rem;
  list-style: none;
  font-size: 1.6rem;
}
ol.comment-list li.comment div.reply {
  font-size: 1.8rem;
}
ol.comment-list li.comment ol.children {
  margin: 3rem 1.5rem 1.5rem;
  list-style-type: none;
  text-indent: 0;
}
ol.comment-list li.comment ol.children li.depth-2 {
  margin: 0 0 1rem 0;
  border-left: 0.6rem solid #ffc72c;
}
ol.comment-list li.comment ol.children li.depth-2:last-of-type {
  margin-bottom: 0;
}
ol.comment-list li.comment ol.children li.depth-3 {
  margin: 0 0 1rem 0;
}
ol.comment-list li.comment ol.children li.depth-3:last-of-type {
  margin-bottom: 0;
}
ol.comment-list li.comment ol.children .children {
  margin: 30px 0 15px;
}
ol.comment-list li.comment .comment-reply-title {
  font-size: 2.6rem;
  margin-bottom: 1em;
}
ol.comment-list li.comment .comment-reply-title small {
  display: block;
  font-size: 2.2rem;
}
ol.comment-list > li.even,
ol.comment-list li.thread-even {
  background: #fff;
}
ol.comment-list > li.even li.depth-2,
ol.comment-list li.thread-even li.depth-2 {
  background: #f1f1f1;
}
ol.comment-list > li.even li.depth-3,
ol.comment-list li.thread-even li.depth-3 {
  background: #fff;
}
ol.comment-list > li.odd,
ol.comment-list li.thread-odd {
  background: #f1f1f1;
}
ol.comment-list > li.odd li.depth-3,
ol.comment-list li.thread-odd li.depth-3 {
  background: #f1f1f1;
}
ol.comment-list > li.odd li.depth-2,
ol.comment-list li.thread-odd li.depth-2 {
  background: #fff;
}

.comment-respond {
  margin-top: 4rem;
}

.comment-respond + .comments-title {
  margin-top: 4rem;
}

.logged-in-as {
  font-size: 1.8rem;
}

input[type=submit].comment--submit {
  cursor: pointer;
}

.comment-navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.comment-navigation .nav-next a,
.comment-navigation .nav-previous a {
  display: block;
  font-size: 1.8rem;
  background-color: #005994;
  color: #ffffff;
  padding: 0.8rem 1.2rem;
  display: inline-block;
}
.comment-navigation .nav-next a:focus, .comment-navigation .nav-next a:active, .comment-navigation .nav-next a:hover,
.comment-navigation .nav-previous a:focus,
.comment-navigation .nav-previous a:active,
.comment-navigation .nav-previous a:hover {
  background-color: #005994;
  color: #ffffff;
}

/*# sourceMappingURL=style.css.map */
